Lean  $LEAN_TAG$
ZipStreamProvider.cs
1 /*
2  * QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
3  * Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14 */
15 
16 using System.Collections.Generic;
17 using System.IO;
18 using System.Linq;
19 using Ionic.Zip;
20 
21 namespace QuantConnect.ToolBox
22 {
23  /// <summary>
24  /// Provides an implementation of <see cref="IStreamProvider"/> that opens zip files
25  /// </summary>
27  {
28  private readonly object _sync = new object();
29  private readonly Dictionary<string, ZipFile> _zipFiles = new Dictionary<string, ZipFile>();
30 
31  /// <summary>
32  /// Opens the specified source as read to be consumed stream
33  /// </summary>
34  /// <param name="source">The source file to be opened</param>
35  /// <returns>The stream representing the specified source</returns>
36  public IEnumerable<Stream> Open(string source)
37  {
38  lock (_sync)
39  {
40  var archive = new ZipFile(source);
41  _zipFiles.Add(source, archive);
42  foreach (var entry in archive)
43  {
44  yield return entry.OpenReader();
45  }
46  }
47  }
48 
49  /// <summary>
50  /// Closes the specified source file stream
51  /// </summary>
52  /// <param name="source">The source file to be closed</param>
53  public void Close(string source)
54  {
55  lock (_sync)
56  {
57  ZipFile archive;
58  if (_zipFiles.TryGetValue(source, out archive))
59  {
60  _zipFiles.Remove(source);
61  archive.Dispose();
62  }
63  }
64  }
65 
66  /// <summary>
67  /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
68  /// </summary>
69  public void Dispose()
70  {
71  lock (_sync)
72  {
73  foreach (var zipFile in _zipFiles.Values)
74  {
75  zipFile.Dispose();
76  }
77  _zipFiles.Clear();
78  }
79  }
80  }
81 }