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
|
#!/usr/bin/env python3
"""
Generates the python file based on the defined uifile
"""
import os
import subprocess
import sys
import tempfile
import dxf2gcode.globals.constants as c
def which(program):
def is_exe(fpath):
return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
fpath, fname = os.path.split(program)
if fpath:
if is_exe(program):
return program
else:
for path in os.environ["PATH"].split(os.pathsep):
exe_file = os.path.join(path, program)
if is_exe(exe_file):
return exe_file
return None
pyQtVer = '5'
if "linux" in sys.platform.lower() or "unix" in sys.platform.lower() or "darwin" in sys.platform.lower():
# On Linux and macOS executables are normaly on the PATH (on Linux please install packages like lib64-qt5-devel and python-qt5-devel)
names = ["pyuic%s" % pyQtVer]
UICPATH = None
for name in names:
if which(name):
UICPATH = name
break
if not UICPATH:
print("ERROR: Cannot file uic tool.")
print("Please consider to install uic tool - to use this script.")
sys.exit(1)
names = ["pyrcc%s" % pyQtVer]
RCCPATH = None
for name in names:
if which(name):
RCCPATH = name
break
if not UICPATH:
print("ERROR: Cannot file rcc tool.")
print("Please consider to install rcc tool - to use this script.")
sys.exit(1)
RCCPATH = "pyrcc%s" % pyQtVer
print("Using platform tools \"%s\" and \"%s\"\n" % (UICPATH, RCCPATH))
else:
PYTHONPATH = os.path.split(sys.executable)[0]
UICPATH = os.path.join(PYTHONPATH, "Scripts/pyuic5.exe")
RCCPATH = os.path.join(PYTHONPATH, "Scripts/pyrcc5.exe")
print("Using Windows platform tools \"%s\" and \"%s\"\n" % (UICPATH, RCCPATH))
FILEPATH = os.path.realpath(os.path.dirname(sys.argv[0]))
UIFILE = "dxf2gcode.ui"
PYFILEver = "dxf2gcode_ui%s.py" % pyQtVer
RCFILE = "dxf2gcode_images.qrc"
RCFILEver = "dxf2gcode_images%s.qrc" % pyQtVer
RCPYFILEver = "dxf2gcode_images%s_rc.py" % pyQtVer
ui_data = ""
with open(UIFILE, "r") as myfile:
ui_data = myfile.read().replace(RCFILE, RCFILEver)
fd, tmp_ui_filename = tempfile.mkstemp()
try:
os.write(fd, bytes(ui_data, 'UTF-8'))
os.close(fd)
OPTIONS = "-o"
cmd1 = [UICPATH, tmp_ui_filename, OPTIONS, PYFILEver]
cmd2 = [RCCPATH, OPTIONS, RCPYFILEver, RCFILE]
print(" ".join(cmd1))
subprocess.check_call(cmd1)
print(" ".join(cmd2))
subprocess.check_call(cmd2)
finally:
os.remove(tmp_ui_filename)
print("Please consider to not commit any auto-generated files.")
print("\nREADY")
|