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

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

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

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

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

            DescribeTapeArchivesResponse resp = new DescribeTapeArchivesResponse();

            do
            {
                DescribeTapeArchivesRequest req = new DescribeTapeArchivesRequest
                {
                    Marker = resp.Marker
                    ,
                    Limit = maxItems
                };

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

                foreach (var obj in resp.TapeArchives)
                {
                    AddObject(obj);
                }
            }while (!string.IsNullOrEmpty(resp.Marker));
        }
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeTapeArchivesResponse response = new DescribeTapeArchivesResponse();

            context.Read();

            UnmarshallResult(context, response);
            return(response);
        }
        private static void UnmarshallResult(JsonUnmarshallerContext context, DescribeTapeArchivesResponse response)
        {
            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

            while (context.Read())
            {
                if (context.TestExpression("TapeArchives", targetDepth))
                {
                    context.Read();
                    response.TapeArchives = new List <TapeArchive>();
                    TapeArchiveUnmarshaller unmarshaller = TapeArchiveUnmarshaller.GetInstance();
                    while (context.Read())
                    {
                        JsonToken token = context.CurrentTokenType;
                        if (token == JsonToken.ArrayStart)
                        {
                            continue;
                        }
                        if (token == JsonToken.ArrayEnd)
                        {
                            break;
                        }
                        response.TapeArchives.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;
        }