Beispiel #1
0
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            ListBootstrapActionsResponse response = new ListBootstrapActionsResponse();

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("BootstrapActions", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <Command, CommandUnmarshaller>(CommandUnmarshaller.Instance);
                    response.BootstrapActions = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("Marker", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.Marker = unmarshaller.Unmarshall(context);
                    continue;
                }
            }


            return(response);
        }
Beispiel #2
0
        public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems)
        {
            AmazonElasticMapReduceConfig config = new AmazonElasticMapReduceConfig();

            config.RegionEndpoint = region;
            ConfigureClient(config);
            AmazonElasticMapReduceClient client = new AmazonElasticMapReduceClient(creds, config);

            ListBootstrapActionsResponse resp = new ListBootstrapActionsResponse();

            do
            {
                ListBootstrapActionsRequest req = new ListBootstrapActionsRequest
                {
                    Marker = resp.Marker
                };

                resp = client.ListBootstrapActions(req);
                CheckError(resp.HttpStatusCode, "200");

                foreach (var obj in resp.BootstrapActions)
                {
                    AddObject(obj);
                }
            }while (!string.IsNullOrEmpty(resp.Marker));
        }
Beispiel #3
0
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            ListBootstrapActionsResponse response = new ListBootstrapActionsResponse();

            context.Read();

            UnmarshallResult(context, response);
            return(response);
        }
Beispiel #4
0
        private static void UnmarshallResult(JsonUnmarshallerContext context, ListBootstrapActionsResponse response)
        {
            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

            while (context.Read())
            {
                if (context.TestExpression("BootstrapActions", targetDepth))
                {
                    context.Read();

                    if (context.CurrentTokenType == JsonToken.Null)
                    {
                        response.BootstrapActions = null;
                        continue;
                    }
                    response.BootstrapActions = 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.BootstrapActions.Add(unmarshaller.Unmarshall(context));
                    }
                    continue;
                }

                if (context.TestExpression("Marker", targetDepth))
                {
                    context.Read();
                    response.Marker = StringUnmarshaller.GetInstance().Unmarshall(context);
                    continue;
                }

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

            return;
        }