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 pathViewControllerLoggData.swift
303 lines (280 loc) · 11.1 KB
/
ViewControllerLoggData.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
//
// ViewControllerLoggData.swift
// RsyncOSX
// The ViewController is the logview
//
// Created by Thomas Evensen on 23/09/2016.
// Copyright © 2016 Thomas Evensen. All rights reserved.
//
// swiftlint:disable line_length cyclomatic_complexity
import Cocoa
import Foundation
class ViewControllerLoggData: NSViewController, SetConfigurations, Delay, Index, Connected, VcMain, Checkforrsync, Setcolor, Help {
private var scheduleloggdata: ScheduleLoggData?
private var snapshotscheduleloggdata: Snapshotlogsandcatalogs?
private var index: Int?
private var column: Int = 0
private var sortascending: Bool = true
// Send messages to the sidebar
weak var sidebaractionsDelegate: Sidebaractions?
@IBOutlet var scheduletable: NSTableView!
@IBOutlet var search: NSSearchField!
@IBOutlet var numberOflogfiles: NSTextField!
@IBOutlet var selectedrows: NSTextField!
// Selecting profiles
@IBAction func profiles(_: NSButton) {
presentAsModalWindow(viewControllerProfile!)
}
@IBAction func showHelp(_: AnyObject?) {
help()
}
@IBAction func selectlogs(_: NSButton) {
guard scheduleloggdata?.loggrecords != nil else { return }
for i in 0 ..< (scheduleloggdata?.loggrecords?.count ?? 0) {
if (scheduleloggdata?.loggrecords?[i].delete ?? 0) == 1 {
scheduleloggdata?.loggrecords?[i].delete = 0
} else {
scheduleloggdata?.loggrecords?[i].delete = 1
}
}
globalMainQueue.async { () in
self.selectedrows.stringValue = NSLocalizedString("Selected logs:", comment: "Logg") + " " + self.selectednumber()
self.scheduletable.reloadData()
}
}
// Sidebar delete
func deletealllogs() {
guard selectednumber() != "0" else { return }
let question: String = NSLocalizedString("Delete", comment: "Logg")
let text: String = NSLocalizedString("Cancel or Delete", comment: "Logg")
let dialog: String = NSLocalizedString("Delete", comment: "Logg")
let answer = Alerts.dialogOrCancel(question: question + " " + selectednumber() + " logrecords?", text: text, dialog: dialog)
if answer {
deselectrow()
scheduleloggdata?.deleteselectedrows(scheduleloggdata: scheduleloggdata)
scheduleloggdata = nil
snapshotscheduleloggdata = nil
reloadtabledata()
}
}
private func selectednumber() -> String {
if let number = scheduleloggdata?.loggrecords?.filter({ $0.delete == 1 }).count {
return String(number)
} else {
return "0"
}
}
override func viewDidLoad() {
super.viewDidLoad()
scheduletable.delegate = self
scheduletable.dataSource = self
search.delegate = self
SharedReference.shared.setvcref(viewcontroller: .vcloggdata, nsviewcontroller: self)
}
override func viewDidAppear() {
super.viewDidAppear()
sidebaractionsDelegate = SharedReference.shared.getvcref(viewcontroller: .vcsidebar) as? ViewControllerSideBar
sidebaractionsDelegate?.sidebaractions(action: .logsviewbuttons)
index = index()
if let index = index {
let hiddenID = configurations?.gethiddenID(index: index) ?? -1
guard hiddenID > -1 else { return }
if let config = configurations?.getConfigurations()?[index] {
scheduleloggdata = ScheduleLoggData(hiddenID: hiddenID)
// If task is snapshot get snapshotlogs
if connected(config: config),
config.task == SharedReference.shared.snapshot
{
snapshotscheduleloggdata = Snapshotlogsandcatalogs(config: config)
}
}
} else {
scheduleloggdata = ScheduleLoggData(hiddenID: nil)
}
globalMainQueue.async { () in
self.scheduletable.reloadData()
}
}
override func viewDidDisappear() {
super.viewDidDisappear()
scheduleloggdata = nil
snapshotscheduleloggdata = nil
}
private func deselectrow() {
guard index != nil else { return }
scheduletable.deselectRow(index!)
index = index()
}
func sortbycolumn() {
var comp: (String, String) -> Bool
var comp2: (Date, Date) -> Bool
if sortascending == true {
comp = (<)
comp2 = (<)
} else {
comp = (>)
comp2 = (>)
}
switch column {
case 0:
scheduleloggdata?.loggrecords = scheduleloggdata?.loggrecords?.sorted(by: \.task, using: comp)
case 2:
scheduleloggdata?.loggrecords = scheduleloggdata?.loggrecords?.sorted(by: \.backupID, using: comp)
case 3:
scheduleloggdata?.loggrecords = scheduleloggdata?.loggrecords?.sorted(by: \.localCatalog, using: comp)
case 4:
scheduleloggdata?.loggrecords = scheduleloggdata?.loggrecords?.sorted(by: \.remoteCatalog, using: comp)
case 5:
scheduleloggdata?.loggrecords = scheduleloggdata?.loggrecords?.sorted(by: \.offsiteServer, using: comp)
case 6:
scheduleloggdata?.loggrecords = scheduleloggdata?.loggrecords?.sorted(by: \.date, using: comp2)
default:
return
}
globalMainQueue.async { () in
self.scheduletable.reloadData()
}
}
}
extension ViewControllerLoggData: NSSearchFieldDelegate {
func controlTextDidChange(_: Notification) {
delayWithSeconds(0.25) {
let filterstring = self.search.stringValue
if filterstring.isEmpty {
self.reloadtabledata()
} else {
self.scheduleloggdata?.filter(search: filterstring)
globalMainQueue.async { () in
self.scheduletable.reloadData()
}
}
}
}
func searchFieldDidEndSearching(_: NSSearchField) {
index = nil
reloadtabledata()
}
}
extension ViewControllerLoggData: NSTableViewDataSource {
func numberOfRows(in _: NSTableView) -> Int {
if scheduleloggdata == nil {
numberOflogfiles.stringValue = NSLocalizedString("Number of logs:", comment: "Logg")
selectedrows.stringValue = NSLocalizedString("Selected logs:", comment: "Logg") + " 0"
return 0
} else {
numberOflogfiles.stringValue = NSLocalizedString("Number of logs:", comment: "Logg")
+ " " + String(scheduleloggdata?.loggrecords?.count ?? 0)
selectedrows.stringValue = NSLocalizedString("Selected logs:", comment: "Logg")
+ " " + selectednumber()
return scheduleloggdata?.loggrecords?.count ?? 0
}
}
}
extension ViewControllerLoggData: NSTableViewDelegate {
func tableView(_: NSTableView, objectValueFor tableColumn: NSTableColumn?, row: Int) -> Any? {
if let tableColumn = tableColumn {
guard row < (scheduleloggdata?.loggrecords?.count ?? 0) else { return nil }
if let object = scheduleloggdata?.loggrecords?[row] {
switch tableColumn.identifier.rawValue {
case DictionaryStrings.deleteCellID.rawValue:
return object.delete
case DictionaryStrings.selectCellID.rawValue:
return object.selectCellID
case DictionaryStrings.task.rawValue:
return object.task
case DictionaryStrings.backupID.rawValue:
return object.backupID
case DictionaryStrings.localCatalog.rawValue:
return object.localCatalog
case DictionaryStrings.remoteCatalog.rawValue:
return object.remoteCatalog
case DictionaryStrings.dateExecuted.rawValue:
return object.dateExecuted
case DictionaryStrings.resultExecuted.rawValue:
return object.resultExecuted
case DictionaryStrings.offsiteServer.rawValue:
return object.offsiteServer
default:
return nil
}
}
return nil
}
return nil
}
// setting which table row is selected
func tableViewSelectionDidChange(_ notification: Notification) {
let myTableViewFromNotification = (notification.object as? NSTableView)!
let column = myTableViewFromNotification.selectedColumn
let indexes = myTableViewFromNotification.selectedRowIndexes
if let index = indexes.first {
self.index = index
} else {
index = nil
}
self.column = column
sortbycolumn()
}
func tableView(_: NSTableView, setObjectValue _: Any?, for tableColumn: NSTableColumn?, row: Int) {
if let tableColumn = tableColumn {
if tableColumn.identifier.rawValue == DictionaryStrings.deleteCellID.rawValue {
var delete: Int = scheduleloggdata?.loggrecords?[row].delete ?? 0
if delete == 0 { delete = 1 } else if delete == 1 { delete = 0 }
switch tableColumn.identifier.rawValue {
case DictionaryStrings.deleteCellID.rawValue:
scheduleloggdata?.loggrecords?[row].delete = delete
default:
break
}
globalMainQueue.async { () in
self.selectedrows.stringValue = NSLocalizedString("Selected logs:", comment: "Logg") + " " + self.selectednumber()
}
}
}
}
}
extension ViewControllerLoggData: Reloadandrefresh {
func reloadtabledata() {
scheduleloggdata = nil
snapshotscheduleloggdata = nil
if let index = index {
let hiddenID = configurations?.gethiddenID(index: index) ?? -1
guard hiddenID > -1 else { return }
if let config = configurations?.getConfigurations()?[index] {
scheduleloggdata = ScheduleLoggData(hiddenID: hiddenID)
if connected(config: config),
snapshotscheduleloggdata == nil
{
snapshotscheduleloggdata = Snapshotlogsandcatalogs(config: config)
}
}
} else {
scheduleloggdata = ScheduleLoggData(hiddenID: nil)
}
globalMainQueue.async { () in
self.scheduletable.reloadData()
}
}
}
extension ViewControllerLoggData: OpenQuickBackup {
func openquickbackup() {
globalMainQueue.async { () in
self.presentAsSheet(self.viewControllerQuickBackup!)
}
}
}
extension ViewControllerLoggData: DismissViewController {
func dismiss_view(viewcontroller: NSViewController) {
dismiss(viewcontroller)
}
}
extension ViewControllerLoggData: Sidebarbuttonactions {
func sidebarbuttonactions(action: Sidebaractionsmessages) {
switch action {
case .Delete:
deletealllogs()
default:
return
}
}
}