mirror of
https://github.com/HelloZeroNet/ZeroNet.git
synced 2023-12-14 04:33:03 +01:00
60 lines
1.8 KiB
Python
60 lines
1.8 KiB
Python
#!/usr/bin/env python
|
|
|
|
# Included modules
|
|
import os
|
|
import sys
|
|
|
|
|
|
def main():
|
|
print "- Starting ZeroNet..."
|
|
|
|
main = None
|
|
try:
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "src/lib")) # External liblary directory
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "src")) # Imports relative to src
|
|
import main
|
|
main.start()
|
|
if main.update_after_shutdown: # Updater
|
|
import gc
|
|
import update
|
|
# Try cleanup openssl
|
|
try:
|
|
if "lib.opensslVerify" in sys.modules:
|
|
sys.modules["lib.opensslVerify"].opensslVerify.closeLibrary()
|
|
except Exception, err:
|
|
print "Error closing opensslVerify lib", err
|
|
try:
|
|
if "lib.pyelliptic" in sys.modules:
|
|
sys.modules["lib.pyelliptic"].openssl.closeLibrary()
|
|
except Exception, err:
|
|
print "Error closing pyelliptic lib", err
|
|
|
|
# Update
|
|
update.update()
|
|
|
|
# Close log files
|
|
logger = sys.modules["main"].logging.getLogger()
|
|
|
|
for handler in logger.handlers[:]:
|
|
handler.flush()
|
|
handler.close()
|
|
logger.removeHandler(handler)
|
|
|
|
except (Exception, ): # Prevent closing
|
|
import traceback
|
|
traceback.print_exc()
|
|
traceback.print_exc(file=open("log/error.log", "a"))
|
|
|
|
if main and main.update_after_shutdown: # Updater
|
|
# Restart
|
|
gc.collect() # Garbage collect
|
|
print "Restarting..."
|
|
args = sys.argv[:]
|
|
args.insert(0, sys.executable)
|
|
if sys.platform == 'win32':
|
|
args = ['"%s"' % arg for arg in args]
|
|
os.execv(sys.executable, args)
|
|
print "Bye."
|
|
|
|
if __name__ == '__main__':
|
|
main()
|