Files
waydroid/tools/__init__.py
2025-11-11 00:22:34 +01:00

164 lines
5.9 KiB
Python

# Copyright 2021 Oliver Smith
# SPDX-License-Identifier: GPL-3.0-or-later
# PYTHON_ARGCOMPLETE_OK
import sys
import logging
import os
import traceback
import dbus.mainloop.glib
import dbus
import dbus.exceptions
from . import actions
from . import config
from . import helpers
from .helpers import logging as tools_logging
def main():
def actionNeedRoot(action):
if os.geteuid() != 0:
raise RuntimeError(
"Action \"{}\" needs root access".format(action))
# Wrap everything to display nice error messages
args = None
try:
# Parse arguments, set up logging
args = helpers.arguments()
args.cache = {}
args.work = config.defaults["work"]
args.config = args.work + "/waydroid.cfg"
args.log = args.work + "/waydroid.log"
args.sudo_timer = True
args.timeout = 1800
if os.geteuid() == 0:
if not os.path.exists(args.work):
os.mkdir(args.work)
elif not os.path.exists(args.log):
args.log = "/tmp/tools.log"
tools_logging.init(args)
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
dbus.mainloop.glib.threads_init()
if args.action is None:
args.action = "first-launch"
if args.action == "init":
if args.client:
actions.remote_init_client(args)
else:
actionNeedRoot(args.action)
actions.init(args)
elif args.action == "upgrade":
actionNeedRoot(args.action)
actions.upgrade(args)
elif args.action == "session":
if args.subaction == "start":
actions.session_manager.start(args)
elif args.subaction == "stop":
actions.session_manager.stop(args)
else:
logging.info(
"Run waydroid {} -h for usage information.".format(args.action))
elif args.action == "container":
actionNeedRoot(args.action)
if args.subaction == "start":
actions.container_manager.start(args)
elif args.subaction == "stop":
actions.container_manager.stop(args)
elif args.subaction == "restart":
actions.container_manager.restart(args)
elif args.subaction == "freeze":
actions.container_manager.freeze(args)
elif args.subaction == "unfreeze":
actions.container_manager.unfreeze(args)
else:
logging.info(
"Run waydroid {} -h for usage information.".format(args.action))
elif args.action == "app":
if args.subaction == "install":
actions.app_manager.install(args)
elif args.subaction == "remove":
actions.app_manager.remove(args)
elif args.subaction == "launch":
actions.app_manager.launch(args)
elif args.subaction == "intent":
actions.app_manager.intent(args)
elif args.subaction == "list":
actions.app_manager.list(args)
else:
logging.info(
"Run waydroid {} -h for usage information.".format(args.action))
elif args.action == "prop":
if args.subaction == "get":
actions.prop.get(args)
elif args.subaction == "set":
actions.prop.set(args)
else:
logging.info(
"Run waydroid {} -h for usage information.".format(args.action))
elif args.action == "shell":
actionNeedRoot(args.action)
helpers.lxc.shell(args)
elif args.action == "logcat":
actionNeedRoot(args.action)
helpers.lxc.logcat(args)
elif args.action == "show-full-ui":
actions.app_manager.showFullUI(args)
elif args.action == "first-launch":
if not actions.initializer.is_initialized(args):
actions.remote_init_client(args)
if actions.initializer.is_initialized(args):
actions.app_manager.showFullUI(args)
elif args.action == "status":
actions.status.print_status(args)
elif args.action == "adb":
if args.subaction == "connect":
helpers.net.adb_connect(args)
elif args.subaction == "disconnect":
helpers.net.adb_disconnect(args)
else:
logging.info("Run waydroid {} -h for usage information.".format(args.action))
elif args.action == "log":
if args.clear_log:
helpers.run.user(args, ["truncate", "-s", "0", args.log])
try:
helpers.run.user(
args, ["tail", "-n", args.lines, "-F", args.log], output="tui")
except KeyboardInterrupt:
pass
elif args.action == "bugreport":
actions.bugreport(args)
else:
logging.info("Run waydroid -h for usage information.")
#logging.info("Done")
except Exception as e:
# Dump log to stdout when args (and therefore logging) init failed
if not args:
logging.getLogger().setLevel(logging.DEBUG)
logging.info("ERROR: " + str(e))
logging.info("See also: <https://github.com/waydroid>")
logging.debug(traceback.format_exc())
if args and args.details_to_stdout:
return 1
# Hints about the log file (print to stdout only)
log_hint = "Run 'waydroid log' for details."
if not args or not os.path.exists(args.log) or not args.action == "container":
log_hint = ("Use '--details-to-stdout' to get more details:\n"
f" {sys.argv[0]} --details-to-stdout {' '.join(sys.argv[1:])}")
print(log_hint)
return 1
if __name__ == "__main__":
sys.exit(main())