mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-17 06:41:26 +00:00
130 lines
4.9 KiB
Python
130 lines
4.9 KiB
Python
#
|
|
# main.py
|
|
#
|
|
# Copyright (C) 2007 Andrew Resch ('andar') <andrewresch@gmail.com>
|
|
#
|
|
# Deluge is free software.
|
|
#
|
|
# You may redistribute it and/or modify it under the terms of the
|
|
# GNU General Public License, as published by the Free Software
|
|
# Foundation; either version 2 of the License, or (at your option)
|
|
# any later version.
|
|
#
|
|
# deluge is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
# See the GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with deluge. If not, write to:
|
|
# The Free Software Foundation, Inc.,
|
|
# 51 Franklin Street, Fifth Floor
|
|
# Boston, MA 02110-1301, USA.
|
|
#
|
|
# In addition, as a special exception, the copyright holders give
|
|
# permission to link the code of portions of this program with the OpenSSL
|
|
# library.
|
|
# You must obey the GNU General Public License in all respects for all of
|
|
# the code used other than OpenSSL. If you modify file(s) with this
|
|
# exception, you may extend this exception to your version of the file(s),
|
|
# but you are not obligated to do so. If you do not wish to do so, delete
|
|
# this exception statement from your version. If you delete this exception
|
|
# statement from all source files in the program, then also delete it here.
|
|
|
|
# The main starting point for the program. This function is called when the
|
|
# user runs the command 'deluge'.
|
|
|
|
"""Main starting point for Deluge. Contains the main() entry point."""
|
|
|
|
import os
|
|
import os.path
|
|
import sys
|
|
from optparse import OptionParser
|
|
|
|
import deluge.common
|
|
|
|
def start_ui():
|
|
"""Entry point for ui script"""
|
|
# Setup the argument parser
|
|
parser = OptionParser(usage="%prog [options] [actions]",
|
|
version=deluge.common.get_version())
|
|
|
|
parser.add_option("-u", "--ui", dest="ui",
|
|
help="The UI that you wish to launch", action="store", type="str")
|
|
parser.add_option("-c", "--config", dest="config",
|
|
help="Set the config location", action="store", type="str")
|
|
parser.add_option("-l", "--logfile", dest="logfile",
|
|
help="Output to designated logfile instead of stdout", action="store", type="str")
|
|
|
|
# Get the options and args from the OptionParser
|
|
(options, args) = parser.parse_args()
|
|
|
|
if deluge.common.windows_check():
|
|
if options.config:
|
|
logfile = os.path.join(options.config, "deluge.log")
|
|
else:
|
|
logfile = deluge.common.get_default_config_dir("deluge.log")
|
|
|
|
sys.stdout = open(logfile, "wb")
|
|
sys.stderr = sys.stdout
|
|
sys.stdin = None
|
|
|
|
from deluge.log import LOG as log
|
|
|
|
version = deluge.common.get_version()
|
|
if deluge.common.get_revision() != "":
|
|
version = version + "r" + deluge.common.get_revision()
|
|
|
|
log.info("Deluge ui %s", version)
|
|
log.debug("options: %s", options)
|
|
log.debug("args: %s", args)
|
|
|
|
from deluge.ui.ui import UI
|
|
log.info("Starting ui..")
|
|
UI(options, args)
|
|
|
|
def start_daemon():
|
|
"""Entry point for daemon script"""
|
|
import deluge.common
|
|
|
|
# Setup the argument parser
|
|
parser = OptionParser(usage="%prog [options] [actions]",
|
|
version=deluge.common.get_version())
|
|
parser.add_option("-p", "--port", dest="port",
|
|
help="Port daemon will listen on", action="store", type="int")
|
|
parser.add_option("-d", "--do-not-daemonize", dest="donot",
|
|
help="Do not daemonize", action="store_true", default=False)
|
|
parser.add_option("-c", "--config", dest="config",
|
|
help="Set the config location", action="store", type="str")
|
|
parser.add_option("-l", "--logfile", dest="logfile",
|
|
help="Set the logfile location", action="store", type="str")
|
|
|
|
# Get the options and args from the OptionParser
|
|
(options, args) = parser.parse_args()
|
|
|
|
# If the donot daemonize is set, then we just skip the forking
|
|
if not options.donot and not deluge.common.windows_check():
|
|
if os.fork() == 0:
|
|
os.setsid()
|
|
if os.fork() == 0:
|
|
if options.logfile:
|
|
logfile = options.logfile
|
|
else:
|
|
if options.config:
|
|
logfile = os.path.join(options.config, "deluged.log")
|
|
else:
|
|
config_dir = deluge.common.get_default_config_dir()
|
|
logfile = os.path.join(config_dir, "deluged.log")
|
|
|
|
sys.stdout = open(logfile, "w")
|
|
sys.stderr = sys.stdout
|
|
sys.stdin = None
|
|
else:
|
|
os._exit(0)
|
|
else:
|
|
os._exit(0)
|
|
|
|
from deluge.core.daemon import Daemon
|
|
Daemon(options, args)
|
|
|