cura_app.py 3.6 KB

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