private MemoryStream DoOutput(string functionName, object[] arguments, bool byRef, bool simple, HproseClientContext context) { MemoryStream outData = new MemoryStream(); #if !dotNETMF HproseWriter writer = new HproseWriter(outData, mode, simple); #else HproseWriter writer = new HproseWriter(outData, simple); #endif outData.WriteByte(HproseTags.TagCall); writer.WriteString(functionName); if ((arguments != null) && (arguments.Length > 0 || byRef)) { writer.Reset(); writer.WriteArray(arguments); if (byRef) { writer.WriteBoolean(true); } } outData.WriteByte(HproseTags.TagEnd); outData.Position = 0; for (int i = 0, n = filters.Count; i < n; ++i) { #if (dotNET10 || dotNET11 || dotNETCF10 || dotNETMF) IHproseFilter filter = (IHproseFilter)filters[i]; outData = filter.OutputFilter(outData, context); #else outData = filters[i].OutputFilter(outData, context); #endif outData.Position = 0; } return(outData); }
private void DoOutput(string functionName, object[] arguments, bool byRef, Stream ostream) { HproseWriter hproseWriter = new HproseWriter(ostream, mode); ostream.WriteByte(HproseTags.TagCall); hproseWriter.WriteString(functionName, false); if ((arguments != null) && (arguments.Length > 0 || byRef)) { hproseWriter.Reset(); hproseWriter.WriteArray(arguments, false); if (byRef) { hproseWriter.WriteBoolean(true); } } ostream.WriteByte(HproseTags.TagEnd); }
protected MemoryStream DoInvoke(MemoryStream istream, HproseMethods methods, object context) { HproseReader reader = new HproseReader(istream, mode); MemoryStream data = new MemoryStream(4096); int tag; do { reader.Reset(); string name = reader.ReadString(); HproseMethod remoteMethod = null; int count = 0; object[] args = null; object[] arguments = null; bool byRef = false; tag = reader.CheckTags((char)HproseTags.TagList + "" + (char)HproseTags.TagEnd + "" + (char)HproseTags.TagCall); if (tag == HproseTags.TagList) { reader.Reset(); count = reader.ReadInt(HproseTags.TagOpenbrace); if (methods != null) { remoteMethod = methods.GetMethod(name, count); } if (remoteMethod == null) { remoteMethod = GlobalMethods.GetMethod(name, count); } if (remoteMethod == null) { arguments = reader.ReadArray(count); } else { arguments = new object[count]; reader.ReadArray(remoteMethod.paramTypes, arguments, count); } tag = reader.CheckTags((char)HproseTags.TagTrue + "" + (char)HproseTags.TagEnd + "" + (char)HproseTags.TagCall); if (tag == HproseTags.TagTrue) { byRef = true; tag = reader.CheckTags((char)HproseTags.TagEnd + "" + (char)HproseTags.TagCall); } } else { if (methods != null) { remoteMethod = methods.GetMethod(name, 0); } if (remoteMethod == null) { remoteMethod = GlobalMethods.GetMethod(name, 0); } arguments = new object[0]; } if (OnBeforeInvoke != null) { OnBeforeInvoke(name, arguments, byRef, context); } if (remoteMethod == null) { args = arguments; } else { args = FixArguments(remoteMethod.paramTypes, arguments, count, context); } object result; if (remoteMethod == null) { if (methods != null) { remoteMethod = methods.GetMethod("*", 2); } if (remoteMethod == null) { remoteMethod = GlobalMethods.GetMethod("*", 2); } if (remoteMethod == null) { throw new MissingMethodException("Can't find this method " + name); } result = remoteMethod.method.Invoke(remoteMethod.obj, new object[] { name, args }); } else { result = remoteMethod.method.Invoke(remoteMethod.obj, args); } if (byRef) { Array.Copy(args, 0, arguments, 0, count); } if (OnAfterInvoke != null) { OnAfterInvoke(name, arguments, byRef, result, context); } if (remoteMethod.mode == HproseResultMode.RawWithEndTag) { data.Write((byte[])result, 0, ((byte[])result).Length); return(ResponseEnd(data, context)); } else if (remoteMethod.mode == HproseResultMode.Raw) { data.Write((byte[])result, 0, ((byte[])result).Length); } else { data.WriteByte(HproseTags.TagResult); bool simple = remoteMethod.simple; HproseWriter writer = new HproseWriter(data, mode, simple); if (remoteMethod.mode == HproseResultMode.Serialized) { data.Write((byte[])result, 0, ((byte[])result).Length); } else { writer.Serialize(result); } if (byRef) { data.WriteByte(HproseTags.TagArgument); writer.Reset(); writer.WriteArray(arguments); } } } while (tag == HproseTags.TagCall); data.WriteByte(HproseTags.TagEnd); return(ResponseEnd(data, context)); }
protected void DoInvoke(HproseMethods methods) { Stream istream = InputStream; HproseReader reader = new HproseReader(istream, mode); Stream ostream = OutputStream; HproseWriter writer = new HproseWriter(ostream, mode); int tag; do { reader.Reset(); string name = ((string)reader.ReadString()); HproseMethod remoteMethod = null; int count = 0; object[] args = null; object[] arguments = null; bool byRef = false; tag = reader.CheckTags((char)HproseTags.TagList + "" + (char)HproseTags.TagEnd + "" + (char)HproseTags.TagCall); if (tag == HproseTags.TagList) { reader.Reset(); count = reader.ReadInt(HproseTags.TagOpenbrace); if (methods != null) { remoteMethod = methods.GetMethod(name, count); } if (remoteMethod == null) { remoteMethod = GlobalMethods.GetMethod(name, count); } if (remoteMethod == null) { arguments = reader.ReadArray(count); } else { arguments = new object[count]; reader.ReadArray(remoteMethod.paramTypes, arguments, count); } reader.CheckTag(HproseTags.TagClosebrace); tag = reader.CheckTags((char)HproseTags.TagTrue + "" + (char)HproseTags.TagEnd + "" + (char)HproseTags.TagCall); if (tag == HproseTags.TagTrue) { byRef = true; tag = reader.CheckTags((char)HproseTags.TagEnd + "" + (char)HproseTags.TagCall); } } else { if (methods != null) { remoteMethod = methods.GetMethod(name, 0); } if (remoteMethod == null) { remoteMethod = GlobalMethods.GetMethod(name, 0); } arguments = new object[0]; } if (OnBeforeInvoke != null) { OnBeforeInvoke(name, arguments, byRef); } if (remoteMethod == null) { args = arguments; } else { args = FixArguments(remoteMethod.paramTypes, arguments, count); } object result; if (remoteMethod == null) { if (methods != null) { remoteMethod = methods.GetMethod("*", 2); } if (remoteMethod == null) { remoteMethod = GlobalMethods.GetMethod("*", 2); } if (remoteMethod == null) { throw new MissingMethodException("Can't find this method " + name); } result = remoteMethod.method.Invoke(remoteMethod.obj, new object[] { name, args }); } else { result = remoteMethod.method.Invoke(remoteMethod.obj, args); } if (byRef) { Array.Copy(args, 0, arguments, 0, count); } if (OnAfterInvoke != null) { OnAfterInvoke(name, arguments, byRef, result); } if (remoteMethod.mode == HproseResultMode.RawWithEndTag) { ostream.Write((byte[])result, 0, ((byte[])result).Length); ostream.Flush(); return; } else if (remoteMethod.mode == HproseResultMode.Raw) { ostream.Write((byte[])result, 0, ((byte[])result).Length); } else { ostream.WriteByte(HproseTags.TagResult); if (remoteMethod.mode == HproseResultMode.Serialized) { ostream.Write((byte[])result, 0, ((byte[])result).Length); } else { writer.Reset(); writer.Serialize(result); } if (byRef) { ostream.WriteByte(HproseTags.TagArgument); writer.Reset(); writer.WriteArray(arguments, false); } } } while (tag == HproseTags.TagCall); ostream.WriteByte(HproseTags.TagEnd); ostream.Flush(); }