-
Notifications
You must be signed in to change notification settings - Fork 32
feat: add auto-generated enums for HIPO schema #1205
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
df75bfc
add script to generate enums from bank schema
baltzell 94696fc
add resulting enums
baltzell 9d44d87
cleanup
baltzell a821425
update package name
baltzell 4113d65
update bank package path
baltzell 91c7779
remove auto-generated bank schema enums
baltzell 998b46a
rename
baltzell e270be8
remove auto-generated bank enums (again?)
baltzell 6b9ff7a
gitignore auto-generated bank enums
baltzell f8b7ccd
add schema-enum-cleaning to mvn clean
baltzell 3ecc8df
add bank schema enum generation to maven validation phase
baltzell f781aad
switch to single underscore
baltzell 60a8a32
move enum build to clas-io
baltzell 1d25333
propagate path update
baltzell 70a3d8d
delete
baltzell 9fed090
fix paths
baltzell File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| #!/usr/bin/env python3 | ||
| import os,glob,json | ||
| top = os.path.normpath(os.path.dirname(os.path.abspath(__file__))+'/../..') | ||
| idir = 'etc/bankdefs/hipo4' | ||
| odir = 'common-tools/clas-io/src/main/java/org/jlab/io/banks' | ||
| print(f'INFO: Creating schema enums at {odir}') | ||
| os.makedirs(f'{top}/{odir}', exist_ok=True) | ||
| for x in glob.glob(f'{top}/{idir}/*.json'): | ||
| for bank in json.load(open(x,'r')): | ||
| class_name = bank['name'].replace('::','_').replace(':','_') | ||
| with open(f'{top}/{odir}/{class_name}.java','w') as f: | ||
| f.write('package org.jlab.io.banks;\n') | ||
| f.write(f'public class {class_name} {{\n') | ||
| for i,entry in enumerate(bank['entries']): | ||
| var_name = entry['name'] | ||
| f.write(f' public static final short {var_name} = {i};\n') | ||
| f.write('}\n') | ||
| f.close() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.