-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.py
412 lines (359 loc) · 13.9 KB
/
configuration.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
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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
import os
import constants
import json
import pathlib
from argparse import Namespace
# TODO add a parameter to skip files that already exist
class Configuration:
#region private properties ################################################
__configuration: any
__verbose: bool
__outputDir: pathlib.Path
__force: bool
__generateLilypond: bool
__generateMusescore: bool
__process: bool
__purge: bool
__regenerate: bool
__standardPitch: int
#endregion ################################################################
#region getters ###########################################################
@property
def generateLilypond(self) -> bool:
return self.__generateLilypond
# end get lilypond
@property
def lilypondExecutable(self) -> str:
result = None
if ('lilypond' in self.__configuration):
result = self.__configuration['lilypond']
# end if
return result
# end get lilypondExecutable
@property
def generateMusescore(self) -> bool:
return self.__generateMusescore
# end get musescore
@property
def musescoreExecutable(self) -> str:
result = None
if ('musescore' in self.__configuration):
result = self.__configuration['musescore']
# end if
return result
# end get musescoreExecutable
@property
def verbose(self) -> bool:
return self.__verbose
# end get verbose
@property
def rootOutput(self) -> str:
return self.__outputDir.absolute()
# end get outputDir
@property
def lilypondNotesDirectory(self) -> str:
return '{0}/{1}/{2}'.format(
self.rootOutput,
self.__lilypondSubdirectory,
self.__notesSubdirectory
)
# end get lilypondNoten
@property
def lilypondScalesDirectory(self) -> str:
return '{0}/{1}/{2}'.format(
self.rootOutput,
self.__lilypondSubdirectory,
self.__scalesSubdirectory
)
# end get lilypondTonleiter
@property
def lilypondIntervalsDirectory(self) -> str:
return '{0}/{1}/{2}'.format(
self.rootOutput,
self.__lilypondSubdirectory,
self.__intervalsSubdirectory
)
# end get lilypondIntervalle
@property
def musescoreNotesDirectory(self) -> str:
return '{0}/{1}/{2}'.format(
self.rootOutput,
self.__musescoreSubdirectory,
self.__notesSubdirectory
)
# end get musescoreNoten
@property
def musescoreScalesDirectory(self) -> str:
return '{0}/{1}/{2}'.format(
self.rootOutput,
self.__musescoreSubdirectory,
self.__scalesSubdirectory
)
# end get musescoreTonleiter
@property
def musescoreIntervalsDirectory(self) -> str:
return '{0}/{1}/{2}'.format(
self.rootOutput,
self.__musescoreSubdirectory,
self.__intervalsSubdirectory)
# end get musescoreIntervalle
@property
def standardPitch(self) -> int:
return self.__standardPitch
# end get standardPitch
@property
def process(self) -> bool:
return self.__process
# end get
@property
def lilypondTemplate(self) -> str:
result: str = 'template.ly'
if ('templates' in self.__configuration):
if ('lilypond' in self.__configuration['templates']):
result = self.__configuration['templates']['lilypond']
# end if
# end if
return result
# end get lilypondTemplate(self)
@property
def musescoreTemplate(self) -> str:
result: str = 'template.mscx'
if ('templates' in self.__configuration):
if ('musescore' in self.__configuration['templates']):
result = self.__configuration['templates']['musescore']
# end if
# end if
return result
# end get lilypondTemplate(self)
@property
def regenerate(self) -> str:
return self.__regenerate
# end get regenerate
#endregion ################################################################
# region private getters
@property
def __outputRoot(self) -> str:
result = 'out'
if ('output' in self.__configuration):
if ('root' in self.__configuration['output']):
result = self.__configuration['output']['root']
return result
# end get __outputRoot
@property
def __lilypondSubdirectory(self) -> str:
result = 'lilypond'
if ('output' in self.__configuration):
if ('lilypond' in self.__configuration['output']):
result = self.__configuration['output']['lilypond']
return result
# end get __lilypondDir
@property
def __musescoreSubdirectory(self) -> str:
result = 'musescore'
if ('output' in self.__configuration):
if ('musescore' in self.__configuration['output']):
result = self.__configuration['output']['musescore']
return result
# end get __lilypondDir
@property
def __notesSubdirectory(self) -> str:
result = 'notes'
if ('output' in self.__configuration):
if ('notes' in self.__configuration['output']):
result = self.__configuration['output']['notes']
return result
# end get __lilypondDir
@property
def __scalesSubdirectory(self) -> str:
result = 'scales'
if ('output' in self.__configuration):
if ('scales' in self.__configuration['output']):
result = self.__configuration['output']['scales']
return result
# end get __lilypondDir
@property
def __intervalsSubdirectory(self) -> str:
result = 'intervals'
if ('output' in self.__configuration):
if ('scales' in self.__configuration['output']):
result = self.__configuration['output']['intervals']
return result
# end get __lilypondDir
#endregion ################################################################
#region public methods ####################################################
def initialize(self, parsedArguments: Namespace) -> bool:
self.__configuration = json.load(parsedArguments.config)
return self.__setCommandLineToConfig(parsedArguments)
# endregion
#region constructor #######################################################
def __init__(self) -> None:
self.__purge = False
self.__regenerate = False
self.__standardPitch = None
# end constructor
#endregion ################################################################
#region private methods ###################################################
def __setCommandLineToConfig(self, parsedArguments: Namespace) -> bool:
result = True
for name, value in parsedArguments._get_kwargs():
if (name == constants.argumentVerbose):
self.__verbose = value
elif (name == constants.argumentTarget):
self.__generateLilypond = (value == constants.argumentTargetLilypond) or (
value == constants.argumentTargetAll)
self.__generateMusescore = (value == constants.argumentTargetMusescore) or (
value == constants.argumentTargetAll)
elif (name == constants.argumentOutputDir):
self.__outputDir = value
elif (name == constants.argumentForce):
self.__force = value
elif (name == constants.argumentToItem(constants.argumentGenerateOnly)):
self.__process = not value
elif (name == constants.argumentToItem(constants.argumentStandardPitch)):
self.__standardPitch = value
elif (name == constants.argumentRegenerate):
self.__regenerate = value
elif (name == constants.argumentPurge):
self.__purge = value
# end for
if (self.__outputDir is None):
if (self.verbose == True):
print('No output dir on CLI, using value from configuration file')
# end if
self.__outputDir = pathlib.Path(self.__outputRoot)
# end if
if (self.__standardPitch is None):
if ('standardPitch' in self.__configuration):
self.__standardPitch = self.__configuration['standardPitch']
else:
self.__standardPitch = 443
# end if
if (self.verbose == True):
print('Verbose : {0}'.format(self.verbose))
print('Generate lilypond files : {0}'.format(
self.generateLilypond))
print('Generate musescore files: {0}'.format(
self.generateMusescore))
print('Outputdir : {0}'.format(
self.__outputDir.name))
print('Process generated files : {0}'.format(self.process))
print('Purge : {0}'.format(
self.__purge))
print('Lilypond executable : {0}'.format(
self.lilypondExecutable))
print('Lilypond template : {0}'.format(
self.lilypondTemplate))
print('Musescore executable : {0}'.format(
self.musescoreExecutable))
print('Musescore template : {0}'.format(
self.musescoreTemplate))
print('Standard pitch : {0} Hz'.format(
self.standardPitch))
# end if verbose
if (self.process == True):
if (self.verbose == True):
print('Checking executables')
if (self.generateLilypond == True and self.process == True):
if (self.lilypondExecutable is None):
print('lilypond executable is not set')
result = False
elif (not pathlib.Path(self.lilypondExecutable).exists()):
print('Lilypond executable {0} not found'.format(
self.lilypondExecutable))
result = False
# end if
# end if
if (self.generateMusescore == True and self.process == True):
if (self.musescoreExecutable is None):
print('Musescore executable is not set')
result = False
elif (not pathlib.Path(self.musescoreExecutable).exists()):
print('Musescore executable {0} not found'.format(
self.musescoreExecutable))
result = False
# end if
# end if
# end if
if (self.verbose == True):
print('Validating output directory')
# end if
if (not self.__outputDir.exists()):
if (not self.__force):
print(
'Directory {0} does not exist. Please use the --force flag to create it.'.format(self.__outputDir.name))
result = False
elif (result == True):
os.makedirs(self.__outputDir.absolute())
if (self.verbose == True):
print('Created directory {0}'.format(
self.__outputDir.absolute()))
result = True
# end if-else
elif (not self.__outputDir.is_dir()):
print('{0} is not a directory.'.format(self.__outputDir.name))
result = False
# end if-elif
if (self.verbose):
print('Checking template files')
if (self.generateLilypond == True and not os.path.exists(self.lilypondTemplate)):
print('Lilypond template file \'{0}\' does not exist'.format(
self.lilypondTemplate))
result = False
# end if
if (self.generateMusescore == True and not os.path.exists(self.musescoreTemplate)):
print('Musescore template file \'{0}\' does not exist'.format(
self.musescoreTemplate))
result = False
# end if
if (self.__purge == True):
if (self.generateLilypond):
self.__rmdir('{0}/{1}'.format(
self.rootOutput,
self.__lilypondSubdirectory))
# end if
if (self.generateMusescore):
self.__rmdir('{0}/{1}'.format(
self.rootOutput,
self.__musescoreSubdirectory))
# end if
# end if
if (self.verbose == True):
print('Creating subdirectories')
# end if
if (self.generateLilypond):
self.__createSubdirectories(
[self.lilypondIntervalsDirectory, self.lilypondNotesDirectory, self.lilypondScalesDirectory])
# end if
if (self.generateMusescore):
self.__createSubdirectories(
[self.musescoreIntervalsDirectory, self.musescoreNotesDirectory, self.musescoreScalesDirectory])
# end if
return result
# end __setCommandLineToConfig
def __createSubdirectories(self, dirs: list) -> None:
for dir in dirs:
if (pathlib.Path(dir).exists()):
if (self.verbose):
print('Subdirectory {0} already exists'.format(dir))
# end if
else:
if (self.verbose):
print('Creating subdirectory {0}'.format(dir))
# end if
os.makedirs(dir)
# end if
# end for
# end __createSubdirectories
def __rmdir(self, directory) -> None:
directory = pathlib.Path(directory)
if (directory.exists()):
for item in directory.iterdir():
if item.is_dir():
self.__rmdir(item)
else:
item.unlink()
# end for
directory.rmdir()
#end if
# end __rmdir
# end class