Exemplo n.º 1
0
        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));
        }
Exemplo n.º 2
0
        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();
        }