DotNetCore深入了解之三HttpClientFactory類


當需要向某特定URL地址發送HTTP請求並得到相應響應時,通常會用到HttpClient類。該類包含了眾多有用的方法,可以滿足絕大多數的需求。但是如果對其使用不當時,可能會出現意想不到的事情。

using(var client = new HttpClient())

對象所占用資源應該確保及時被釋放掉,但是,對於網絡連接而言,這是錯誤的。

原因有二,網絡連接是需要耗費一定時間的,頻繁開啟與關閉連接,性能會受影響;再者,開啟網絡連接時會占用底層socket資源,但在HttpClient調用其本身的Dispose方法時,並不能立刻釋放該資源,這意味着你的程序可能會因為耗盡連接資源而產生預期之外的異常。

所以比較好的解決方法是延長HttpClient對象的使用壽命,比如對其建一個靜態的對象:

private static HttpClient Client = new HttpClient();

但從程序員的角度來看,這樣的代碼或許不夠優雅。

所以在.NET Core 2.1中引入了新的HttpClientFactory類。

它的用法很簡單,首先是對其進行IoC的注冊:

1 public void ConfigureServices(IServiceCollection services)
2 {
3     services.AddHttpClient();
4     services.AddMvc();
5 }

然后通過IHttpClientFactory創建一個HttpClient對象,之后的操作如舊,但不需要擔心其內部資源的釋放:

 1 public class LzzDemoController : Controller
 2 {
 3     IHttpClientFactory _httpClientFactory;
 4 
 5     public LzzDemoController(IHttpClientFactory httpClientFactory)
 6     {
 7         _httpClientFactory = httpClientFactory;
 8     }
 9 
10     public IActionResult Index()
11     {
12         var client = _httpClientFactory.CreateClient();
13         var result = client.GetStringAsync("http://myurl/");
14         return View();
15     }
16 }

AddHttpClient的源碼:

 1 public static IServiceCollection AddHttpClient(this IServiceCollection services)
 2 {
 3     if (services == null)
 4     {
 5         throw new ArgumentNullException(nameof(services));
 6     }
 7 
 8     services.AddLogging();
 9     services.AddOptions();
10 
11     //
12     // Core abstractions
13     //
14     services.TryAddTransient<HttpMessageHandlerBuilder, DefaultHttpMessageHandlerBuilder>();
15     services.TryAddSingleton<IHttpClientFactory, DefaultHttpClientFactory>();
16 
17     //
18     // Typed Clients
19     //
20     services.TryAdd(ServiceDescriptor.Singleton(typeof(ITypedHttpClientFactory<>), typeof(DefaultTypedHttpClientFactory<>)));
21 
22     //
23     // Misc infrastructure
24     //
25     services.TryAddEnumerable(ServiceDescriptor.Singleton<IHttpMessageHandlerBuilderFilter, LoggingHttpMessageHandlerBuilderFilter>());
26 
27     return services;
28 }

它的內部為IHttpClientFactory接口綁定了DefaultHttpClientFactory類。

再看IHttpClientFactory接口中關鍵的CreateClient方法:

 1 public HttpClient CreateClient(string name)
 2 {
 3     if (name == null)
 4     {
 5         throw new ArgumentNullException(nameof(name));
 6     }
 7 
 8     var entry = _activeHandlers.GetOrAdd(name, _entryFactory).Value;
 9     var client = new HttpClient(entry.Handler, disposeHandler: false);
10 
11     StartHandlerEntryTimer(entry);
12 
13     var options = _optionsMonitor.Get(name);
14     for (var i = 0; i < options.HttpClientActions.Count; i++)
15     {
16         options.HttpClientActions[i](client);
17     }
18 
19     return client;
20 }

HttpClient的創建不再是簡單的new HttpClient(),而是傳入了兩個參數:HttpMessageHandler handler與bool disposeHandler。disposeHandler參數為false值時表示要重用內部的handler對象。handler參數則從上一句的代碼可以看出是以name為鍵值從一字典中取出,又因為DefaultHttpClientFactory類是通過TryAddSingleton方法注冊的,也就意味着其為單例,那么這個內部字典便是唯一的,每個鍵值對應的ActiveHandlerTrackingEntry對象也是唯一,該對象內部中包含着handler。

下一句代碼StartHandlerEntryTimer(entry); 開啟了ActiveHandlerTrackingEntry對象的過期計時處理。默認過期時間是2分鍾。

 1 internal void ExpiryTimer_Tick(object state)
 2 {
 3     var active = (ActiveHandlerTrackingEntry)state;
 4 
 5     // The timer callback should be the only one removing from the active collection. If we can't find
 6     // our entry in the collection, then this is a bug.
 7     var removed = _activeHandlers.TryRemove(active.Name, out var found);
 8     Debug.Assert(removed, "Entry not found. We should always be able to remove the entry");
 9     Debug.Assert(object.ReferenceEquals(active, found.Value), "Different entry found. The entry should not have been replaced");
10 
11     // At this point the handler is no longer 'active' and will not be handed out to any new clients.
12     // However we haven't dropped our strong reference to the handler, so we can't yet determine if
13     // there are still any other outstanding references (we know there is at least one).
14     //
15     // We use a different state object to track expired handlers. This allows any other thread that acquired
16     // the 'active' entry to use it without safety problems.
17     var expired = new ExpiredHandlerTrackingEntry(active);
18     _expiredHandlers.Enqueue(expired);
19 
20     Log.HandlerExpired(_logger, active.Name, active.Lifetime);
21 
22     StartCleanupTimer();
23 }

先是將ActiveHandlerTrackingEntry對象傳入新的ExpiredHandlerTrackingEntry對象。

1 public ExpiredHandlerTrackingEntry(ActiveHandlerTrackingEntry other)
2 {
3     Name = other.Name;
4 
5     _livenessTracker = new WeakReference(other.Handler);
6     InnerHandler = other.Handler.InnerHandler;
7 }

在其構造方法內部,handler對象通過弱引用方式關聯着,不會影響其被GC釋放。

然后新建的ExpiredHandlerTrackingEntry對象被放入專用的隊列。

最后開始清理工作,定時器的時間間隔設定為每10秒一次。

 1 internal void CleanupTimer_Tick(object state)
 2 {
 3     // Stop any pending timers, we'll restart the timer if there's anything left to process after cleanup.
 4     //
 5     // With the scheme we're using it's possible we could end up with some redundant cleanup operations.
 6     // This is expected and fine.
 7     // 
 8     // An alternative would be to take a lock during the whole cleanup process. This isn't ideal because it
 9     // would result in threads executing ExpiryTimer_Tick as they would need to block on cleanup to figure out
10     // whether we need to start the timer.
11     StopCleanupTimer();
12 
13     try
14     {
15         if (!Monitor.TryEnter(_cleanupActiveLock))
16         {
17             // We don't want to run a concurrent cleanup cycle. This can happen if the cleanup cycle takes
18             // a long time for some reason. Since we're running user code inside Dispose, it's definitely
19             // possible.
20             //
21             // If we end up in that position, just make sure the timer gets started again. It should be cheap
22             // to run a 'no-op' cleanup.
23             StartCleanupTimer();
24             return;
25         }
26 
27         var initialCount = _expiredHandlers.Count;
28         Log.CleanupCycleStart(_logger, initialCount);
29 
30         var stopwatch = ValueStopwatch.StartNew();
31 
32         var disposedCount = 0;
33         for (var i = 0; i < initialCount; i++)
34         {
35             // Since we're the only one removing from _expired, TryDequeue must always succeed.
36             _expiredHandlers.TryDequeue(out var entry);
37             Debug.Assert(entry != null, "Entry was null, we should always get an entry back from TryDequeue");
38 
39             if (entry.CanDispose)
40             {
41                 try
42                 {
43                     entry.InnerHandler.Dispose();
44                     disposedCount++;
45                 }
46                 catch (Exception ex)
47                 {
48                     Log.CleanupItemFailed(_logger, entry.Name, ex);
49                 }
50             }
51             else
52             {
53                 // If the entry is still live, put it back in the queue so we can process it 
54                 // during the next cleanup cycle.
55                 _expiredHandlers.Enqueue(entry);
56             }
57         }
58 
59         Log.CleanupCycleEnd(_logger, stopwatch.GetElapsedTime(), disposedCount, _expiredHandlers.Count);
60     }
61     finally
62     {
63         Monitor.Exit(_cleanupActiveLock);
64     }
65 
66     // We didn't totally empty the cleanup queue, try again later.
67     if (_expiredHandlers.Count > 0)
68     {
69         StartCleanupTimer();
70     }
71 }

上述方法核心是判斷是否handler對象已經被GC,如果是的話,則釋放其內部資源,即網絡連接。

回到最初創建HttpClient的代碼,會發現並沒有傳入任何name參數值。這是得益於HttpClientFactoryExtensions類的擴展方法。

1 public static HttpClient CreateClient(this IHttpClientFactory factory)
2 {
3     if (factory == null)
4     {
5         throw new ArgumentNullException(nameof(factory));
6     }
7 
8     return factory.CreateClient(Options.DefaultName);
9 }

Options.DefaultName的值為string.Empty。

DefaultHttpClientFactory缺少無參數的構造方法,唯一的構造方法需要傳入多個參數,這也意味着構建它時需要依賴其它一些類,所以目前只適用於在ASP.NET程序中使用,還無法應用到諸如控制台一類的程序,希望之后官方能夠對其繼續增強,使得應用范圍變得更廣。

1 public DefaultHttpClientFactory(
2     IServiceProvider services,
3     ILoggerFactory loggerFactory,
4     IOptionsMonitor<HttpClientFactoryOptions> optionsMonitor,
5     IEnumerable<IHttpMessageHandlerBuilderFilter> filters)

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM