public static CommandUnmarshaller GetInstance()
 {
     if (instance == null)
     {
         instance = new CommandUnmarshaller();
     }
     return(instance);
 }
        public DescribeCommandsResult Unmarshall(JsonUnmarshallerContext context)
        {
            if (context.CurrentTokenType == JsonUnmarshallerContext.TokenType.Null)
            {
                return(null);
            }
            DescribeCommandsResult describeCommandsResult = new DescribeCommandsResult();

            describeCommandsResult.Commands = null;

            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

            while (context.Read())
            {
                if ((context.IsKey) && (context.CurrentDepth == targetDepth))
                {
                    context.Read();
                    context.Read();

                    if (context.TestExpression("Commands", targetDepth))
                    {
                        describeCommandsResult.Commands = new List <Command>();
                        CommandUnmarshaller unmarshaller = CommandUnmarshaller.GetInstance();
                        while (context.Read())
                        {
                            if ((context.IsArrayElement) && (context.CurrentDepth == targetDepth))
                            {
                                describeCommandsResult.Commands.Add(unmarshaller.Unmarshall(context));
                            }
                            else if (context.IsEndArray)
                            {
                                break;
                            }
                        }
                        continue;
                    }
                }
                else if (context.IsEndElement && context.CurrentDepth <= originalDepth)
                {
                    return(describeCommandsResult);
                }
            }


            return(describeCommandsResult);
        }
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeCommandsResponse response = new DescribeCommandsResponse();

            context.Read();
            int targetDepth = context.CurrentDepth;

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("Commands", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <Command, CommandUnmarshaller>(
                        CommandUnmarshaller.GetInstance());
                    response.Commands = unmarshaller.Unmarshall(context);

                    continue;
                }
            }

            return(response);
        }
Пример #4
0
        private static void UnmarshallResult(JsonUnmarshallerContext context, DescribeCommandsResponse response)
        {
            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

            while (context.Read())
            {
                if (context.TestExpression("Commands", targetDepth))
                {
                    context.Read();
                    response.Commands = new List <Command>();
                    CommandUnmarshaller unmarshaller = CommandUnmarshaller.GetInstance();
                    while (context.Read())
                    {
                        JsonToken token = context.CurrentTokenType;
                        if (token == JsonToken.ArrayStart)
                        {
                            continue;
                        }
                        if (token == JsonToken.ArrayEnd)
                        {
                            break;
                        }
                        response.Commands.Add(unmarshaller.Unmarshall(context));
                    }
                    continue;
                }

                if (context.CurrentDepth <= originalDepth)
                {
                    return;
                }
            }

            return;
        }