forked from NobahdiAtoll/CRDataManager
-
Notifications
You must be signed in to change notification settings - Fork 1
/
runProcess.py
216 lines (194 loc) · 8.76 KB
/
runProcess.py
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
import System
import System.Drawing
import System.Windows.Forms
import dmClasses
from System.Drawing import *
from System.Windows.Forms import *
from dmClasses import *
class runProcess(Form):
def __init__(self, books, collection):
self.InitializeComponent()
self.Books = books
self.Collection = collection
pass
def InitializeComponent(self):
self._progressBar1 = System.Windows.Forms.ProgressBar()
self._btnCancel = System.Windows.Forms.Button()
self._bgwProcess = System.ComponentModel.BackgroundWorker()
self._label1 = System.Windows.Forms.Label()
self._label2 = System.Windows.Forms.Label()
self._textBox1 = System.Windows.Forms.TextBox()
self._splitContainer1 = System.Windows.Forms.SplitContainer()
self._splitContainer1.BeginInit()
self._splitContainer1.Panel1.SuspendLayout()
self._splitContainer1.Panel2.SuspendLayout()
self._splitContainer1.SuspendLayout()
self.SuspendLayout()
#
# progressBar1
#
self._progressBar1.Anchor = System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right
self._progressBar1.Location = System.Drawing.Point(4, 33)
self._progressBar1.Name = "progressBar1"
self._progressBar1.Size = System.Drawing.Size(515, 30)
self._progressBar1.TabIndex = 0
#
# btnCancel
#
self._btnCancel.Anchor = System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right
self._btnCancel.Location = System.Drawing.Point(414, 289)
self._btnCancel.Name = "btnCancel"
self._btnCancel.Size = System.Drawing.Size(105, 22)
self._btnCancel.TabIndex = 1
self._btnCancel.Text = "Cancel"
self._btnCancel.UseVisualStyleBackColor = True
self._btnCancel.Click += self.BtnCancelClick
#
# bgwProcess
#
self._bgwProcess.WorkerReportsProgress = True
self._bgwProcess.WorkerSupportsCancellation = True
self._bgwProcess.DoWork += self.BgwProcessDoWork
self._bgwProcess.ProgressChanged += self.BgwProcessProgressChanged
self._bgwProcess.RunWorkerCompleted += self.BgwProcessRunWorkerCompleted
#
# label1
#
self._label1.Location = System.Drawing.Point(4, 5)
self._label1.Name = "label1"
self._label1.Size = System.Drawing.Size(252, 23)
self._label1.TabIndex = 2
self._label1.Text = "Processing book 0 of 0"
self._label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
self._label1.UseMnemonic = False
#
# label2
#
self._label2.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right
self._label2.Location = System.Drawing.Point(264, 5)
self._label2.Name = "label2"
self._label2.Size = System.Drawing.Size(252, 23)
self._label2.TabIndex = 2
self._label2.Text = "Processing book 0 of 0"
self._label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight
self._label2.UseMnemonic = False
#
# textBox1
#
self._textBox1.BackColor = System.Drawing.SystemColors.Window
self._textBox1.Dock = System.Windows.Forms.DockStyle.Fill
self._textBox1.Location = System.Drawing.Point(0, 0)
self._textBox1.Multiline = True
self._textBox1.Name = "textBox1"
self._textBox1.ReadOnly = True
self._textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both
self._textBox1.Size = System.Drawing.Size(526, 211)
self._textBox1.TabIndex = 3
self._textBox1.WordWrap = False
#
# splitContainer1
#
self._splitContainer1.Dock = System.Windows.Forms.DockStyle.Top
self._splitContainer1.Location = System.Drawing.Point(0, 0)
self._splitContainer1.Name = "splitContainer1"
self._splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal
#
# splitContainer1.Panel1
#
self._splitContainer1.Panel1.Controls.Add(self._label2)
self._splitContainer1.Panel1.Controls.Add(self._progressBar1)
self._splitContainer1.Panel1.Controls.Add(self._label1)
#
# splitContainer1.Panel2
#
self._splitContainer1.Panel2.Controls.Add(self._textBox1)
self._splitContainer1.Size = System.Drawing.Size(526, 283)
self._splitContainer1.SplitterDistance = 68
self._splitContainer1.TabIndex = 4
#
# runProcess
#
self.ClientSize = System.Drawing.Size(526, 318)
self.Controls.Add(self._splitContainer1)
self.Controls.Add(self._btnCancel)
self.Name = "runProcess"
self.Text = "runProcess"
self.Shown += self.RunProcessShown
self._splitContainer1.Panel1.ResumeLayout(False)
self._splitContainer1.Panel2.ResumeLayout(False)
self._splitContainer1.Panel2.PerformLayout()
self._splitContainer1.EndInit()
self._splitContainer1.ResumeLayout(False)
self.ResumeLayout(False)
def BgwProcessDoWork(self, sender, e):
collection = e.Argument[0]
books = e.Argument[1]
count = 0
bookTouchCount = 0
fieldTouchCount = 0
userVariables = Dictionary[str,str]()
strReport = ''
if System.IO.File.Exists(dmGlobals.LOGFILE):
System.IO.File.Delete(dmGlobals.LOGFILE)
dtStart = System.DateTime.Now
dmGlobals.WriteStartTime()
while count < len(books):
tmpDic = dmGlobals.CreateBookDict(books[count])
if not self._bgwProcess.CancellationPending:
self._bgwProcess.ReportProgress((100 / len(books)) * count + 1, [count, books[count]])
if dmGlobals.TraceGeneralMessages: print 'Processing Ruleset Collection'
bookReport = collection.ProcessBook(books[count], self._bgwProcess)
if bookReport != '':
strReport = dmGlobals.AppendReport(strReport, bookReport)
bookTouchCount = bookTouchCount + 1
fieldTouchCount = fieldTouchCount + dmGlobals.GetTouchCount(books[count], tmpDic)
count = count + 1
#add touch count to log
strReport = strReport + System.Environment.NewLine + System.Environment.NewLine + bookTouchCount.ToString() + ' Books were modified. ' + fieldTouchCount.ToString() + ' Values were changed'
self._bgwProcess.ReportProgress(100, [count, strReport])
#write out report
if strReport!= '':
System.IO.File.WriteAllText(dmGlobals.LOGFILE, strReport)
dmGlobals.WriteEndTime()
duration = System.DateTime.Now - dtStart
strDuration = duration.ToString('hh\:mm\:ss\.ffff')
dmGlobals.WriteDurationtime(strDuration)
pass
def BgwProcessProgressChanged(self, sender, e):
progress = e.ProgressPercentage
self.SetProgress(progress, e.UserState)
pass
def SetProgress(self, progress, userState):
if self.InvokeRequired:
self.Invoke(self.SetProgress, [progress, userState])
return
self._progressBar1.Value = progress
if isinstance(userState, list):
if isinstance(userState[1], str):
self._textBox1.Text = userState[1]
else:
self._label2.Text = userState[1].CaptionWithoutTitle
count = userState[0]
booklen = len(self.Books)
booklen = booklen.ToString()
bookcount = count.ToString()
self._progressBar1.Value = progress
self._label1.Text = 'Processing ' + bookcount + ' of '+ booklen +' books'
pass
def BtnCancelClick(self,sender, e):
if self._bgwProcess.IsBusy:
self._bgwProcess.CancelAsync()
else:
self.Close()
def BgwProcessRunWorkerCompleted(self, sender, e):
self._btnCancel.Text = 'Close'
def RunProcessShown(self, sender, e):
if len(self.Books) > 0:
self._btnCancel.Text = 'Cancel'
if self._btnCancel.Click == None:
self._btnCancel.Click += self.BtnCancelClick
self._bgwProcess.RunWorkerAsync([self.Collection, self.Books])
else:
strMessage = 'The following issues need to be attended to\r\n before you can run Data Manager:'
strMessage = strMessage + '\r\n no books are selected'
MessageBox.Show(strMessage, 'Not Enough Info')