summaryrefslogtreecommitdiff
path: root/support/asymptote/__main__.py
diff options
context:
space:
mode:
authorjaseg <git@jaseg.net>2019-09-26 19:45:54 +0200
committerjaseg <git@jaseg.net>2019-09-26 19:45:54 +0200
commitb2eb56076d47af08a11e10fa53446a00b849a13c (patch)
tree4537c06e2e9bc5b78a731231e6c049c8cd5f376c /support/asymptote/__main__.py
parent82b88f920a85487372cc6e0b46633e4aa328eb69 (diff)
downloadpogojig-b2eb56076d47af08a11e10fa53446a00b849a13c.tar.gz
pogojig-b2eb56076d47af08a11e10fa53446a00b849a13c.tar.bz2
pogojig-b2eb56076d47af08a11e10fa53446a00b849a13c.zip
Pogojig mostly done: KiCAD export works
Diffstat (limited to 'support/asymptote/__main__.py')
-rw-r--r--support/asymptote/__main__.py63
1 files changed, 0 insertions, 63 deletions
diff --git a/support/asymptote/__main__.py b/support/asymptote/__main__.py
deleted file mode 100644
index 77bbdc7..0000000
--- a/support/asymptote/__main__.py
+++ /dev/null
@@ -1,63 +0,0 @@
-import sys, os, shutil
-from lib import util, make
-
-
-def _asymptote(in_path, out_path, asymptote_dir, working_dir):
- args = [os.environ['ASYMPTOTE'], '-vv', '-f', 'pdf', '-o', out_path, in_path]
-
- with util.command_context(args, set_env={'ASYMPTOTE_DIR': asymptote_dir}, working_dir=working_dir, use_stderr=True) as process:
- def get_loaded_file(line):
- if any(line.startswith(j) for j in ['Loading ', 'Including ']):
- parts = line.rstrip('\n').split(' ')
-
- if len(parts) == 4:
- _, _, from_, path = parts
-
- if from_ == 'from':
- return path
-
- return None
-
- def iter_loaded_files():
- for i in process.stderr:
- loaded_file = get_loaded_file(i)
-
- if loaded_file is not None:
- yield loaded_file
- elif not any(i.startswith(j) for j in ['cd ', 'Using configuration ']):
- print >> sys.stderr, i,
-
- loaded_files = list(iter_loaded_files())
-
- return loaded_files
-
-
-@util.main
-def main(in_path, out_path):
- try:
- _, out_suffix = os.path.splitext(out_path)
-
- with util.TemporaryDirectory() as temp_dir:
- absolute_in_path = os.path.abspath(in_path)
- temp_out_path = os.path.join(temp_dir, 'out.pdf')
-
- # Asymptote creates A LOT of temp files (presumably when invoking
- # LaTeX) and leaves some of them behind. Thus we run asymptote
- # in a temporary directory.
- loaded_files = _asymptote(
- absolute_in_path,
- 'out',
- os.path.dirname(absolute_in_path),
- temp_dir)
-
- if not os.path.exists(temp_out_path):
- raise util.UserError('Asymptote did not generate a PDF file.', in_path)
-
- # All dependencies as paths relative to the project root.
- dependencies = set(map(os.path.relpath, loaded_files))
-
- # Write output files.
- make.write_dependencies(out_path + '.d', out_path, dependencies - {in_path})
- shutil.copyfile(temp_out_path, out_path)
- except util.UserError as e:
- raise util.UserError('While processing {}: {}', in_path, e)