cura_app.py 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. #!/usr/bin/env python3
  2. # Copyright (c) 2015 Ultimaker B.V.
  3. # Cura is released under the terms of the AGPLv3 or higher.
  4. import os
  5. import sys
  6. import platform
  7. from UM.Platform import Platform
  8. #WORKAROUND: GITHUB-88 GITHUB-385 GITHUB-612
  9. if Platform.isLinux(): # Needed for platform.linux_distribution, which is not available on Windows and OSX
  10. # For Ubuntu: https://bugs.launchpad.net/ubuntu/+source/python-qt4/+bug/941826
  11. if platform.linux_distribution()[0] in ("debian", "Ubuntu", "LinuxMint"): # TODO: Needs a "if X11_GFX == 'nvidia'" here. The workaround is only needed on Ubuntu+NVidia drivers. Other drivers are not affected, but fine with this fix.
  12. import ctypes
  13. from ctypes.util import find_library
  14. libGL = find_library("GL")
  15. ctypes.CDLL(libGL, ctypes.RTLD_GLOBAL)
  16. # When frozen, i.e. installer version, don't let PYTHONPATH mess up the search path for DLLs.
  17. if Platform.isWindows() and hasattr(sys, "frozen"):
  18. try:
  19. del os.environ["PYTHONPATH"]
  20. except KeyError: pass
  21. #WORKAROUND: GITHUB-704 GITHUB-708
  22. # It looks like setuptools creates a .pth file in
  23. # the default /usr/lib which causes the default site-packages
  24. # to be inserted into sys.path before PYTHONPATH.
  25. # This can cause issues such as having libsip loaded from
  26. # the system instead of the one provided with Cura, which causes
  27. # incompatibility issues with libArcus
  28. if "PYTHONPATH" in os.environ.keys(): # If PYTHONPATH is used
  29. PYTHONPATH = os.environ["PYTHONPATH"].split(os.pathsep) # Get the value, split it..
  30. PYTHONPATH.reverse() # and reverse it, because we always insert at 1
  31. for PATH in PYTHONPATH: # Now beginning with the last PATH
  32. PATH_real = os.path.realpath(PATH) # Making the the path "real"
  33. if PATH_real in sys.path: # This should always work, but keep it to be sure..
  34. sys.path.remove(PATH_real)
  35. sys.path.insert(1, PATH_real) # Insert it at 1 after os.curdir, which is 0.
  36. def exceptHook(hook_type, value, traceback):
  37. import cura.CrashHandler
  38. cura.CrashHandler.show(hook_type, value, traceback)
  39. sys.excepthook = exceptHook
  40. # Workaround for a race condition on certain systems where there
  41. # is a race condition between Arcus and PyQt. Importing Arcus
  42. # first seems to prevent Sip from going into a state where it
  43. # tries to create PyQt objects on a non-main thread.
  44. import Arcus #@UnusedImport
  45. import cura.CuraApplication
  46. import cura.Settings.CuraContainerRegistry
  47. if Platform.isWindows() and hasattr(sys, "frozen"):
  48. dirpath = os.path.expanduser("~/AppData/Local/cura/")
  49. os.makedirs(dirpath, exist_ok = True)
  50. sys.stdout = open(os.path.join(dirpath, "stdout.log"), "w")
  51. sys.stderr = open(os.path.join(dirpath, "stderr.log"), "w")
  52. # Force an instance of CuraContainerRegistry to be created and reused later.
  53. cura.Settings.CuraContainerRegistry.CuraContainerRegistry.getInstance()
  54. # This prestart up check is needed to determine if we should start the application at all.
  55. if not cura.CuraApplication.CuraApplication.preStartUp():
  56. sys.exit(0)
  57. app = cura.CuraApplication.CuraApplication.getInstance()
  58. app.run()