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 pathViewControllerEstimatingTasks.swift
109 lines (95 loc) · 3.96 KB
/
ViewControllerEstimatingTasks.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
//
// ViewControllerEstimatingTasks.swift
// RsyncOSX
//
// Created by Thomas Evensen on 21.04.2018.
// Copyright © 2018 Thomas Evensen. All rights reserved.
//
import Cocoa
import Foundation
// Protocol for progress indicator
protocol CountRemoteEstimatingNumberoftasks: AnyObject {
func maxCount() -> Int
func inprogressCount() -> Int
}
class ViewControllerEstimatingTasks: NSViewController, Abort, SetConfigurations, SetDismisser {
weak var countDelegate: CountRemoteEstimatingNumberoftasks?
private var remoteinfotask: RemoteinfoEstimation?
var diddissappear: Bool = false
@IBOutlet var abort: NSButton!
@IBOutlet var progress: NSProgressIndicator!
@IBAction func abort(_: NSButton) {
remoteinfotask?.abort()
abort()
remoteinfotask = nil
closeview()
}
override func viewDidLoad() {
super.viewDidLoad()
SharedReference.shared.setvcref(viewcontroller: .vcestimatingtasks, nsviewcontroller: self)
}
override func viewDidAppear() {
super.viewDidAppear()
guard diddissappear == false else { return }
abort.isEnabled = true
remoteinfotask = RemoteinfoEstimation(viewcontroller: self, processtermination: processtermination)
initiateProgressbar()
}
override func viewWillDisappear() {
super.viewWillDisappear()
diddissappear = true
// Release the estimating object
remoteinfotask?.abort()
remoteinfotask = nil
}
// Progress bars
private func initiateProgressbar() {
progress.maxValue = Double(remoteinfotask?.maxCount() ?? 0)
progress.minValue = 0
progress.doubleValue = 0
progress.startAnimation(self)
}
private func updateProgressbar(_ value: Double) {
progress.doubleValue = value
}
private func closeview() {
if (presentingViewController as? ViewControllerMain) != nil {
dismissview(viewcontroller: self, vcontroller: .vctabmain)
} else if (presentingViewController as? ViewControllerNewConfigurations) != nil {
dismissview(viewcontroller: self, vcontroller: .vcnewconfigurations)
} else if (presentingViewController as? ViewControllerRestore) != nil {
dismissview(viewcontroller: self, vcontroller: .vcrestore)
} else if (presentingViewController as? ViewControllerSnapshots) != nil {
dismissview(viewcontroller: self, vcontroller: .vcsnapshot)
} else if (presentingViewController as? ViewControllerSsh) != nil {
dismissview(viewcontroller: self, vcontroller: .vcssh)
} else if (presentingViewController as? ViewControllerLoggData) != nil {
dismissview(viewcontroller: self, vcontroller: .vcloggdata)
}
}
}
extension ViewControllerEstimatingTasks {
func processtermination() {
let progress = Double(remoteinfotask?.maxCount() ?? 0) - Double(remoteinfotask?.inprogressCount() ?? 0)
updateProgressbar(progress)
}
}
extension ViewControllerEstimatingTasks: StartStopProgressIndicator {
func start() {
//
}
func stop() {
weak var openDelegate: OpenQuickBackup?
if (presentingViewController as? ViewControllerMain) != nil {
openDelegate = SharedReference.shared.getvcref(viewcontroller: .vctabmain) as? ViewControllerMain
} else if (presentingViewController as? ViewControllerRestore) != nil {
openDelegate = SharedReference.shared.getvcref(viewcontroller: .vcrestore) as? ViewControllerRestore
} else if (presentingViewController as? ViewControllerLoggData) != nil {
openDelegate = SharedReference.shared.getvcref(viewcontroller: .vcloggdata) as? ViewControllerLoggData
} else if (presentingViewController as? ViewControllerSnapshots) != nil {
openDelegate = SharedReference.shared.getvcref(viewcontroller: .vcsnapshot) as? ViewControllerSnapshots
}
closeview()
openDelegate?.openquickbackup()
}
}