DefaultAcsClient.cs 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. using Aliyun.Acs.Core.Auth;
  20. using Aliyun.Acs.Core.Exceptions;
  21. using Aliyun.Acs.Core.Http;
  22. using Aliyun.Acs.Core.Profile;
  23. using Aliyun.Acs.Core.Reader;
  24. using Aliyun.Acs.Core.Regions;
  25. using Aliyun.Acs.Core.Transform;
  26. using System.Collections.Generic;
  27. using System;
  28. namespace Aliyun.Acs.Core
  29. {
  30. public class DefaultAcsClient : IAcsClient
  31. {
  32. private int maxRetryNumber = 3;
  33. private bool autoRetry = true;
  34. private IClientProfile clientProfile = null;
  35. private int timeoutInMilliSeconds = 100000; // Default 100 Seconds
  36. public DefaultAcsClient()
  37. {
  38. this.clientProfile = DefaultProfile.GetProfile();
  39. }
  40. public DefaultAcsClient(IClientProfile profile)
  41. {
  42. this.clientProfile = profile;
  43. }
  44. public T GetAcsResponse<T>(AcsRequest<T> request) where T : AcsResponse
  45. {
  46. HttpResponse httpResponse = this.DoAction(request);
  47. return ParseAcsResponse(request, httpResponse);
  48. }
  49. public T GetAcsResponse<T>(AcsRequest<T> request, bool autoRetry, int maxRetryNumber) where T : AcsResponse
  50. {
  51. HttpResponse httpResponse = this.DoAction(request, autoRetry, maxRetryNumber);
  52. return ParseAcsResponse(request, httpResponse);
  53. }
  54. public T GetAcsResponse<T>(AcsRequest<T> request, IClientProfile profile) where T : AcsResponse
  55. {
  56. HttpResponse httpResponse = this.DoAction(request, profile);
  57. return ParseAcsResponse(request, httpResponse);
  58. }
  59. public T GetAcsResponse<T>(AcsRequest<T> request, string regionId, Credential credential) where T : AcsResponse
  60. {
  61. HttpResponse httpResponse = this.DoAction(request, regionId, credential);
  62. return ParseAcsResponse(request, httpResponse);
  63. }
  64. public CommonResponse DoCommonAction(CommonRequest request)
  65. {
  66. HttpResponse httpResponse = this.DoAction(request);
  67. String data = System.Text.Encoding.UTF8.GetString(httpResponse.Content);
  68. CommonResponse response = new CommonResponse();
  69. response.Data = data;
  70. response.HttpResponse = httpResponse;
  71. return response;
  72. }
  73. private T ParseAcsResponse<T>(AcsRequest<T> request, HttpResponse httpResponse) where T : AcsResponse
  74. {
  75. FormatType? format = httpResponse.ContentType;
  76. if (httpResponse.isSuccess())
  77. {
  78. return ReadResponse<T>(request, httpResponse, format);
  79. }
  80. else
  81. {
  82. AcsError error = ReadError(request, httpResponse, format);
  83. if (null != error.ErrorCode)
  84. {
  85. if (500 <= httpResponse.Status)
  86. {
  87. throw new ServerException(error.ErrorCode, error.ErrorMessage, error.RequestId);
  88. }
  89. else
  90. {
  91. throw new ClientException(error.ErrorCode, error.ErrorMessage, error.RequestId);
  92. }
  93. }
  94. else
  95. {
  96. T t = System.Activator.CreateInstance<T>();
  97. t.HttpResponse = httpResponse;
  98. return t;
  99. }
  100. }
  101. }
  102. public HttpResponse DoAction<T>(AcsRequest<T> request) where T : AcsResponse
  103. {
  104. return DoAction(request, autoRetry, maxRetryNumber, this.clientProfile);
  105. }
  106. public HttpResponse DoAction<T>(AcsRequest<T> request, bool autoRetry, int maxRetryNumber) where T : AcsResponse
  107. {
  108. return DoAction(request, autoRetry, maxRetryNumber, this.clientProfile);
  109. }
  110. public HttpResponse DoAction<T>(AcsRequest<T> request, IClientProfile profile) where T : AcsResponse
  111. {
  112. return DoAction(request, this.autoRetry, this.maxRetryNumber, profile);
  113. }
  114. public HttpResponse DoAction<T>(AcsRequest<T> request, string regionId, Credential credential) where T : AcsResponse
  115. {
  116. ISigner signer = null;
  117. FormatType format = FormatType.JSON;
  118. List<Endpoint> endpoints = null;
  119. if (null != this.clientProfile)
  120. {
  121. signer = clientProfile.GetSigner();
  122. format = clientProfile.GetFormat();
  123. endpoints = clientProfile.GetEndpoints(regionId, request.Product, credential, request.LocationProduct); ;
  124. }
  125. return DoAction(request, autoRetry, this.maxRetryNumber, regionId, credential, signer, format, endpoints);
  126. }
  127. public HttpResponse DoAction<T>(AcsRequest<T> request, bool autoRetry,
  128. int maxRetryNumber, IClientProfile profile) where T : AcsResponse
  129. {
  130. if (null == profile)
  131. {
  132. throw new ClientException("SDK.InvalidProfile", "No active profile found.");
  133. }
  134. string regionId = profile.GetRegionId();
  135. if (null != request.RegionId)
  136. {
  137. regionId = request.RegionId;
  138. }
  139. Credential credential = profile.GetCredential();
  140. ISigner signer = profile.GetSigner();
  141. FormatType? format = profile.GetFormat();
  142. List<Endpoint> endpoints = profile.GetEndpoints(regionId, request.Product, credential, request.LocationProduct);
  143. return DoAction(request, autoRetry, maxRetryNumber, regionId, credential, signer, format, endpoints);
  144. }
  145. public HttpResponse DoAction<T>(AcsRequest<T> request, bool autoRetry, int maxRetryNumber, string regionId,
  146. Credential credential, ISigner signer, FormatType? format, List<Endpoint> endpoints) where T : AcsResponse
  147. {
  148. FormatType? requestFormatType = request.AcceptFormat;
  149. if (null != requestFormatType)
  150. {
  151. format = requestFormatType;
  152. }
  153. if (null == request.RegionId)
  154. {
  155. request.RegionId = regionId;
  156. }
  157. ProductDomain domain = Endpoint.FindProductDomain(regionId, request.Product, endpoints, this);
  158. if (null == domain)
  159. {
  160. throw new ClientException("SDK.InvalidRegionId", "Can not find endpoint to access.");
  161. }
  162. HttpRequest httpRequest = request.SignRequest(signer, credential, format, domain);
  163. int retryTimes = 1;
  164. HttpResponse response = HttpResponse.GetResponse(httpRequest, timeoutInMilliSeconds);
  165. while (500 <= response.Status && autoRetry && retryTimes < maxRetryNumber)
  166. {
  167. httpRequest = request.SignRequest(signer, credential, format, domain);
  168. response = HttpResponse.GetResponse(httpRequest, timeoutInMilliSeconds);
  169. retryTimes++;
  170. }
  171. return response;
  172. }
  173. private T ReadResponse<T>(AcsRequest<T> request, HttpResponse httpResponse, FormatType? format) where T : AcsResponse
  174. {
  175. IReader reader = ReaderFactory.CreateInstance(format);
  176. UnmarshallerContext context = new UnmarshallerContext();
  177. string body = System.Text.Encoding.UTF8.GetString(httpResponse.Content);
  178. context.ResponseDictionary = reader.Read(body, request.ActionName);
  179. context.HttpResponse = httpResponse;
  180. return request.GetResponse(context);
  181. }
  182. private AcsError ReadError<T>(AcsRequest<T> request, HttpResponse httpResponse, FormatType? format) where T : AcsResponse
  183. {
  184. string responseEndpoint = "Error";
  185. IReader reader = ReaderFactory.CreateInstance(format);
  186. UnmarshallerContext context = new UnmarshallerContext();
  187. string body = System.Text.Encoding.Default.GetString(httpResponse.Content);
  188. if (null == reader)
  189. {
  190. context.ResponseDictionary = new Dictionary<string, string>();
  191. }
  192. else
  193. {
  194. context.ResponseDictionary = reader.Read(body, responseEndpoint);
  195. }
  196. return AcsErrorUnmarshaller.Unmarshall(context);
  197. }
  198. public int MaxRetryNumber
  199. {
  200. get { return maxRetryNumber; }
  201. set { maxRetryNumber = value; }
  202. }
  203. public bool AutoRetry
  204. {
  205. get { return autoRetry; }
  206. set { autoRetry = value; }
  207. }
  208. public int TimeoutInMilliSeconds
  209. {
  210. get { return timeoutInMilliSeconds; }
  211. set { timeoutInMilliSeconds = value; }
  212. }
  213. }
  214. }