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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
|
# R overlay -- roverlay package, argutil
# -*- coding: utf-8 -*-
# Copyright (C) 2012 André Erdmann <dywi@mailerd.de>
# Distributed under the terms of the GNU General Public License;
# either version 2 of the License, or (at your option) any later version.
"""provides arg parsing for the roverlay main script"""
__all__ = [ 'parse_argv', ]
import os
import argparse
import pwd
import grp
import roverlay
def get_uid ( user ):
try:
return int ( user )
#pwd.getpwuid(^).pw_uid
except ValueError:
pass
return pwd.getpwnam ( user ).pw_uid
def get_gid ( group ):
try:
return int ( group )
#grp.getgrgid(^).gr_gid
except ValueError:
pass
return grp.getgrnam ( group ).gr_gid
def get_parser ( command_map, default_config_file, default_command='create' ):
"""Returns an arg parsers.
arguments:
* command_map -- a dict ( <command> => <command description> )
* default_config_file -- the default config file (for --config)
* default_command -- the default command
"""
def is_uid ( value ):
try:
return get_uid ( value )
except:
pass
raise argparse.ArgumentTypeError (
"no such user/uid: {}".format ( value )
)
def is_gid ( value ):
try:
return get_gid ( value )
except:
pass
raise argparse.ArgumentTypeError (
"no such group/gid: {}".format ( value )
)
def is_fs_file ( value ):
f = os.path.abspath ( value )
if not os.path.isfile ( f ):
raise argparse.ArgumentTypeError (
"{!r} is not a file.".format ( value )
)
return f
def couldbe_fs_file ( value ):
if value:
f = os.path.abspath ( value )
if not os.path.exists ( f ) or os.path.isfile ( f ):
return f
raise argparse.ArgumentTypeError (
"{!r} is not a file.".format ( value )
)
def couldbe_stdout_or_file ( value ):
return value if value == "-" else couldbe_fs_file ( value )
def is_fs_dir ( value ):
d = os.path.abspath ( value )
if not os.path.isdir ( d ):
raise argparse.ArgumentTypeError (
"{!r} is not a directory.".format ( value )
)
return d
def is_fs_file_or_dir ( value ):
f = os.path.abspath ( value )
if os.path.isdir ( f ) or os.path.isfile ( f ):
return f
else:
raise argparse.ArgumentTypeError (
"{!r} is neither a file nor a directory.".format ( value )
)
def couldbe_fs_dir ( value ):
d = os.path.abspath ( value )
if os.path.exists ( d ) and not os.path.isdir ( d ):
raise argparse.ArgumentTypeError (
"{!r} cannot be a directory.".format ( value )
)
return d
def is_fs_dir_or_void ( value ):
if value:
return is_fs_dir ( value )
else:
return ''
def is_fs_file_or_void ( value ):
if value:
return is_fs_file ( value )
else:
return ''
parser = argparse.ArgumentParser (
description='\n'.join ((
roverlay.description_str, roverlay.license_str,
)),
epilog = 'Known commands:\n' + '\n'.join (
(
# '* <space> <command> - <command description>'
'* {cmd} - {desc}'.format (
cmd = i [0].ljust ( 15 ),
desc = i [1]
) for i in command_map.items()
)
),
add_help=True,
formatter_class=argparse.RawDescriptionHelpFormatter,
)
incremental_mutex = parser.add_mutually_exclusive_group()
arg = parser.add_argument
opt_in = dict ( default=False, action='store_true' )
opt_out = dict ( default=True, action='store_false' )
fs_file = dict ( type=is_fs_file, metavar="<file>" )
# adding args starts here
arg (
'-V', '--version', action='version', version=roverlay.version
)
arg (
'commands',
default=default_command,
help="action to perform. choices are " + ', '.join (command_map.keys()) \
+ ". defaults to %(default)s.",
nargs="*",
choices=command_map.keys(),
metavar="command"
)
arg (
'-c', '--config',
default=default_config_file,
help="config file",
type=is_fs_file_or_void, metavar="<file>"
)
arg (
'-F', '--field-definition', '--fdef', default=argparse.SUPPRESS,
help="field definition file",
**fs_file
)
arg (
'-R', '--repo-config', default=argparse.SUPPRESS,
action='append',
help="repo config file.",
**fs_file
)
arg (
'-D', '--deprule-file', default=argparse.SUPPRESS,
action='append',
help="simple rule file. can be specified more than once.",
type=is_fs_file_or_dir,
metavar='<file|dir>',
)
arg (
'-P', '--package-rules', default=argparse.SUPPRESS,
action='append',
help="package rule file, can be specified more than once.",
type=is_fs_file_or_dir,
metavar='<file|dir>',
)
arg (
'--local-distdir', '--from', default=argparse.SUPPRESS,
action='append',
help='''
use packages from %(metavar)s for ebuild creation (ignore all repos).
only useful for testing 'cause SRC_URI will be invalid in the created
ebuilds.
''',
metavar="<DISTDIR>",
dest='distdirs',
type=is_fs_dir
)
arg (
'--distroot', default=argparse.SUPPRESS,
help='''
use %(metavar)s as distdir root for repos
that don't define their own package dir.
''',
metavar="<DISTROOT>",
type=couldbe_fs_dir
)
arg (
'--overlay', '-O', default=argparse.SUPPRESS,
help='overlay directory to write (implies --write)',
metavar="<OVERLAY>",
type=couldbe_fs_dir
)
arg (
'--additions-dir', '-A', # '--patch-dir', '--ebuild-dir',
default=argparse.SUPPRESS,
help="directory containing patches and hand-written ebuilds",
metavar="<dir>",
type=is_fs_dir_or_void
)
arg (
'--overlay-name', '-N', default=argparse.SUPPRESS,
help="overlay name",
metavar="<name>",
dest="overlay_name"
)
arg (
'--show-overlay', '--show',
help="print ebuilds and metadata to console",
dest="show_overlay",
default=False,
action="store_true",
)
arg (
'--no-show-overlay', '--no-show',
help="don't print ebuilds and metadata to console (default)",
dest="show_overlay",
action="store_false",
)
arg (
'--write-overlay', '--write',
help="write the overlay to filesystem",
dest="write_overlay",
default=True,
action="store_true",
)
arg (
'--no-write-overlay', '--no-write',
help="don't write the overlay",
dest="write_overlay",
action="store_false",
)
arg (
'--immediate-ebuild-writes',
help='write ebuilds as soon as they\'re ready, '
'which saves memory but costs more time',
dest='immediate_ebuild_writes',
default=False,
action='store_true',
)
incremental_mutex.add_argument (
'--fixup-category-move',
help='''
remove packages from the default category
if they exist in another one
''',
dest='fixup_category_move',
default=None,
action='store_true'
)
incremental_mutex.add_argument (
'--fixup-category-move-reverse',
help='''
remove packages from other categories if they exist in the
default one
''',
default=None,
dest='fixup_category_move_rev',
action='store_true'
)
arg (
'--distmap-verify', default=argparse.SUPPRESS,
help = 'check integrity of files in OVERLAY_DISTDIR_ROOT',
dest = 'distmap_verify',
action = 'store_true',
)
arg (
'--stats',
help="print some stats",
dest="stats",
default=True,
action="store_true",
)
arg (
'--no-stats',
help="don't print stats",
dest="stats",
action="store_false",
)
arg (
'--nosync', '--no-sync', default=argparse.SUPPRESS,
help="disable syncing with remotes (offline mode).",
action='store_true',
)
arg (
'--force-distroot',
help="always use <DISTROOT>/<repo name> as repo distdir.",
**opt_in
)
arg (
'--print-config', '--pc',
help="print config and exit",
**opt_in
)
arg (
'--print-package-rules', '--ppr',
help="print package rules after parsing them and exit",
**opt_in
)
arg (
'--list-config-entries', '--help-config',
help="list all known config entries",
**opt_in
)
# --write-desc
# --log-level, --log-console, --log...
arg (
'--no-manifest',
help="skip Manifest creation (results in useless overlay)",
**opt_in
)
arg (
'--manifest-implementation', '-M', default=argparse.SUPPRESS,
help="choose how Manifest files are written (ebuild(1) or portage libs)",
metavar="<impl>",
choices=frozenset (( 'ebuild', 'e', 'next', )),
)
# FIXME: description of --no-incremental is not correct,
# --no-incremental currently means that an existing overlay won't be
# scanned for ebuilds (which means that ebuilds will be recreated),
# but old ebuilds won't be explicitly removed
incremental_mutex.add_argument (
'--no-incremental',
help="start overlay creation from scratch (ignore an existing overlay)",
dest='incremental',
default=True,
action='store_false',
)
arg (
'--dump-file',
help='''
standard file or stdout target for dumping information
(defaults to '-'). Used by the 'apply_rules' action.
''',
dest="dump_file",
default="-",
metavar="<file>",
type=couldbe_stdout_or_file,
)
arg (
'--target-uid',
metavar="<uid>",
help="setupdirs command: uid of the user that will run roverlay",
default=os.getuid(),
type=is_uid,
)
arg (
'--target-gid',
metavar="<gid>",
help="setupdirs command: gid of the user that will run roverlay",
default=os.getgid(),
type=is_gid,
)
arg (
'--run-script', '-X', default=argparse.SUPPRESS,
metavar="<script>",
help="run a script in roverlay\'s environment and exit afterwards",
type=is_fs_file,
)
arg (
'--script-args', dest='run_script_args', default=argparse.SUPPRESS,
metavar="<args>",
help="args for --run-script",
)
# # TODO
# arg (
# '--debug',
# help='''
# Turn on debugging. This produces a lot of messages.
# (TODO: has no effect).
# ''',
# **opt_in
# )
return parser
# --- end of get_parser (...) ---
def parse_argv ( command_map, **kw ):
"""Parses sys.argv and returns the result as tuple
(<commands to run>, <config file>,
<dict for config>, <extra options as dict>).
All args/keywords are passed to get_parser().
Passes all exceptions.
"""
p = get_parser ( command_map=command_map, **kw ).parse_args()
def doconf ( value, path ):
pos = conf
if isinstance ( path, str ):
path = path.split ( '.' )
last = len ( path ) - 1
for i, k in enumerate ( path ):
if i == last:
pos [k.lower()] = value
else:
k = k.upper()
if not k in pos:
pos [k] = dict()
pos = pos [k]
# --- end of doconf (...) ---
def given ( attr_name ):
return hasattr ( p, attr_name )
# --- end of given (...) ---
def doconf_simple ( attr_name, config_path ) :
value = getattr ( p, attr_name, None )
if value is not None:
doconf ( value, config_path )
# --- end of doconf_simple (...) ---
commands = (
( p.commands, ) if isinstance ( p.commands, str ) else p.commands
)
conf = dict()
extra = dict (
# TODO: remove nosync entirely from extra
# nosync = p.nosync,
# debug = p.debug,
show_overlay = p.show_overlay,
write_overlay = p.write_overlay,
print_stats = p.stats,
print_config = p.print_config,
list_config = p.list_config_entries,
print_package_rules = p.print_package_rules,
force_distroot = p.force_distroot,
skip_manifest = p.no_manifest,
incremental = p.incremental,
immediate_ebuild_writes = p.immediate_ebuild_writes,
dump_file = p.dump_file,
fixup_category_move = p.fixup_category_move,
fixup_category_move_rev = p.fixup_category_move_rev,
target_uid = p.target_uid,
target_gid = p.target_gid,
)
if given ( 'run_script' ):
extra ['run_script'] = p.run_script
extra ['run_script_args'] = tuple (
getattr ( p, 'run_script_args', "" ).split ( None )
)
# or use shlex for splitting
if given ( 'overlay' ):
doconf ( p.overlay, 'OVERLAY.dir' )
#extra ['write_overlay'] = True
doconf_simple ( "additions_dir", "OVERLAY.additions_dir" )
if given ( 'overlay_name' ):
doconf ( p.overlay_name, 'OVERLAY.name' )
if given ( 'field_definition' ):
doconf ( p.field_definition, 'DESCRIPTION.field_definition_file' )
if given ( 'repo_config' ):
doconf ( p.repo_config, 'REPO.config_files' )
if given ( 'package_rules' ):
doconf ( p.package_rules, 'PACKAGE_RULES.files' )
if given ( 'distroot' ):
doconf ( p.distroot, 'distfiles.root' )
if given ( 'distdirs' ):
if given ( 'distroot' ):
raise Exception ( "--distdir and --distroot are mutually exclusive!" )
doconf ( (), 'REPO.config_files' )
extra ['distdirs'] = frozenset ( p.distdirs )
extra ['nosync'] = True
if 'create' in command_map:
commands.append ( "create" )
elif given ( 'nosync' ):
extra ['nosync'] = True
if extra.get ( 'nosync', False ):
doconf ( True, 'nosync' )
if given ( 'deprule_file' ):
doconf ( p.deprule_file, 'DEPRES.SIMPLE_RULES.files' )
if given ( 'manifest_implementation' ):
doconf ( p.manifest_implementation, 'OVERLAY.manifest_implementation' )
if given ( 'distmap_verify' ):
doconf ( p.distmap_verify, 'OVERLAY.DISTDIR.verify' )
if not extra.get ( 'write_overlay', True ):
doconf ( True, "write_disabled" )
return ( commands, p.config, conf, extra )
# --- end of parse_argv (...) ---
|