|
| 1 | +import os, sys |
| 2 | + |
| 3 | + |
| 4 | +def create_lib(path, name): |
| 5 | + if not os.path.exists(path): |
| 6 | + raise FileNotFoundError(f'ERROR: Package pdlparse cannot find {path}.') |
| 7 | + |
| 8 | + new_file = f'{path}/{name}.pdl' |
| 9 | + with open(new_file, 'w') as file: |
| 10 | + file.write('''/* |
| 11 | +__KEYWORDS__ |
| 12 | +class - a place to store variables and data |
| 13 | +priv - declares a variable as exclusive to .pdl file |
| 14 | +new - creates a copy of variable similar to handle |
| 15 | +__TYPES__ |
| 16 | +str - declares a variable as a string |
| 17 | +int - declares a variable as integer |
| 18 | +lst - uses brackets and commas to create list's |
| 19 | +flt - a floating point number |
| 20 | +raw - used to declare all back-slashes to be ignored |
| 21 | +bol - true, false, null |
| 22 | +__COMMENTS__ |
| 23 | +// - line comment |
| 24 | +*/ |
| 25 | + \n''') |
| 26 | + file.write('class main { \ |
| 27 | + \n int number = 23 \ |
| 28 | + \n};') |
| 29 | + |
| 30 | + |
| 31 | +def create_lib_script(library, script_name): |
| 32 | + if not os.path.exists(library): |
| 33 | + raise FileNotFoundError(f'ERROR: Package pdlparse cannot find {library}') |
| 34 | + file_path = os.path.dirname(library) |
| 35 | + if not '.' in script_name: |
| 36 | + new_file = f'{file_path}/{script_name}.py' |
| 37 | + else: |
| 38 | + raise Exception(f'ERROR: Package pdlparse found `.` in {script_name} variable') |
| 39 | + |
| 40 | + with open(new_file, 'w') as new: |
| 41 | + new.write("import os, sys \n") |
| 42 | + new.write("import pdlparse as pdl \n") |
| 43 | + new.write("variables = pdl.parse.scrap_library('test.pdl')") |
| 44 | + |
| 45 | + |
| 46 | +def create_manifest(dir): |
| 47 | + if not os.path.exists(dir): |
| 48 | + raise FileNotFoundError(f'ERROR: Package pdlparse cannot find {dir}') |
| 49 | + new_file = f'{dir}/MANIFEST' |
| 50 | + |
| 51 | + with open(new_file, 'a') as file: |
| 52 | + libs = [] |
| 53 | + file.write('-_FILES_-\n') |
| 54 | + for r, d, f in os.walk(dir): |
| 55 | + for item in f: |
| 56 | + if 'MANIFEST' in item: |
| 57 | + f.remove(item) |
| 58 | + if '.pdl' in item: |
| 59 | + libs.append(item) |
| 60 | + else: |
| 61 | + file.write(f'{item}\n') |
| 62 | + file.write('-_LIBS_-\n') |
| 63 | + for item in libs: |
| 64 | + file.write(f'{item}\n') |
| 65 | + |
0 commit comments