mirror of
https://github.com/chylex/Code-Statistics.git
synced 2024-11-24 21:42:45 +01:00
126 lines
4.3 KiB
C#
126 lines
4.3 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using CodeStatisticsCore.Input;
|
|
|
|
namespace CodeStatistics.Input.Helpers{
|
|
class ZipArchive : IDisposable{
|
|
public static bool CanHandleFile(string file){
|
|
return IOUtils.CheckExtension(file, "ZIP");
|
|
}
|
|
|
|
public static bool CheckZipSupport(){
|
|
return typeof(System.IO.Packaging.Package).Assembly.GetType("MS.Internal.IO.Zip.ZipArchive") != null;
|
|
}
|
|
|
|
private readonly string file;
|
|
private readonly string extractPath;
|
|
private readonly object inner;
|
|
|
|
private CancellationTokenSource cancelToken;
|
|
|
|
public ZipArchive(string file, string extractPath){
|
|
var type = typeof(System.IO.Packaging.Package).Assembly.GetType("MS.Internal.IO.Zip.ZipArchive");
|
|
if (type == null)throw new InvalidOperationException();
|
|
|
|
var openFile = type.GetMethod("OpenOnFile", BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic);
|
|
|
|
this.file = file;
|
|
this.extractPath = extractPath;
|
|
this.inner = openFile.Invoke(null, new object[]{ file, FileMode.Open, FileAccess.Read, FileShare.Read, false });
|
|
}
|
|
|
|
public ZipArchive(string file) : this(file, Path.GetFullPath(file+".out/")){}
|
|
|
|
public IEnumerable<ArchiveEntry> GetEntries(){
|
|
var getFiles = inner.GetType().GetMethod("GetFiles", BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
|
|
|
|
foreach(var obj in (IEnumerable)getFiles.Invoke(inner, null)){
|
|
yield return new ArchiveEntry(obj);
|
|
}
|
|
}
|
|
|
|
public string Extract(){
|
|
Directory.CreateDirectory(extractPath);
|
|
|
|
foreach(ArchiveEntry entry in GetEntries()){
|
|
ExtractFile(entry);
|
|
}
|
|
|
|
return extractPath;
|
|
}
|
|
|
|
public CancellationTokenSource ExtractAsync(Action<string> onFinished){
|
|
if (cancelToken != null){
|
|
cancelToken.Cancel();
|
|
}
|
|
|
|
cancelToken = new CancellationTokenSource();
|
|
|
|
new Task(() => {
|
|
foreach(ArchiveEntry entry in GetEntries()){
|
|
if (cancelToken.IsCancellationRequested)return;
|
|
ExtractFile(entry);
|
|
}
|
|
|
|
onFinished(extractPath);
|
|
}).Start();
|
|
|
|
return cancelToken;
|
|
}
|
|
|
|
private void ExtractFile(ArchiveEntry entry){
|
|
if (entry.IsFolder)return;
|
|
|
|
string dirName = Path.GetDirectoryName(entry.Path);
|
|
if (dirName == null)return;
|
|
|
|
Directory.CreateDirectory(Path.Combine(extractPath, dirName));
|
|
|
|
using(var sourceStream = entry.CreateStream()){
|
|
using(var fileStream = new FileStream(Path.Combine(extractPath, entry.Path), FileMode.OpenOrCreate, FileAccess.Write, FileShare.None)){
|
|
sourceStream.Seek(0, SeekOrigin.Begin);
|
|
sourceStream.CopyTo(fileStream);
|
|
}
|
|
}
|
|
}
|
|
|
|
public void DeleteAndDispose(){
|
|
Dispose();
|
|
System.IO.File.Delete(file);
|
|
}
|
|
|
|
public void Dispose(){
|
|
((IDisposable)inner).Dispose();
|
|
|
|
if (cancelToken != null){
|
|
cancelToken.Dispose();
|
|
}
|
|
}
|
|
|
|
public class ArchiveEntry{
|
|
private readonly object inner;
|
|
|
|
public string Path { get { return (string)GetProperty("Name"); } }
|
|
public bool IsFolder { get { return (bool)GetProperty("FolderFlag"); } }
|
|
|
|
public ArchiveEntry(object inner){
|
|
this.inner = inner;
|
|
}
|
|
|
|
public Stream CreateStream(){
|
|
var getStream = inner.GetType().GetMethod("GetStream", BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
|
|
return (Stream)getStream.Invoke(inner, new object[]{ FileMode.Open, FileAccess.Read });
|
|
}
|
|
|
|
private object GetProperty(string name){
|
|
return inner.GetType().GetProperty(name, BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic).GetValue(inner, null);
|
|
}
|
|
}
|
|
}
|
|
}
|