This repository was archived by the owner on Oct 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathSharedReference.swift
327 lines (318 loc) · 9.63 KB
/
SharedReference.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
//
// SharedReference.swift
// RsyncOSX
//
// Created by Thomas Evensen on 05.09.2017.
// Copyright © 2017 Thomas Evensen. All rights reserved.
//
// swiftlint:disable cyclomatic_complexity
import Cocoa
import Foundation
enum ViewController {
case vctabmain
case vcloggdata
case vcnewconfigurations
case vcrestore
case vcssh
case vcsnapshot
case vcabout
case vcprogressview
case vcquickbackup
case vcremoteinfo
case vcestimatingtasks
case vcinfolocalremote
case vcalloutput
case vcedit
case vcrsyncparameters
case vcsidebar
case vcrsynccommand
}
final class SharedReference {
// Creates a singelton of this class
class var shared: SharedReference {
struct Singleton {
static let instance = SharedReference()
}
return Singleton.instance
}
// Download URL if new version is avaliable
var URLnewVersion: String?
// True if version 3.1.2 or 3.1.3 of rsync in /usr/local/bin
var rsyncversion3: Bool = false
// Optional path to rsync
var localrsyncpath: String?
// No valid rsyncPath - true if no valid rsync is found
var norsync: Bool = false
// rsync command
let rsync: String = "rsync"
let usrbinrsync: String = "/usr/bin/rsync"
let usrlocalbinrsync: String = "/usr/local/bin/rsync"
let opthomebrewbinrsync: String = "/opt/homebrew/bin/rsync"
var macosarm: Bool = false
// Where RsyncOSX config files are stored
let configpath: String = "/.rsyncosx/"
// User config JSON file
let userconfigjson: String = "rsyncosxconfig.json"
// Detailed logging
var detailedlogging: Bool = true
// Temporary path for restore
var pathforrestore: String?
// Loggfile
var minimumlogging: Bool = false
var fulllogging: Bool = false
var logname: String = "rsyncosx.txt"
// String tasks
var synchronize: String = "synchronize"
var snapshot: String = "snapshot"
var syncremote: String = "syncremote"
var synctasks: Set<String>
// Mark number of days since last backup
var marknumberofdayssince: Double = 5
// rsync version string
var rsyncversionstring: String?
// rsync short version
var rsyncversionshort: String?
// filsize logfile warning
var logfilesize: Int = 100_000
// Extra lines in rsync output
var extralines: Int = 18
// Mac serialnumer
var macserialnumber: String?
// Initial start
var initialstart: Int = 0
// Setting environmentvariable for Process object
var environment: String?
var environmentvalue: String?
// Check input when loading schedules
// var checkinput: Bool = false
// Halt on error
var haltonerror: Bool = false
// Global SSH parameters
var sshport: Int?
var sshkeypathandidentityfile: String?
// Check for network changes
var monitornetworkconnection: Bool = false
// Reference to the active process
var process: Process?
// JSON names
let fileschedulesjson = "schedules.json"
let fileconfigurationsjson = "configurations.json"
// for automatic backup
var estimatedlistforsynchronization: Estimatedlistforsynchronization?
// If firstime use
var firsttime = false
// if new version
var newversionofrsyncosx = false
// Reference to main View
private var viewControllertabMain: NSViewController?
// Reference to Copy files
private var viewControllerRestore: NSViewController?
// Reference to the New tasks
private var viewControllerNewConfigurations: NSViewController?
// Which profile to use, if default nil
private var viewControllerLoggData: NSViewController?
// Reference to Ssh view
private var viewControllerSsh: NSViewController?
// Reference to About
private var viewControllerAbout: NSViewController?
// ProgressView single task
private var viewControllerProgressView: NSViewController?
// Quick backup
private var viewControllerQuickbackup: NSViewController?
// Remote info
private var viewControllerRemoteInfo: NSViewController?
// Snapshot
private var viewControllerSnapshot: NSViewController?
// Estimating tasks
private var viewControllerEstimatingTasks: NSViewController?
// Local and remote info
private var viewControllerInfoLocalRemote: NSViewController?
// Alloutput
private var viewControllerAlloutput: NSViewController?
// Edit
private var viewControllerEdit: NSViewController?
// Rsync parameters
private var viewControllerRsyncParameters: NSViewController?
// Sidebar
private var viewcontrollerSideBar: NSViewController?
// Show rsynccommand
private var viewcontrollerrsynccommand: NSViewController?
func getvcref(viewcontroller: ViewController) -> NSViewController? {
switch viewcontroller {
case .vctabmain:
return viewControllertabMain
case .vcloggdata:
return viewControllerLoggData
case .vcnewconfigurations:
return viewControllerNewConfigurations
case .vcrestore:
return viewControllerRestore
case .vcssh:
return viewControllerSsh
case .vcabout:
return viewControllerAbout
case .vcprogressview:
return viewControllerProgressView
case .vcquickbackup:
return viewControllerQuickbackup
case .vcremoteinfo:
return viewControllerRemoteInfo
case .vcsnapshot:
return viewControllerSnapshot
case .vcestimatingtasks:
return viewControllerEstimatingTasks
case .vcinfolocalremote:
return viewControllerInfoLocalRemote
case .vcalloutput:
return viewControllerAlloutput
case .vcedit:
return viewControllerEdit
case .vcrsyncparameters:
return viewControllerRsyncParameters
case .vcsidebar:
return viewcontrollerSideBar
case .vcrsynccommand:
return viewcontrollerrsynccommand
}
}
func setvcref(viewcontroller: ViewController, nsviewcontroller: NSViewController?) {
switch viewcontroller {
case .vctabmain:
viewControllertabMain = nsviewcontroller
case .vcloggdata:
viewControllerLoggData = nsviewcontroller
case .vcnewconfigurations:
viewControllerNewConfigurations = nsviewcontroller
case .vcrestore:
viewControllerRestore = nsviewcontroller
case .vcssh:
viewControllerSsh = nsviewcontroller
case .vcabout:
viewControllerAbout = nsviewcontroller
case .vcprogressview:
viewControllerProgressView = nsviewcontroller
case .vcquickbackup:
viewControllerQuickbackup = nsviewcontroller
case .vcremoteinfo:
viewControllerRemoteInfo = nsviewcontroller
case .vcsnapshot:
viewControllerSnapshot = nsviewcontroller
case .vcestimatingtasks:
viewControllerEstimatingTasks = nsviewcontroller
case .vcinfolocalremote:
viewControllerInfoLocalRemote = nsviewcontroller
case .vcalloutput:
viewControllerAlloutput = nsviewcontroller
case .vcedit:
viewControllerEdit = nsviewcontroller
case .vcrsyncparameters:
viewControllerRsyncParameters = nsviewcontroller
case .vcsidebar:
viewcontrollerSideBar = nsviewcontroller
case .vcrsynccommand:
viewcontrollerrsynccommand = nsviewcontroller
}
}
init() {
synctasks = Set<String>()
synctasks = [synchronize, snapshot, syncremote]
}
}
enum DictionaryStrings: String {
case localCatalog
case profile
case remoteCatalog
case offsiteServer
case task
case backupID
case daysID
case dateExecuted
case offsiteUsername
case markdays
case selectCellID
case hiddenID
case offsiteCatalog
case dateStart
case schedule
case dateStop
case resultExecuted
case snapshotnum
case snapdayoffweek
case dateRun
case executepretask
case executeposttask
case snapCellID
case localCatalogCellID
case offsiteCatalogCellID
case offsiteUsernameID
case offsiteServerCellID
case backupIDCellID
case runDateCellID
case haltshelltasksonerror
case taskCellID
case parameter1
case parameter2
case parameter3
case parameter4
case parameter5
case parameter6
case parameter8
case parameter9
case parameter10
case parameter11
case parameter12
case parameter13
case parameter14
case rsyncdaemon
case sshport
case snaplast
case sshkeypathandidentityfile
case pretask
case posttask
case executed
case offsiteserver
case version3Rsync
case detailedlogging
case rsyncPath
case restorePath
case marknumberofdayssince
case pathrsyncosx
case pathrsyncosxsched
case minimumlogging
case fulllogging
case environment
case environmentvalue
case haltonerror
case monitornetworkconnection
case used
case avail
case availpercent
case deleteCellID
case remotecomputers
case remoteusers
case remotehome
case catalogs
case localhome
case transferredNumber
case timetostart
case start
case snapshotCatalog
case days
case totalNumber
case totalDirs
case transferredNumberSizebytes
case totalNumberSizebytes
case newfiles
case deletefiles
case select
case startsin
case stopCellID
case delta
case completeCellID
case inprogressCellID
case profilename
case index
case ShellID
case localhost
case period
}