aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard/WireGuard/ZipArchive
diff options
context:
space:
mode:
Diffstat (limited to 'WireGuard/WireGuard/ZipArchive')
-rw-r--r--WireGuard/WireGuard/ZipArchive/ZipExporter.swift35
1 files changed, 22 insertions, 13 deletions
diff --git a/WireGuard/WireGuard/ZipArchive/ZipExporter.swift b/WireGuard/WireGuard/ZipArchive/ZipExporter.swift
index d0cf9a7..bd6c3dd 100644
--- a/WireGuard/WireGuard/ZipArchive/ZipExporter.swift
+++ b/WireGuard/WireGuard/ZipArchive/ZipExporter.swift
@@ -8,21 +8,30 @@ enum ZipExporterError: Error {
}
class ZipExporter {
- static func exportConfigFiles(tunnelConfigurations: [TunnelConfiguration], to destinationURL: URL) throws {
+ static func exportConfigFiles(tunnelConfigurations: [TunnelConfiguration], to url: URL, completion: @escaping (Error?) -> Void) {
- guard (!tunnelConfigurations.isEmpty) else { throw ZipExporterError.noTunnelsToExport }
-
- var inputsToArchiver: [(fileName: String, contents: Data)] = []
-
- var lastTunnelName: String = ""
- for tunnelConfiguration in tunnelConfigurations {
- if let contents = WgQuickConfigFileWriter.writeConfigFile(from: tunnelConfiguration) {
- let name = tunnelConfiguration.interface.name
- if (name.isEmpty || name == lastTunnelName) { continue }
- inputsToArchiver.append((fileName: "\(name).conf", contents: contents))
- lastTunnelName = name
+ guard (!tunnelConfigurations.isEmpty) else {
+ completion(ZipExporterError.noTunnelsToExport)
+ return
+ }
+ DispatchQueue.global(qos: .userInitiated).async {
+ var inputsToArchiver: [(fileName: String, contents: Data)] = []
+ var lastTunnelName: String = ""
+ for tunnelConfiguration in tunnelConfigurations {
+ if let contents = WgQuickConfigFileWriter.writeConfigFile(from: tunnelConfiguration) {
+ let name = tunnelConfiguration.interface.name
+ if (name.isEmpty || name == lastTunnelName) { continue }
+ inputsToArchiver.append((fileName: "\(name).conf", contents: contents))
+ lastTunnelName = name
+ }
+ }
+ do {
+ try ZipArchive.archive(inputs: inputsToArchiver, to: url)
+ } catch (let e) {
+ DispatchQueue.main.async { completion(e) }
+ return
}
+ DispatchQueue.main.async { completion(nil) }
}
- try ZipArchive.archive(inputs: inputsToArchiver, to: destinationURL)
}
}