restage 0.5.0__py3-none-any.whl → 0.6.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
restage/cache.py CHANGED
@@ -107,24 +107,20 @@ def directory_under_module_data_path(sub: str, prefix=None, suffix=None, name=No
107
107
 
108
108
  def _compile_instr(entry: InstrEntry, instr: Instr, config: dict | None = None,
109
109
  mpi: bool = False, acc: bool = False,
110
- target=None, generator=None):
111
- from mccode_antlr import __version__
110
+ target=None, flavor=None):
111
+ from mccode_antlr import __version__, Flavor
112
112
  from mccode_antlr.compiler.c import compile_instrument, CBinaryTarget
113
113
  if config is None:
114
114
  config = dict(default_main=True, enable_trace=False, portable=False, include_runtime=True,
115
115
  embed_instrument_file=False, verbose=False)
116
116
  if target is None:
117
117
  target = CBinaryTarget(mpi=mpi or False, acc=acc or False, count=1, nexus=False)
118
- if generator is None:
119
- from mccode_antlr.translators.target import MCSTAS_GENERATOR
120
- generator = MCSTAS_GENERATOR
118
+ if flavor is None:
119
+ flavor = Flavor.MCSTAS
121
120
 
122
121
  output = directory_under_module_data_path('bin')
123
- # TODO consider adding `dump_source=True` _and_ putting the resulting file into
124
- # the cache in order to make debugging future problems a tiny bit easier.
125
- # FIXME a future mccode-antlr will support setting 'source_file={file_path}'
126
- # to allow exactly this.
127
- binary_path = compile_instrument(instr, target, output, generator=generator, config=config, dump_source=True)
122
+ source_file = output.joinpath(instr.name).with_suffix('.c')
123
+ binary_path = compile_instrument(instr, target, output, flavor=flavor, config=config, source_file=source_file)
128
124
  entry.mccode_version = __version__
129
125
  entry.binary_path = str(binary_path)
130
126
  return entry
restage/mcpl.py CHANGED
@@ -4,20 +4,26 @@ from pathlib import Path
4
4
  def mcpl_real_filename(filename: Path) -> Path:
5
5
  """MCPL_output from McCode instruments has the bad habit of changing the output file name silently.
6
6
  Find the _real_ output file name by looking for the expected variants"""
7
- if filename.exists() and filename.is_file():
8
- return filename
9
- if filename.with_suffix('.mcpl').exists() and filename.with_suffix('.mcpl').is_file():
10
- return filename.with_suffix('.mcpl')
11
- if filename.with_suffix('.mcpl.gz').exists() and filename.with_suffix('.mcpl.gz').is_file():
12
- return filename.with_suffix('.mcpl.gz')
7
+ base, ext = filename.parent / filename.stem, filename.suffix
8
+ if ext in ('.gz',):
9
+ ext = base.suffix + ext
10
+ base = base.parent / base.stem
11
+ extensions = {'.mcpl.gz', '.mcpl', ''}
12
+ if ext not in extensions:
13
+ ValueError(f'Unsupported file extension: {ext}')
14
+ for ext in extensions:
15
+ check = base.with_suffix(ext)
16
+ if check.exists() and check.is_file():
17
+ return check
18
+ print(f'{base} -> {check} not found')
13
19
  raise FileNotFoundError(f'Could not find MCPL file {filename}')
14
20
 
15
21
 
16
- # def mcpl_particle_count(filename):
17
- # from mcpl import MCPLFile
18
- # with MCPLFile(mcpl_real_filename(filename)) as f:
19
- # n = f.nparticles
20
- # return n
22
+ def mcpl_real_extension(filename: Path) -> str:
23
+ for ext in ('.mcpl.gz', '.mcpl'):
24
+ if str(filename).endswith(ext):
25
+ return ext
26
+ return ''
21
27
 
22
28
 
23
29
  def mcpl_particle_count(filename):
@@ -52,11 +58,7 @@ def mcpl_merge_files(files: list[Path], filepath: Path, keep_originals: bool = F
52
58
  from subprocess import run
53
59
  real_filenames = [mcpl_real_filename(f) for f in files]
54
60
  # if the real filenames have .mcpl or .mcpl.gz, the merged filename should too
55
- ext = ''
56
- if real_filenames[0].name.endswith('.mcpl.gz'):
57
- ext = '.mcpl.gz'
58
- elif real_filenames[0].name.endswith('.mcpl'):
59
- ext = '.mcpl'
61
+ ext = mcpl_real_extension(real_filenames[0])
60
62
  filename = filepath.with_suffix(ext).as_posix()
61
63
 
62
64
  command = ['mcpltool', '--merge', filename] + [str(f) for f in real_filenames]
@@ -69,13 +71,8 @@ def mcpl_merge_files(files: list[Path], filepath: Path, keep_originals: bool = F
69
71
 
70
72
 
71
73
  def mcpl_rename_file(source: Path, dest: Path, strict: bool = False):
72
- filepath = mcpl_real_filename(source)
73
- filename = filepath.name # this could be '{name}', '{name}.mcpl', or '{name}.mcpl.gz'
74
- ext = ''
75
- if filepath.name.endswith('.mcpl.gz'):
76
- ext = '.mcpl.gz'
77
- elif filepath.name.endswith('.mcpl'):
78
- ext = '.mcpl'
74
+ filepath = mcpl_real_filename(source) # this could be '{name}', '{name}.mcpl', or '{name}.mcpl.gz'
75
+ ext = mcpl_real_extension(filepath)
79
76
 
80
77
  if not dest.name.endswith(ext):
81
78
  if strict:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: restage
3
- Version: 0.5.0
3
+ Version: 0.6.0
4
4
  Author-email: Gregory Tucker <gregory.tucker@ess.eu>
5
5
  License: BSD-3-Clause
6
6
  Classifier: License :: OSI Approved :: BSD License
@@ -17,7 +17,7 @@ Requires-Dist: zenlog>=1.1
17
17
  Requires-Dist: platformdirs>=3.11
18
18
  Requires-Dist: confuse
19
19
  Requires-Dist: psutil>=5.9.6
20
- Requires-Dist: mccode-antlr[hdf5]>=0.10.2
20
+ Requires-Dist: mccode-antlr[hdf5]>=0.13.0
21
21
  Provides-Extra: test
22
22
  Requires-Dist: pytest; extra == "test"
23
23
  Requires-Dist: chopcal; extra == "test"
@@ -1,12 +1,12 @@
1
1
  restage/__init__.py,sha256=HlqvPpL7DKet00NAFyqJBNg9UFO7o05Gt2tFyKBQcsY,744
2
2
  restage/bifrost_choppers.py,sha256=xQu21g2NcTLPpZ0ZWOuvN20zh07EWoO4QVoTnoORwZI,6443
3
- restage/cache.py,sha256=PD07z9pxGwBcxoizgy11zoQBjViF1ZSzKS0686RZ3FI,8115
3
+ restage/cache.py,sha256=Xep5j7jzq_qppp1i-KNSxZLpvyeZdDJkTMnB_PEE1gM,7824
4
4
  restage/cspec_choppers.py,sha256=ZWxyCcwYn4z9ZNqj_r6RC9ImbhVjYc1fmv-Ijm8A2Yk,206
5
5
  restage/database.py,sha256=anyOby31fUN7rGAVNsnWDUhAISV0vQ7en8aQwVS5ZwA,11051
6
6
  restage/emulate.py,sha256=VrhfZJIbECdbDS-MHklqRuAIy9cRkjZkwPBTKQSQoe0,6164
7
7
  restage/energy.py,sha256=w78GUIWcHxANvBl2DTu73FQFawCXfzlK6L32TBQNt4g,3371
8
8
  restage/instr.py,sha256=A0ShtXkswt_f7o-cIDtsVbG03_tGELe1aS3WzLxzkJM,2494
9
- restage/mcpl.py,sha256=BZYxBytughjc8slR6gUaBy3D7gzo7Yl3ACXrXhWgagI,3403
9
+ restage/mcpl.py,sha256=MKVY-2TYk5p8hW1lXJib5mxdbnILq4GoYiyAUgOBJmA,3269
10
10
  restage/range.py,sha256=TjOf4DSKfgoAIcrWQvv6MrtksQpnGJHdsEjVI5K-UfI,8116
11
11
  restage/run.py,sha256=nk8d7cIyIqSt-5pyGm68Zak5H1a-fbo_z2_36eN-08E,1481
12
12
  restage/scan.py,sha256=Yx8OQSBG6I2_64sW0LIDb0glVKwWoxUQQznASXgDZFQ,1432
@@ -14,8 +14,8 @@ restage/splitrun.py,sha256=W_pTeiMjc9hhu-zaE6fdetVLG6MGEpnaTOdgmgVkS1g,26061
14
14
  restage/tables.py,sha256=mL1SrCbgwfWzG-ezd_R3CxOSIZLNZRoC2r7ht59jGMA,16371
15
15
  restage/config/__init__.py,sha256=zFRT9QXgpUJpBncELCQ6by1-kjYp8Li1yJDfqxkHxAA,965
16
16
  restage/config/default.yaml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
- restage-0.5.0.dist-info/METADATA,sha256=5MHru2wvnMp3OATaVEEHYBWI8fP16npDpXnXwXjlteo,6769
18
- restage-0.5.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
- restage-0.5.0.dist-info/entry_points.txt,sha256=gghocSxC2gHHxUCalAibCN1mtkh3trNmAfH5Qwx0KYg,149
20
- restage-0.5.0.dist-info/top_level.txt,sha256=iM_pb-taTZ0S2WMoDnt_qDMZoNMjmM19z3tTCuVm1IE,8
21
- restage-0.5.0.dist-info/RECORD,,
17
+ restage-0.6.0.dist-info/METADATA,sha256=X4sDrQDtdq4jl0nkymuxCsnxM8QbBJ4_nTiwKWfyNwA,6769
18
+ restage-0.6.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
+ restage-0.6.0.dist-info/entry_points.txt,sha256=gghocSxC2gHHxUCalAibCN1mtkh3trNmAfH5Qwx0KYg,149
20
+ restage-0.6.0.dist-info/top_level.txt,sha256=iM_pb-taTZ0S2WMoDnt_qDMZoNMjmM19z3tTCuVm1IE,8
21
+ restage-0.6.0.dist-info/RECORD,,