forked from easybuilders/easybuild-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocs.py
1569 lines (1257 loc) · 56.6 KB
/
docs.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
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
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# #
# Copyright 2009-2023 Ghent University
#
# This file is part of EasyBuild,
# originally created by the HPC team of Ghent University (http://ugent.be/hpc/en),
# with support of Ghent University (http://ugent.be/hpc),
# the Flemish Supercomputer Centre (VSC) (https://www.vscentrum.be),
# Flemish Research Foundation (FWO) (http://www.fwo.be/en)
# and the Department of Economy, Science and Innovation (EWI) (http://www.ewi-vlaanderen.be/en).
#
# https://github.com/easybuilders/easybuild
#
# EasyBuild is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation v2.
#
# EasyBuild is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with EasyBuild. If not, see <http://www.gnu.org/licenses/>.
# #
"""
Documentation-related functionality
Authors:
* Stijn De Weirdt (Ghent University)
* Dries Verdegem (Ghent University)
* Kenneth Hoste (Ghent University)
* Pieter De Baets (Ghent University)
* Jens Timmerman (Ghent University)
* Toon Willems (Ghent University)
* Ward Poelmans (Ghent University)
* Caroline De Brouwer (Ghent University)
"""
import copy
import inspect
import json
import os
from easybuild.tools import LooseVersion
from easybuild.base import fancylogger
from easybuild.framework.easyconfig.default import DEFAULT_CONFIG, HIDDEN, sorted_categories
from easybuild.framework.easyblock import EasyBlock
from easybuild.framework.easyconfig.constants import EASYCONFIG_CONSTANTS
from easybuild.framework.easyconfig.easyconfig import get_easyblock_class, process_easyconfig
from easybuild.framework.easyconfig.licenses import EASYCONFIG_LICENSES_DICT
from easybuild.framework.easyconfig.parser import EasyConfigParser
from easybuild.framework.easyconfig.templates import TEMPLATE_CONSTANTS, TEMPLATE_NAMES_CONFIG, TEMPLATE_NAMES_DYNAMIC
from easybuild.framework.easyconfig.templates import TEMPLATE_NAMES_EASYBLOCK_RUN_STEP, TEMPLATE_NAMES_EASYCONFIG
from easybuild.framework.easyconfig.templates import TEMPLATE_NAMES_LOWER, TEMPLATE_NAMES_LOWER_TEMPLATE
from easybuild.framework.easyconfig.templates import TEMPLATE_SOFTWARE_VERSIONS, template_constant_dict
from easybuild.framework.easyconfig.tools import avail_easyblocks
from easybuild.framework.easyconfig.tweak import find_matching_easyconfigs
from easybuild.framework.extension import Extension
from easybuild.tools.build_log import EasyBuildError, print_msg
from easybuild.tools.config import build_option
from easybuild.tools.filetools import read_file
from easybuild.tools.modules import modules_tool
from easybuild.tools.py2vs3 import OrderedDict, ascii_lowercase
from easybuild.tools.toolchain.toolchain import DUMMY_TOOLCHAIN_NAME, SYSTEM_TOOLCHAIN_NAME, is_system_toolchain
from easybuild.tools.toolchain.utilities import search_toolchain
from easybuild.tools.utilities import INDENT_2SPACES, INDENT_4SPACES
from easybuild.tools.utilities import import_available_modules, mk_md_table, mk_rst_table, nub, quote_str
_log = fancylogger.getLogger('tools.docs')
DETAILED = 'detailed'
SIMPLE = 'simple'
FORMAT_JSON = 'json'
FORMAT_MD = 'md'
FORMAT_RST = 'rst'
FORMAT_TXT = 'txt'
def generate_doc(name, params):
"""Generate documentation by calling function with specified name, using supplied parameters."""
func = globals()[name]
return func(*params)
def md_title_and_table(title, table_titles, table_values, title_level=1):
"""Generate table in section with title in MarkDown (.md) format."""
doc = []
if title is not None:
doc.extend([
'#' * title_level + ' ' + title,
'',
])
doc.extend(mk_md_table(table_titles, table_values))
return doc
def rst_title_and_table(title, table_titles, table_values):
"""Generate table in section with title in .rst format."""
doc = []
if title is not None:
doc.extend([
title,
'-' * len(title),
'',
])
doc.extend(mk_rst_table(table_titles, table_values))
return doc
def avail_cfgfile_constants(go_cfg_constants, output_format=FORMAT_TXT):
"""
Return overview of constants supported in configuration files.
"""
return generate_doc('avail_cfgfile_constants_%s' % output_format, [go_cfg_constants])
def avail_cfgfile_constants_json(go_cfg_constants):
"""Generate documentation on constants for configuration files in json format"""
raise NotImplementedError("JSON output format not supported for avail_cfgfile_constants_json")
def avail_cfgfile_constants_txt(go_cfg_constants):
"""Generate documentation on constants for configuration files in txt format"""
doc = [
"Constants available (only) in configuration files:",
"syntax: %(CONSTANT_NAME)s",
]
for section in go_cfg_constants:
doc.append('')
if section != go_cfg_constants['DEFAULT']:
section_title = "only in '%s' section:" % section
doc.append(section_title)
for cst_name, (cst_value, cst_help) in sorted(go_cfg_constants[section].items()):
doc.append("* %s: %s [value: %s]" % (cst_name, cst_help, cst_value))
return '\n'.join(doc)
def avail_cfgfile_constants_rst(go_cfg_constants):
"""Generate documentation on constants for configuration files in rst format"""
title = "Constants available (only) in configuration files"
doc = [title, '-' * len(title)]
for section in go_cfg_constants:
doc.append('')
if section != go_cfg_constants['DEFAULT']:
section_title = "Only in '%s' section:" % section
doc.extend([section_title, '-' * len(section_title), ''])
table_titles = ["Constant name", "Constant help", "Constant value"]
sorted_names = sorted(go_cfg_constants[section].keys())
table_values = [
['``' + x + '``' for x in sorted_names],
[go_cfg_constants[section][x][1] for x in sorted_names],
['``' + go_cfg_constants[section][x][0] + '``' for x in sorted_names],
]
doc.extend(mk_rst_table(table_titles, table_values))
return '\n'.join(doc)
def avail_cfgfile_constants_md(go_cfg_constants):
"""Generate documentation on constants for configuration files in MarkDown format"""
title = "Constants available (only) in configuration files"
doc = [
'# ' + title,
'',
]
for section in go_cfg_constants:
if section != go_cfg_constants['DEFAULT']:
doc.extend([
"## Only in '%s' section:" % section,
'',
])
table_titles = ["Constant name", "Constant help", "Constant value"]
sorted_names = sorted(go_cfg_constants[section].keys())
table_values = [
['``' + x + '``' for x in sorted_names],
[go_cfg_constants[section][x][1] for x in sorted_names],
['``' + go_cfg_constants[section][x][0] + '``' for x in sorted_names],
]
doc.extend(mk_md_table(table_titles, table_values))
return '\n'.join(doc)
def avail_easyconfig_constants(output_format=FORMAT_TXT):
"""Generate the easyconfig constant documentation"""
return generate_doc('avail_easyconfig_constants_%s' % output_format, [])
def avail_easyconfig_constants_json():
"""Generate easyconfig constant documentation in json format"""
raise NotImplementedError("JSON output format not supported for avail_easyconfig_constants_json")
def avail_easyconfig_constants_txt():
"""Generate easyconfig constant documentation in txt format"""
doc = ["Constants that can be used in easyconfigs"]
for cst, (val, descr) in sorted(EASYCONFIG_CONSTANTS.items()):
doc.append('%s%s: %s (%s)' % (INDENT_4SPACES, cst, val, descr))
return '\n'.join(doc)
def avail_easyconfig_constants_rst():
"""Generate easyconfig constant documentation in rst format"""
title = "Constants that can be used in easyconfigs"
table_titles = [
"Constant name",
"Constant value",
"Description",
]
sorted_keys = sorted(EASYCONFIG_CONSTANTS)
table_values = [
["``%s``" % key for key in sorted_keys],
["``%s``" % str(EASYCONFIG_CONSTANTS[key][0]) for key in sorted_keys],
[EASYCONFIG_CONSTANTS[key][1] for key in sorted_keys],
]
doc = rst_title_and_table(title, table_titles, table_values)
return '\n'.join(doc)
def avail_easyconfig_constants_md():
"""Generate easyconfig constant documentation in MarkDown format"""
title = "Constants that can be used in easyconfigs"
table_titles = [
"Constant name",
"Constant value",
"Description",
]
sorted_keys = sorted(EASYCONFIG_CONSTANTS)
table_values = [
["``%s``" % key for key in sorted_keys],
["``%s``" % str(EASYCONFIG_CONSTANTS[key][0]) for key in sorted_keys],
[EASYCONFIG_CONSTANTS[key][1] for key in sorted_keys],
]
doc = md_title_and_table(title, table_titles, table_values)
return '\n'.join(doc)
def avail_easyconfig_licenses(output_format=FORMAT_TXT):
"""Generate the easyconfig licenses documentation"""
return generate_doc('avail_easyconfig_licenses_%s' % output_format, [])
def avail_easyconfig_licenses_json():
"""Generate easyconfig license documentation in json format"""
raise NotImplementedError("JSON output format not supported for avail_easyconfig_licenses_json")
def avail_easyconfig_licenses_txt():
"""Generate easyconfig license documentation in txt format"""
doc = ["License constants that can be used in easyconfigs"]
for lic_name, lic in sorted(EASYCONFIG_LICENSES_DICT.items()):
lic_inst = lic()
strver = ''
if lic_inst.version:
strver = " (version: %s)" % '.'.join([str(d) for d in lic_inst.version])
doc.append("%s%s: %s%s" % (INDENT_4SPACES, lic_inst.name, lic_inst.description, strver))
return '\n'.join(doc)
def avail_easyconfig_licenses_rst():
"""Generate easyconfig license documentation in rst format"""
title = "License constants that can be used in easyconfigs"
table_titles = [
"License name",
"License description",
"Version",
]
lics = sorted(EASYCONFIG_LICENSES_DICT.items())
table_values = [
["``%s``" % lic().name for _, lic in lics],
["%s" % lic().description for _, lic in lics],
["``%s``" % lic().version for _, lic in lics],
]
doc = rst_title_and_table(title, table_titles, table_values)
return '\n'.join(doc)
def avail_easyconfig_licenses_md():
"""Generate easyconfig license documentation in MarkDown format"""
title = "License constants that can be used in easyconfigs"
table_titles = [
"License name",
"License description",
"Version",
]
lics = sorted(EASYCONFIG_LICENSES_DICT.items())
table_values = [
["``%s``" % lic().name for _, lic in lics],
["%s" % lic().description for _, lic in lics],
["``%s``" % lic().version for _, lic in lics],
]
doc = md_title_and_table(title, table_titles, table_values)
return '\n'.join(doc)
def avail_easyconfig_params_md(title, grouped_params):
"""
Compose overview of available easyconfig parameters, in MarkDown format.
"""
# main title
doc = [
'# ' + title,
'',
]
for grpname in grouped_params:
# group section title
title = "%s%s parameters" % (grpname[0].upper(), grpname[1:])
table_titles = ["**Parameter name**", "**Description**", "**Default value**"]
keys = sorted(grouped_params[grpname].keys())
values = [grouped_params[grpname][key] for key in keys]
table_values = [
['`%s`' % name for name in keys], # parameter name
[x[0].replace('<', '<').replace('>', '>') for x in values], # description
['`' + str(quote_str(x[1])) + '`' for x in values] # default value
]
doc.extend(md_title_and_table(title, table_titles, table_values, title_level=2))
doc.append('')
return '\n'.join(doc)
def avail_easyconfig_params_rst(title, grouped_params):
"""
Compose overview of available easyconfig parameters, in RST format.
"""
# main title
doc = [
title,
'=' * len(title),
'',
]
for grpname in grouped_params:
# group section title
title = "%s parameters" % grpname
table_titles = ["**Parameter name**", "**Description**", "**Default value**"]
keys = sorted(grouped_params[grpname].keys())
values = [grouped_params[grpname][key] for key in keys]
table_values = [
['``%s``' % name for name in keys], # parameter name
[x[0] for x in values], # description
[str(quote_str(x[1])) for x in values] # default value
]
doc.extend(rst_title_and_table(title, table_titles, table_values))
doc.append('')
return '\n'.join(doc)
def avail_easyconfig_params_json():
"""
Compose overview of available easyconfig parameters, in json format.
"""
raise NotImplementedError("JSON output format not supported for avail_easyconfig_params_json")
def avail_easyconfig_params_txt(title, grouped_params):
"""
Compose overview of available easyconfig parameters, in plain text format.
"""
# main title
doc = [
'%s:' % title,
'',
]
for grpname in grouped_params:
# group section title
doc.append(grpname.upper())
doc.append('-' * len(doc[-1]))
# determine width of 'name' column, to left-align descriptions
nw = max(map(len, grouped_params[grpname].keys()))
# line by parameter
for name, (descr, dflt) in sorted(grouped_params[grpname].items()):
doc.append("{0:<{nw}} {1:} [default: {2:}]".format(name, descr, str(quote_str(dflt)), nw=nw))
doc.append('')
return '\n'.join(doc)
def avail_easyconfig_params(easyblock, output_format=FORMAT_TXT):
"""
Compose overview of available easyconfig parameters, in specified format.
"""
params = copy.deepcopy(DEFAULT_CONFIG)
# include list of extra parameters (if any)
extra_params = {}
app = get_easyblock_class(easyblock, error_on_missing_easyblock=False)
if app is not None:
extra_params = app.extra_options()
params.update(extra_params)
# compose title
title = "Available easyconfig parameters"
if extra_params:
title += " (* indicates specific to the %s easyblock)" % app.__name__
# group parameters by category
grouped_params = OrderedDict()
for category in sorted_categories():
# exclude hidden parameters
if category[1].upper() in [HIDDEN]:
continue
grpname = category[1]
grouped_params[grpname] = {}
for name, (dflt, descr, cat) in sorted(params.items()):
if cat == category:
if name in extra_params:
# mark easyblock-specific parameters
name = '%s*' % name
grouped_params[grpname].update({name: (descr, dflt)})
if not grouped_params[grpname]:
del grouped_params[grpname]
# compose output, according to specified format (txt, rst, ...)
return generate_doc('avail_easyconfig_params_%s' % output_format, [title, grouped_params])
def avail_easyconfig_templates(output_format=FORMAT_TXT):
"""Generate the templating documentation"""
return generate_doc('avail_easyconfig_templates_%s' % output_format, [])
def avail_easyconfig_templates_json():
""" Returns template documentation in json text format """
raise NotImplementedError("JSON output format not supported for avail_easyconfig_templates")
def avail_easyconfig_templates_txt():
""" Returns template documentation in plain text format """
# This has to reflect the methods/steps used in easyconfig _generate_template_values
doc = []
# step 1: add TEMPLATE_NAMES_EASYCONFIG
doc.append('Template names/values derived from easyconfig instance')
for name in TEMPLATE_NAMES_EASYCONFIG:
doc.append("%s%%(%s)s: %s" % (INDENT_4SPACES, name[0], name[1]))
doc.append('')
# step 2: add SOFTWARE_VERSIONS
doc.append('Template names/values for (short) software versions')
for name, pref in TEMPLATE_SOFTWARE_VERSIONS:
doc.append("%s%%(%smajver)s: major version for %s" % (INDENT_4SPACES, pref, name))
doc.append("%s%%(%sshortver)s: short version for %s (<major>.<minor>)" % (INDENT_4SPACES, pref, name))
doc.append("%s%%(%sver)s: full version for %s" % (INDENT_4SPACES, pref, name))
doc.append('')
# step 3: add remaining config
doc.append('Template names/values as set in easyconfig')
for name in TEMPLATE_NAMES_CONFIG:
doc.append("%s%%(%s)s" % (INDENT_4SPACES, name))
doc.append('')
# step 4: make lower variants
doc.append('Lowercase values of template values')
for name in TEMPLATE_NAMES_LOWER:
template_name = TEMPLATE_NAMES_LOWER_TEMPLATE % {'name': name}
doc.append("%s%%(%s)s: lower case of value of %s" % (INDENT_4SPACES, template_name, name))
doc.append('')
# step 5: template_values can/should be updated from outside easyconfig
# (eg the run_step code in EasyBlock)
doc.append('Template values set outside EasyBlock runstep')
for name in TEMPLATE_NAMES_EASYBLOCK_RUN_STEP:
doc.append("%s%%(%s)s: %s" % (INDENT_4SPACES, name[0], name[1]))
doc.append('')
# some template values are only defined dynamically,
# see template_constant_dict function in easybuild.framework.easyconfigs.templates
doc.append('Template values which are defined dynamically')
for name in TEMPLATE_NAMES_DYNAMIC:
doc.append("%s%%(%s)s: %s" % (INDENT_4SPACES, name[0], name[1]))
doc.append('')
doc.append('Template constants that can be used in easyconfigs')
for cst in TEMPLATE_CONSTANTS:
doc.append('%s%s: %s (%s)' % (INDENT_4SPACES, cst[0], cst[2], cst[1]))
return '\n'.join(doc)
def avail_easyconfig_templates_rst():
""" Returns template documentation in rst format """
table_titles = ['Template name', 'Template value']
title = 'Template names/values derived from easyconfig instance'
table_values = [
['``%%(%s)s``' % name[0] for name in TEMPLATE_NAMES_EASYCONFIG],
[name[1] for name in TEMPLATE_NAMES_EASYCONFIG],
]
doc = rst_title_and_table(title, table_titles, table_values)
doc.append('')
title = 'Template names/values for (short) software versions'
ver = []
ver_desc = []
for name, pref in TEMPLATE_SOFTWARE_VERSIONS:
ver.append('``%%(%smajver)s``' % pref)
ver.append('``%%(%sshortver)s``' % pref)
ver.append('``%%(%sver)s``' % pref)
ver_desc.append('major version for %s' % name)
ver_desc.append('short version for %s (<major>.<minor>)' % name)
ver_desc.append('full version for %s' % name)
table_values = [ver, ver_desc]
doc.extend(rst_title_and_table(title, table_titles, table_values))
doc.append('')
title = 'Template names/values as set in easyconfig'
doc.extend([title, '-' * len(title), ''])
for name in TEMPLATE_NAMES_CONFIG:
doc.append('* ``%%(%s)s``' % name)
doc.append('')
title = 'Lowercase values of template values'
table_values = [
['``%%(%s)s``' % (TEMPLATE_NAMES_LOWER_TEMPLATE % {'name': name}) for name in TEMPLATE_NAMES_LOWER],
['lower case of value of %s' % name for name in TEMPLATE_NAMES_LOWER],
]
doc.extend(rst_title_and_table(title, table_titles, table_values))
title = 'Template values set outside EasyBlock runstep'
table_values = [
['``%%(%s)s``' % name[0] for name in TEMPLATE_NAMES_EASYBLOCK_RUN_STEP],
[name[1] for name in TEMPLATE_NAMES_EASYBLOCK_RUN_STEP],
]
doc.extend(rst_title_and_table(title, table_titles, table_values))
title = 'Template values which are defined dynamically'
table_values = [
['``%%(%s)s``' % name[0] for name in TEMPLATE_NAMES_DYNAMIC],
[name[1] for name in TEMPLATE_NAMES_DYNAMIC],
]
doc.extend(rst_title_and_table(title, table_titles, table_values))
title = 'Template constants that can be used in easyconfigs'
titles = ['Constant', 'Template value', 'Template name']
table_values = [
['``%s``' % cst[0] for cst in TEMPLATE_CONSTANTS],
[cst[2] for cst in TEMPLATE_CONSTANTS],
['``%s``' % cst[1] for cst in TEMPLATE_CONSTANTS],
]
doc.extend(rst_title_and_table(title, titles, table_values))
return '\n'.join(doc)
def avail_easyconfig_templates_md():
"""Returns template documentation in MarkDown format."""
table_titles = ['Template name', 'Template value']
title = 'Template names/values derived from easyconfig instance'
table_values = [
['``%%(%s)s``' % name[0] for name in TEMPLATE_NAMES_EASYCONFIG],
[name[1] for name in TEMPLATE_NAMES_EASYCONFIG],
]
doc = md_title_and_table(title, table_titles, table_values, title_level=2)
doc.append('')
title = 'Template names/values for (short) software versions'
ver = []
ver_desc = []
for name, pref in TEMPLATE_SOFTWARE_VERSIONS:
ver.append('``%%(%smajver)s``' % pref)
ver.append('``%%(%sshortver)s``' % pref)
ver.append('``%%(%sver)s``' % pref)
ver_desc.append('major version for %s' % name)
ver_desc.append('short version for %s (``<major>.<minor>``)' % name)
ver_desc.append('full version for %s' % name)
table_values = [ver, ver_desc]
doc.extend(md_title_and_table(title, table_titles, table_values, title_level=2))
doc.append('')
title = '## Template names/values as set in easyconfig'
doc.extend([title, ''])
for name in TEMPLATE_NAMES_CONFIG:
doc.append('* ``%%(%s)s``' % name)
doc.append('')
title = 'Lowercase values of template values'
table_values = [
['``%%(%s)s``' % (TEMPLATE_NAMES_LOWER_TEMPLATE % {'name': name}) for name in TEMPLATE_NAMES_LOWER],
['lower case of value of %s' % name for name in TEMPLATE_NAMES_LOWER],
]
doc.extend(md_title_and_table(title, table_titles, table_values, title_level=2))
doc.append('')
title = 'Template values set outside EasyBlock runstep'
table_values = [
['``%%(%s)s``' % name[0] for name in TEMPLATE_NAMES_EASYBLOCK_RUN_STEP],
[name[1] for name in TEMPLATE_NAMES_EASYBLOCK_RUN_STEP],
]
doc.extend(md_title_and_table(title, table_titles, table_values, title_level=2))
doc.append('')
title = 'Template values which are defined dynamically'
table_values = [
['``%%(%s)s``' % name[0] for name in TEMPLATE_NAMES_DYNAMIC],
[name[1] for name in TEMPLATE_NAMES_DYNAMIC],
]
doc.extend(md_title_and_table(title, table_titles, table_values, title_level=2))
doc.append('')
title = 'Template constants that can be used in easyconfigs'
titles = ['Constant', 'Template value', 'Template name']
table_values = [
['``%s``' % cst[0] for cst in TEMPLATE_CONSTANTS],
[cst[2] for cst in TEMPLATE_CONSTANTS],
['``%s``' % cst[1] for cst in TEMPLATE_CONSTANTS],
]
doc.extend(md_title_and_table(title, titles, table_values, title_level=2))
return '\n'.join(doc)
def avail_classes_tree(classes, class_names, locations, detailed, format_strings, depth=0):
"""Print list of classes as a tree."""
txt = []
for class_name in class_names:
class_info = classes[class_name]
if detailed:
mod = class_info['module']
loc = ''
if mod in locations:
loc = '@ %s' % locations[mod]['loc']
txt.append(format_strings['zero_indent'] + format_strings['indent'] * depth +
format_strings['sep'] + "%s (%s %s)" % (class_name, mod, loc))
else:
txt.append(format_strings['zero_indent'] + format_strings['indent'] * depth +
format_strings['sep'] + class_name)
if 'children' in class_info:
if len(class_info['children']) > 0:
if format_strings.get('newline') is not None:
txt.append(format_strings['newline'])
txt.extend(avail_classes_tree(classes, class_info['children'], locations, detailed,
format_strings, depth + 1))
if format_strings.get('newline') is not None:
txt.append(format_strings['newline'])
return txt
def list_easyblocks(list_easyblocks=SIMPLE, output_format=FORMAT_TXT):
if output_format == FORMAT_JSON:
raise NotImplementedError("JSON output format not supported for list_easyblocks")
format_strings = {
FORMAT_MD: {
'det_root_templ': "- **%s** (%s%s)",
'root_templ': "- **%s**",
'zero_indent': INDENT_2SPACES,
'indent': INDENT_2SPACES,
'sep': '- ',
},
FORMAT_RST: {
'det_root_templ': "* **%s** (%s%s)",
'root_templ': "* **%s**",
'zero_indent': INDENT_2SPACES,
'indent': INDENT_2SPACES,
'newline': '',
'sep': '* ',
},
FORMAT_TXT: {
'det_root_templ': "%s (%s%s)",
'root_templ': "%s",
'zero_indent': '',
'indent': "| ",
'sep': "|-- ",
},
}
return gen_list_easyblocks(list_easyblocks, format_strings[output_format])
def gen_list_easyblocks(list_easyblocks, format_strings):
"""Get a class tree for easyblocks."""
detailed = list_easyblocks == DETAILED
locations = avail_easyblocks()
def add_class(classes, cls):
"""Add a new class, and all of its subclasses."""
children = cls.__subclasses__()
classes.update({cls.__name__: {
'module': cls.__module__,
'children': sorted([c.__name__ for c in children], key=lambda x: x.lower())
}})
for child in children:
add_class(classes, child)
roots = [EasyBlock, Extension]
classes = {}
for root in roots:
add_class(classes, root)
# Print the tree, start with the roots
txt = []
for root in roots:
root = root.__name__
if detailed:
mod = classes[root]['module']
loc = ''
if mod in locations:
loc = ' @ %s' % locations[mod]['loc']
txt.append(format_strings['det_root_templ'] % (root, mod, loc))
else:
txt.append(format_strings['root_templ'] % root)
if format_strings.get('newline') is not None:
txt.append(format_strings['newline'])
if 'children' in classes[root]:
txt.extend(avail_classes_tree(classes, classes[root]['children'], locations, detailed, format_strings))
if format_strings.get('newline') is not None:
txt.append(format_strings['newline'])
return '\n'.join(txt)
def list_software(output_format=FORMAT_TXT, detailed=False, only_installed=False):
"""
Show list of supported software
:param output_format: output format to use
:param detailed: whether or not to return detailed information (incl. version, versionsuffix, toolchain info)
:param only_installed: only retain software for which a corresponding module is available
:return: multi-line string presenting requested info
"""
silent = build_option('silent')
ec_paths = find_matching_easyconfigs('*', '*', build_option('robot_path') or [])
ecs = []
cnt = len(ec_paths)
for idx, ec_path in enumerate(ec_paths):
# full EasyConfig instance is only required when module name is needed
# this is significantly slower (5-10x) than a 'shallow' parse via EasyConfigParser
if only_installed:
ec = process_easyconfig(ec_path, validate=False, parse_only=True)[0]['ec']
else:
ec = EasyConfigParser(filename=ec_path).get_config_dict()
ecs.append(ec)
print_msg('\r', prefix=False, newline=False, silent=silent)
print_msg("Processed %d/%d easyconfigs..." % (idx + 1, cnt), newline=False, silent=silent)
print_msg('', prefix=False, silent=silent)
software = {}
for ec in ecs:
software.setdefault(ec['name'], [])
if is_system_toolchain(ec['toolchain']['name']):
toolchain = SYSTEM_TOOLCHAIN_NAME
else:
toolchain = '%s/%s' % (ec['toolchain']['name'], ec['toolchain']['version'])
keys = ['description', 'homepage', 'version', 'versionsuffix']
info = {'toolchain': toolchain}
for key in keys:
info[key] = ec.get(key, '')
# make sure values like homepage & versionsuffix get properly templated
if isinstance(ec, dict):
template_values = template_constant_dict(ec)
for key in keys:
if '%(' in info[key]:
try:
info[key] = info[key] % template_values
except (KeyError, TypeError, ValueError) as err:
_log.debug("Ignoring failure to resolve templates: %s", err)
software[ec['name']].append(info)
if only_installed:
software[ec['name']][-1].update({'mod_name': ec.full_mod_name})
print_msg("Found %d different software packages" % len(software), silent=silent)
if only_installed:
avail_mod_names = modules_tool().available()
# rebuild software, only retain entries with a corresponding available module
software, all_software = {}, software
for key in all_software:
for entry in all_software[key]:
if entry['mod_name'] in avail_mod_names:
software.setdefault(key, []).append(entry)
print_msg("Retained %d installed software packages" % len(software), silent=silent)
return generate_doc('list_software_%s' % output_format, [software, detailed])
def list_software_md(software, detailed=True):
"""
Return overview of supported software in MarkDown format
:param software: software information (structured like list_software does)
:param detailed: whether or not to return detailed information (incl. version, versionsuffix, toolchain info)
:return: multi-line string presenting requested info
"""
lines = [
"# List of supported software",
'',
"EasyBuild supports %d different software packages (incl. toolchains, bundles):" % len(software),
'',
]
# links to per-letter tables
key_letters = nub(sorted(k[0].lower() for k in software.keys()))
letter_links = ' - '.join(['[' + x + '](#' + x + ')' for x in ascii_lowercase if x in key_letters])
lines.extend([letter_links, ''])
letter = None
sorted_keys = sorted(software.keys(), key=lambda x: x.lower())
for key in sorted_keys:
# start a new subsection for each letter
if key[0].lower() != letter:
# subsection for new letter
letter = key[0].lower()
lines.extend([
'',
"## %s" % letter.upper(),
'',
])
if detailed:
# quick links per software package
lines.extend([
'',
' - '.join('[%s](#%s)' % (k, k.lower()) for k in sorted_keys if k[0].lower() == letter),
'',
])
# append software to list, including version(suffix) & toolchain info if detailed info is requested
if detailed:
table_titles = ['version', 'toolchain']
table_values = [[], []]
# first determine unique pairs of version/versionsuffix
# we can't use LooseVersion yet here, since nub uses set and LooseVersion instances are not hashable
pairs = nub((x['version'], x['versionsuffix']) for x in software[key])
# check whether any non-empty versionsuffixes are in play
with_vsuff = any(vs for (_, vs) in pairs)
if with_vsuff:
table_titles.insert(1, 'versionsuffix')
table_values.insert(1, [])
# sort pairs by version (and then by versionsuffix);
# we sort by LooseVersion to obtain chronological version ordering,
# but we also need to retain original string version for filtering-by-version done below
sorted_pairs = sorted((LooseVersion(v), vs, v) for v, vs in pairs)
for _, vsuff, ver in sorted_pairs:
table_values[0].append('``%s``' % ver)
if with_vsuff:
if vsuff:
table_values[1].append('``%s``' % vsuff)
else:
table_values[1].append('')
tcs = [x['toolchain'] for x in software[key] if x['version'] == ver and x['versionsuffix'] == vsuff]
table_values[-1].append(', '.join('``%s``' % tc for tc in sorted(nub(tcs))))
lines.extend([
'',
'### %s' % key,
'',
' '.join(software[key][-1]['description'].split('\n')).lstrip(' '),
'',
"*homepage*: <%s>" % software[key][-1]['homepage'],
'',
] + md_title_and_table(None, table_titles, table_values))
else:
lines.append("* %s" % key)
return '\n'.join(lines)
def list_software_rst(software, detailed=False):
"""
Return overview of supported software in RST format
:param software: software information (structured like list_software does)
:param detailed: whether or not to return detailed information (incl. version, versionsuffix, toolchain info)
:return: multi-line string presenting requested info
"""
title = "List of supported software"
lines = [
title,
'=' * len(title),
'',
"EasyBuild |version| supports %d different software packages (incl. toolchains, bundles):" % len(software),
'',
]
# links to per-letter tables
letter_refs = ''
key_letters = nub(sorted(k[0].lower() for k in software.keys()))
for letter in ascii_lowercase:
if letter in key_letters:
if letter_refs:
letter_refs += " - :ref:`list_software_letter_%s`" % letter
else:
letter_refs = ":ref:`list_software_letter_%s`" % letter
lines.extend([letter_refs, ''])
def key_to_ref(name):
"""Create a reference label for the specified software name."""
return 'list_software_%s_%d' % (name, sum(ord(letter) for letter in name))
letter = None
sorted_keys = sorted(software.keys(), key=lambda x: x.lower())
for key in sorted_keys:
# start a new subsection for each letter
if key[0].lower() != letter:
# subsection for new letter
letter = key[0].lower()
lines.extend([
'',
'.. _list_software_letter_%s:' % letter,
'',
"*%s*" % letter.upper(),
'-' * 3,
'',
])
if detailed:
# quick links per software package
lines.extend([
'',
' - '.join(':ref:`%s`' % key_to_ref(k) for k in sorted_keys if k[0].lower() == letter),
'',
])
# append software to list, including version(suffix) & toolchain info if detailed info is requested
if detailed:
table_titles = ['version', 'toolchain']
table_values = [[], []]
# first determine unique pairs of version/versionsuffix
# we can't use LooseVersion yet here, since nub uses set and LooseVersion instances are not hashable
pairs = nub((x['version'], x['versionsuffix']) for x in software[key])
# check whether any non-empty versionsuffixes are in play
with_vsuff = any(vs for (_, vs) in pairs)
if with_vsuff:
table_titles.insert(1, 'versionsuffix')
table_values.insert(1, [])
# sort pairs by version (and then by versionsuffix);
# we sort by LooseVersion to obtain chronological version ordering,
# but we also need to retain original string version for filtering-by-version done below
sorted_pairs = sorted((LooseVersion(v), vs, v) for v, vs in pairs)
for _, vsuff, ver in sorted_pairs:
table_values[0].append('``%s``' % ver)
if with_vsuff:
if vsuff:
table_values[1].append('``%s``' % vsuff)
else:
table_values[1].append('')
tcs = [x['toolchain'] for x in software[key] if x['version'] == ver and x['versionsuffix'] == vsuff]
table_values[-1].append(', '.join('``%s``' % tc for tc in sorted(nub(tcs))))
lines.extend([
'',
'.. _%s:' % key_to_ref(key),
'',