2024-03-18 06:57:41 -07:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
import datetime
|
|
|
|
import os
|
|
|
|
import signal
|
2024-05-29 03:22:15 -07:00
|
|
|
import subprocess
|
2024-03-18 06:57:41 -07:00
|
|
|
import sys
|
2024-05-09 20:03:47 -07:00
|
|
|
import threading
|
|
|
|
import time
|
2024-03-18 06:57:41 -07:00
|
|
|
import traceback
|
|
|
|
|
|
|
|
from cereal import log
|
|
|
|
import cereal.messaging as messaging
|
|
|
|
import openpilot.selfdrive.sentry as sentry
|
|
|
|
from openpilot.common.params import Params, ParamKeyType
|
|
|
|
from openpilot.common.text_window import TextWindow
|
2024-05-09 20:03:47 -07:00
|
|
|
from openpilot.common.time import system_time_valid
|
2024-03-18 06:57:41 -07:00
|
|
|
from openpilot.system.hardware import HARDWARE, PC
|
|
|
|
from openpilot.selfdrive.manager.helpers import unblock_stdout, write_onroad_params, save_bootlog
|
|
|
|
from openpilot.selfdrive.manager.process import ensure_running
|
|
|
|
from openpilot.selfdrive.manager.process_config import managed_processes
|
|
|
|
from openpilot.selfdrive.athena.registration import register, UNREGISTERED_DONGLE_ID
|
|
|
|
from openpilot.common.swaglog import cloudlog, add_file_handler
|
|
|
|
from openpilot.system.version import is_dirty, get_commit, get_version, get_origin, get_short_branch, \
|
|
|
|
get_normalized_origin, terms_version, training_version, \
|
|
|
|
is_tested_branch, is_release_branch, get_commit_date
|
|
|
|
|
2024-05-29 03:22:15 -07:00
|
|
|
from openpilot.selfdrive.frogpilot.controls.lib.frogpilot_functions import FrogPilotFunctions
|
2024-03-18 06:57:41 -07:00
|
|
|
|
|
|
|
|
2024-05-29 03:43:25 -07:00
|
|
|
def frogpilot_boot_functions(frogpilot_functions):
|
|
|
|
try:
|
|
|
|
while not system_time_valid():
|
|
|
|
print("Waiting for system time to become valid...")
|
|
|
|
time.sleep(1)
|
|
|
|
|
2024-05-09 22:11:42 -07:00
|
|
|
try:
|
|
|
|
frogpilot_functions.backup_frogpilot()
|
|
|
|
except subprocess.CalledProcessError as e:
|
|
|
|
print(f"Failed to backup FrogPilot. Error: {e}")
|
|
|
|
return
|
|
|
|
|
|
|
|
try:
|
|
|
|
frogpilot_functions.backup_toggles()
|
|
|
|
except subprocess.CalledProcessError as e:
|
|
|
|
print(f"Failed to backup toggles. Error: {e}")
|
|
|
|
return
|
|
|
|
|
2024-05-29 03:43:25 -07:00
|
|
|
except Exception as e:
|
|
|
|
print(f"An unexpected error occurred: {e}")
|
|
|
|
|
|
|
|
def manager_init(frogpilot_functions) -> None:
|
|
|
|
frogpilot_boot = threading.Thread(target=frogpilot_boot_functions, args=(frogpilot_functions,))
|
|
|
|
frogpilot_boot.start()
|
|
|
|
|
2024-03-18 06:57:41 -07:00
|
|
|
save_bootlog()
|
|
|
|
|
|
|
|
params = Params()
|
|
|
|
params.clear_all(ParamKeyType.CLEAR_ON_MANAGER_START)
|
|
|
|
params.clear_all(ParamKeyType.CLEAR_ON_ONROAD_TRANSITION)
|
|
|
|
params.clear_all(ParamKeyType.CLEAR_ON_OFFROAD_TRANSITION)
|
|
|
|
if is_release_branch():
|
|
|
|
params.clear_all(ParamKeyType.DEVELOPMENT_ONLY)
|
|
|
|
|
2024-05-29 03:43:25 -07:00
|
|
|
frogpilot_functions.convert_params(params, params_storage)
|
|
|
|
|
2024-03-18 06:57:41 -07:00
|
|
|
default_params: list[tuple[str, str | bytes]] = [
|
2024-05-09 18:06:46 -07:00
|
|
|
("CarParamsPersistent", ""),
|
2024-03-18 06:57:41 -07:00
|
|
|
("CompletedTrainingVersion", "0"),
|
|
|
|
("DisengageOnAccelerator", "0"),
|
2024-05-09 18:06:46 -07:00
|
|
|
("ExperimentalLongitudinalEnabled", "0"),
|
|
|
|
("GithubSshKeys", ""),
|
|
|
|
("GithubUsername", ""),
|
|
|
|
("GsmApn", ""),
|
2024-03-18 06:57:41 -07:00
|
|
|
("GsmMetered", "1"),
|
2024-05-09 18:06:46 -07:00
|
|
|
("GsmRoaming", "1"),
|
2024-03-18 06:57:41 -07:00
|
|
|
("HasAcceptedTerms", "0"),
|
2024-05-09 18:06:46 -07:00
|
|
|
("IsLdwEnabled", "0"),
|
|
|
|
("IsMetric", "0"),
|
2024-03-18 06:57:41 -07:00
|
|
|
("LanguageSetting", "main_en"),
|
2024-05-09 18:06:46 -07:00
|
|
|
("NavSettingLeftSide", "0"),
|
|
|
|
("NavSettingTime24h", "0"),
|
2024-03-18 06:57:41 -07:00
|
|
|
("OpenpilotEnabledToggle", "1"),
|
2024-05-09 18:06:46 -07:00
|
|
|
("RecordFront", "0"),
|
|
|
|
("SshEnabled", "0"),
|
|
|
|
("UpdaterAvailableBranches", "FrogPilot,FrogPilot-Staging"),
|
2024-03-18 06:57:41 -07:00
|
|
|
("LongitudinalPersonality", str(log.LongitudinalPersonality.standard)),
|
2024-05-09 18:06:46 -07:00
|
|
|
|
|
|
|
# Default FrogPilot parameters
|
|
|
|
("AccelerationPath", "1"),
|
|
|
|
("AccelerationProfile", "2"),
|
|
|
|
("AdjacentPath", "0"),
|
|
|
|
("AdjacentPathMetrics", "0"),
|
|
|
|
("AggressiveAcceleration", "1"),
|
|
|
|
("AggressiveAccelerationExperimental", "0"),
|
|
|
|
("AggressiveFollow", "1.25"),
|
|
|
|
("AggressiveJerkAcceleration", "50"),
|
|
|
|
("AggressiveJerkSpeed", "50"),
|
|
|
|
("AggressivePersonalityProfile", "1"),
|
|
|
|
("AlertVolumeControl", "0"),
|
|
|
|
("AlwaysOnLateral", "1"),
|
|
|
|
("AlwaysOnLateralMain", "1"),
|
|
|
|
("AMapKey1", ""),
|
|
|
|
("AMapKey2", ""),
|
|
|
|
("AutomaticUpdates", "1"),
|
|
|
|
("BlindSpotMetrics", "0"),
|
|
|
|
("BlindSpotPath", "1"),
|
|
|
|
("BorderMetrics", "1"),
|
|
|
|
("CameraView", "2"),
|
|
|
|
("CarMake", ""),
|
|
|
|
("CarModel", ""),
|
|
|
|
("CECurves", "1"),
|
|
|
|
("CENavigation", "1"),
|
|
|
|
("CENavigationIntersections", "1"),
|
|
|
|
("CENavigationLead", "1"),
|
|
|
|
("CENavigationTurns", "1"),
|
|
|
|
("CESignal", "1"),
|
|
|
|
("CESlowerLead", "1"),
|
|
|
|
("CESpeed", "0"),
|
|
|
|
("CESpeedLead", "0"),
|
|
|
|
("CEStopLights", "1"),
|
|
|
|
("CEStopLightsLead", "0"),
|
|
|
|
("ClusterOffset", "1.015"),
|
|
|
|
("Compass", "0"),
|
|
|
|
("ConditionalExperimental", "1"),
|
|
|
|
("CrosstrekTorque", "1"),
|
|
|
|
("CurveSensitivity", "100"),
|
|
|
|
("CustomAlerts", "1"),
|
|
|
|
("CustomColors", "1"),
|
|
|
|
("CustomCruise", "1"),
|
|
|
|
("CustomCruiseLong", "5"),
|
|
|
|
("CustomIcons", "1"),
|
|
|
|
("CustomPaths", "1"),
|
|
|
|
("CustomPersonalities", "1"),
|
|
|
|
("CustomSignals", "1"),
|
|
|
|
("CustomSounds", "1"),
|
|
|
|
("CustomTheme", "1"),
|
|
|
|
("CustomUI", "1"),
|
|
|
|
("CydiaTune", "0"),
|
|
|
|
("DecelerationProfile", "1"),
|
|
|
|
("DeveloperUI", "0"),
|
|
|
|
("DeviceManagement", "1"),
|
|
|
|
("DeviceShutdown", "9"),
|
|
|
|
("DisableMTSCSmoothing", "0"),
|
|
|
|
("DisableOnroadUploads", "0"),
|
|
|
|
("DisableOpenpilotLongitudinal", "0"),
|
|
|
|
("DisableVTSCSmoothing", "0"),
|
|
|
|
("DisengageVolume", "100"),
|
|
|
|
("DragonPilotTune", "0"),
|
|
|
|
("DriverCamera", "0"),
|
|
|
|
("DrivingPersonalities", "1"),
|
|
|
|
("DynamicPathWidth", "0"),
|
|
|
|
("DynamicPedalsOnUI", "1"),
|
|
|
|
("EngageVolume", "100"),
|
|
|
|
("ExperimentalModeActivation", "1"),
|
|
|
|
("ExperimentalModeViaDistance", "1"),
|
|
|
|
("ExperimentalModeViaLKAS", "1"),
|
|
|
|
("ExperimentalModeViaTap", "0"),
|
|
|
|
("Fahrenheit", "0"),
|
|
|
|
("ForceAutoTune", "1"),
|
|
|
|
("ForceFingerprint", "0"),
|
|
|
|
("ForceMPHDashboard", "0"),
|
|
|
|
("FPSCounter", "1"),
|
|
|
|
("FrogsGoMooTune", "1"),
|
|
|
|
("FullMap", "0"),
|
|
|
|
("GasRegenCmd", "1"),
|
|
|
|
("GMapKey", ""),
|
|
|
|
("GoatScream", "1"),
|
|
|
|
("GreenLightAlert", "0"),
|
|
|
|
("HideAlerts", "0"),
|
|
|
|
("HideAOLStatusBar", "0"),
|
|
|
|
("HideCEMStatusBar", "0"),
|
|
|
|
("HideLeadMarker", "0"),
|
|
|
|
("HideMapIcon", "0"),
|
|
|
|
("HideMaxSpeed", "0"),
|
|
|
|
("HideSpeed", "0"),
|
|
|
|
("HideSpeedUI", "0"),
|
|
|
|
("HideUIElements", "0"),
|
|
|
|
("HolidayThemes", "1"),
|
|
|
|
("IncreaseThermalLimits", "0"),
|
|
|
|
("LaneChangeCustomizations", "1"),
|
|
|
|
("LaneChangeTime", "0"),
|
|
|
|
("LaneDetectionWidth", "90"),
|
|
|
|
("LaneLinesWidth", "4"),
|
|
|
|
("LateralMetrics", "1"),
|
|
|
|
("LateralTune", "1"),
|
|
|
|
("LeadDepartingAlert", "0"),
|
|
|
|
("LeadDetectionThreshold", "35"),
|
|
|
|
("LockDoors", "1"),
|
|
|
|
("LongitudinalMetrics", "1"),
|
|
|
|
("LongitudinalTune", "1"),
|
|
|
|
("LongPitch", "1"),
|
|
|
|
("LoudBlindspotAlert", "0"),
|
|
|
|
("LowVoltageShutdown", "11.8"),
|
|
|
|
("MapAcceleration", "0"),
|
|
|
|
("MapDeceleration", "0"),
|
|
|
|
("MapsSelected", ""),
|
|
|
|
("MapboxPublicKey", ""),
|
|
|
|
("MapboxSecretKey", ""),
|
|
|
|
("MapStyle", "10"),
|
|
|
|
("MinimumLaneChangeSpeed", "20"),
|
|
|
|
("MTSCAggressiveness", "100"),
|
|
|
|
("MTSCCurvatureCheck", "0"),
|
|
|
|
("Model", DEFAULT_MODEL),
|
|
|
|
("ModelName", DEFAULT_MODEL_NAME),
|
|
|
|
("ModelSelector", "0"),
|
|
|
|
("ModelUI", "1"),
|
|
|
|
("MTSCEnabled", "1"),
|
|
|
|
("NNFF", "1"),
|
|
|
|
("NNFFLite", "1"),
|
|
|
|
("NoLogging", "0"),
|
|
|
|
("NoUploads", "0"),
|
|
|
|
("NudgelessLaneChange", "1"),
|
|
|
|
("NumericalTemp", "1"),
|
|
|
|
("OfflineMode", "1"),
|
|
|
|
("Offset1", "5"),
|
|
|
|
("Offset2", "5"),
|
|
|
|
("Offset3", "5"),
|
|
|
|
("Offset4", "10"),
|
|
|
|
("OneLaneChange", "1"),
|
|
|
|
("OnroadDistanceButton", "0"),
|
|
|
|
("PathEdgeWidth", "20"),
|
|
|
|
("PathWidth", "61"),
|
|
|
|
("PauseAOLOnBrake", "0"),
|
|
|
|
("PauseLateralOnSignal", "0"),
|
|
|
|
("PedalsOnUI", "1"),
|
|
|
|
("PreferredSchedule", "0"),
|
|
|
|
("PromptVolume", "100"),
|
|
|
|
("PromptDistractedVolume", "100"),
|
|
|
|
("QOLControls", "1"),
|
|
|
|
("QOLVisuals", "1"),
|
|
|
|
("RandomEvents", "0"),
|
|
|
|
("RefuseVolume", "100"),
|
|
|
|
("RelaxedFollow", "1.75"),
|
|
|
|
("RelaxedJerkAcceleration", "100"),
|
|
|
|
("RelaxedJerkSpeed", "100"),
|
|
|
|
("RelaxedPersonalityProfile", "1"),
|
|
|
|
("ReverseCruise", "0"),
|
|
|
|
("ReverseCruiseUI", "1"),
|
|
|
|
("RoadEdgesWidth", "2"),
|
|
|
|
("RoadNameUI", "1"),
|
|
|
|
("RotatingWheel", "1"),
|
|
|
|
("ScreenBrightness", "101"),
|
|
|
|
("ScreenBrightnessOnroad", "101"),
|
|
|
|
("ScreenManagement", "1"),
|
|
|
|
("ScreenRecorder", "1"),
|
|
|
|
("ScreenTimeout", "30"),
|
|
|
|
("ScreenTimeoutOnroad", "30"),
|
|
|
|
("SearchInput", "0"),
|
|
|
|
("SetSpeedLimit", "0"),
|
|
|
|
("SetSpeedOffset", "0"),
|
|
|
|
("ShowCPU", "1"),
|
|
|
|
("ShowGPU", "0"),
|
|
|
|
("ShowIP", "0"),
|
|
|
|
("ShowMemoryUsage", "1"),
|
|
|
|
("ShowSLCOffset", "1"),
|
|
|
|
("ShowSLCOffsetUI", "1"),
|
|
|
|
("ShowSteering", "1"),
|
|
|
|
("ShowStorageLeft", "0"),
|
|
|
|
("ShowStorageUsed", "0"),
|
|
|
|
("Sidebar", "0"),
|
|
|
|
("SidebarMetrics", "1"),
|
|
|
|
("SignalMetrics", "0"),
|
|
|
|
("SLCConfirmation", "1"),
|
|
|
|
("SLCConfirmationLower", "1"),
|
|
|
|
("SLCConfirmationHigher", "1"),
|
|
|
|
("SLCFallback", "2"),
|
|
|
|
("SLCLookaheadHigher", "5"),
|
|
|
|
("SLCLookaheadLower", "5"),
|
|
|
|
("SLCOverride", "1"),
|
|
|
|
("SLCPriority1", "Dashboard"),
|
|
|
|
("SLCPriority2", "Offline Maps"),
|
|
|
|
("SLCPriority3", "Navigation"),
|
|
|
|
("SmoothBraking", "1"),
|
|
|
|
("SmoothBrakingFarLead", "0"),
|
|
|
|
("SmoothBrakingJerk", "0"),
|
|
|
|
("SNGHack", "1"),
|
|
|
|
("SpeedLimitChangedAlert", "1"),
|
|
|
|
("SpeedLimitController", "1"),
|
|
|
|
("StandardFollow", "1.45"),
|
|
|
|
("StandardJerkAcceleration", "100"),
|
|
|
|
("StandardJerkSpeed", "100"),
|
|
|
|
("StandardPersonalityProfile", "1"),
|
|
|
|
("StandbyMode", "0"),
|
|
|
|
("StaticPedalsOnUI", "0"),
|
|
|
|
("SteerRatio", ""),
|
|
|
|
("SteerRatioStock", ""),
|
|
|
|
("StockTune", "0"),
|
|
|
|
("StoppingDistance", "3"),
|
|
|
|
("TacoTune", "0"),
|
|
|
|
("ToyotaDoors", "0"),
|
|
|
|
("TrafficFollow", "0.5"),
|
|
|
|
("TrafficJerkAcceleration", "50"),
|
|
|
|
("TrafficJerkSpeed", "50"),
|
|
|
|
("TrafficPersonalityProfile", "1"),
|
|
|
|
("TrafficMode", "0"),
|
|
|
|
("TurnAggressiveness", "100"),
|
|
|
|
("TurnDesires", "0"),
|
|
|
|
("UnlimitedLength", "1"),
|
|
|
|
("UnlockDoors", "1"),
|
|
|
|
("UseSI", "1"),
|
|
|
|
("UseVienna", "0"),
|
|
|
|
("VisionTurnControl", "1"),
|
|
|
|
("WarningSoftVolume", "100"),
|
|
|
|
("WarningImmediateVolume", "100"),
|
|
|
|
("WheelIcon", "3"),
|
|
|
|
("WheelSpeed", "0")
|
2024-03-18 06:57:41 -07:00
|
|
|
]
|
|
|
|
if not PC:
|
|
|
|
default_params.append(("LastUpdateTime", datetime.datetime.utcnow().isoformat().encode('utf8')))
|
|
|
|
|
|
|
|
if params.get_bool("RecordFrontLock"):
|
|
|
|
params.put_bool("RecordFront", True)
|
|
|
|
|
|
|
|
# set unset params
|
|
|
|
for k, v in default_params:
|
|
|
|
if params.get(k) is None:
|
|
|
|
params.put(k, v)
|
|
|
|
|
|
|
|
# Create folders needed for msgq
|
|
|
|
try:
|
|
|
|
os.mkdir("/dev/shm")
|
|
|
|
except FileExistsError:
|
|
|
|
pass
|
|
|
|
except PermissionError:
|
|
|
|
print("WARNING: failed to make /dev/shm")
|
|
|
|
|
|
|
|
# set version params
|
|
|
|
params.put("Version", get_version())
|
|
|
|
params.put("TermsVersion", terms_version)
|
|
|
|
params.put("TrainingVersion", training_version)
|
|
|
|
params.put("GitCommit", get_commit())
|
|
|
|
params.put("GitCommitDate", get_commit_date())
|
|
|
|
params.put("GitBranch", get_short_branch())
|
|
|
|
params.put("GitRemote", get_origin())
|
|
|
|
params.put_bool("IsTestedBranch", is_tested_branch())
|
|
|
|
params.put_bool("IsReleaseBranch", is_release_branch())
|
|
|
|
|
|
|
|
# set dongle id
|
|
|
|
reg_res = register(show_spinner=True)
|
|
|
|
if reg_res:
|
|
|
|
dongle_id = reg_res
|
|
|
|
else:
|
|
|
|
serial = params.get("HardwareSerial")
|
|
|
|
raise Exception(f"Registration failed for device {serial}")
|
|
|
|
os.environ['DONGLE_ID'] = dongle_id # Needed for swaglog
|
|
|
|
os.environ['GIT_ORIGIN'] = get_normalized_origin() # Needed for swaglog
|
|
|
|
os.environ['GIT_BRANCH'] = get_short_branch() # Needed for swaglog
|
|
|
|
os.environ['GIT_COMMIT'] = get_commit() # Needed for swaglog
|
|
|
|
|
|
|
|
if not is_dirty():
|
|
|
|
os.environ['CLEAN'] = '1'
|
|
|
|
|
|
|
|
# init logging
|
|
|
|
sentry.init(sentry.SentryProject.SELFDRIVE)
|
|
|
|
cloudlog.bind_global(dongle_id=dongle_id,
|
|
|
|
version=get_version(),
|
|
|
|
origin=get_normalized_origin(),
|
|
|
|
branch=get_short_branch(),
|
|
|
|
commit=get_commit(),
|
|
|
|
dirty=is_dirty(),
|
|
|
|
device=HARDWARE.get_device_type())
|
|
|
|
|
|
|
|
# preimport all processes
|
|
|
|
for p in managed_processes.values():
|
|
|
|
p.prepare()
|
|
|
|
|
|
|
|
|
|
|
|
def manager_cleanup() -> None:
|
|
|
|
# send signals to kill all procs
|
|
|
|
for p in managed_processes.values():
|
|
|
|
p.stop(block=False)
|
|
|
|
|
|
|
|
# ensure all are killed
|
|
|
|
for p in managed_processes.values():
|
|
|
|
p.stop(block=True)
|
|
|
|
|
|
|
|
cloudlog.info("everything is dead")
|
|
|
|
|
|
|
|
|
|
|
|
def manager_thread() -> None:
|
|
|
|
cloudlog.bind(daemon="manager")
|
|
|
|
cloudlog.info("manager start")
|
|
|
|
cloudlog.info({"environ": os.environ})
|
|
|
|
|
|
|
|
params = Params()
|
2024-05-24 02:41:19 -07:00
|
|
|
params_memory = Params("/dev/shm/params")
|
2024-03-18 06:57:41 -07:00
|
|
|
|
|
|
|
ignore: list[str] = []
|
|
|
|
if params.get("DongleId", encoding='utf8') in (None, UNREGISTERED_DONGLE_ID):
|
|
|
|
ignore += ["manage_athenad", "uploader"]
|
|
|
|
if os.getenv("NOBOARD") is not None:
|
|
|
|
ignore.append("pandad")
|
|
|
|
ignore += [x for x in os.getenv("BLOCK", "").split(",") if len(x) > 0]
|
|
|
|
|
|
|
|
sm = messaging.SubMaster(['deviceState', 'carParams'], poll='deviceState')
|
|
|
|
pm = messaging.PubMaster(['managerState'])
|
|
|
|
|
|
|
|
write_onroad_params(False, params)
|
|
|
|
ensure_running(managed_processes.values(), False, params=params, CP=sm['carParams'], not_run=ignore)
|
|
|
|
|
|
|
|
started_prev = False
|
|
|
|
|
|
|
|
while True:
|
|
|
|
sm.update(1000)
|
|
|
|
|
|
|
|
started = sm['deviceState'].started
|
|
|
|
|
|
|
|
if started and not started_prev:
|
|
|
|
params.clear_all(ParamKeyType.CLEAR_ON_ONROAD_TRANSITION)
|
|
|
|
elif not started and started_prev:
|
|
|
|
params.clear_all(ParamKeyType.CLEAR_ON_OFFROAD_TRANSITION)
|
2024-05-24 02:41:19 -07:00
|
|
|
params_memory.clear_all(ParamKeyType.CLEAR_ON_OFFROAD_TRANSITION)
|
2024-03-18 06:57:41 -07:00
|
|
|
|
|
|
|
# update onroad params, which drives boardd's safety setter thread
|
|
|
|
if started != started_prev:
|
|
|
|
write_onroad_params(started, params)
|
|
|
|
|
|
|
|
started_prev = started
|
|
|
|
|
|
|
|
ensure_running(managed_processes.values(), started, params=params, CP=sm['carParams'], not_run=ignore)
|
|
|
|
|
|
|
|
running = ' '.join("{}{}\u001b[0m".format("\u001b[32m" if p.proc.is_alive() else "\u001b[31m", p.name)
|
|
|
|
for p in managed_processes.values() if p.proc)
|
|
|
|
print(running)
|
|
|
|
cloudlog.debug(running)
|
|
|
|
|
|
|
|
# send managerState
|
|
|
|
msg = messaging.new_message('managerState', valid=True)
|
|
|
|
msg.managerState.processes = [p.get_process_state_msg() for p in managed_processes.values()]
|
|
|
|
pm.send('managerState', msg)
|
|
|
|
|
|
|
|
# Exit main loop when uninstall/shutdown/reboot is needed
|
|
|
|
shutdown = False
|
|
|
|
for param in ("DoUninstall", "DoShutdown", "DoReboot"):
|
|
|
|
if params.get_bool(param):
|
|
|
|
shutdown = True
|
|
|
|
params.put("LastManagerExitReason", f"{param} {datetime.datetime.now()}")
|
|
|
|
cloudlog.warning(f"Shutting down manager - {param} set")
|
|
|
|
|
|
|
|
if shutdown:
|
|
|
|
break
|
|
|
|
|
|
|
|
|
2024-05-29 03:22:15 -07:00
|
|
|
def main(frogpilot_functions) -> None:
|
|
|
|
frogpilot_functions.setup_frogpilot()
|
|
|
|
|
2024-05-29 03:43:25 -07:00
|
|
|
manager_init(frogpilot_functions)
|
2024-03-18 06:57:41 -07:00
|
|
|
if os.getenv("PREPAREONLY") is not None:
|
|
|
|
return
|
|
|
|
|
|
|
|
# SystemExit on sigterm
|
|
|
|
signal.signal(signal.SIGTERM, lambda signum, frame: sys.exit(1))
|
|
|
|
|
|
|
|
try:
|
|
|
|
manager_thread()
|
|
|
|
except Exception:
|
|
|
|
traceback.print_exc()
|
|
|
|
sentry.capture_exception()
|
|
|
|
finally:
|
|
|
|
manager_cleanup()
|
|
|
|
|
|
|
|
params = Params()
|
|
|
|
if params.get_bool("DoUninstall"):
|
|
|
|
cloudlog.warning("uninstalling")
|
2024-05-29 03:22:15 -07:00
|
|
|
frogpilot_functions.uninstall_frogpilot()
|
2024-03-18 06:57:41 -07:00
|
|
|
elif params.get_bool("DoReboot"):
|
|
|
|
cloudlog.warning("reboot")
|
|
|
|
HARDWARE.reboot()
|
|
|
|
elif params.get_bool("DoShutdown"):
|
|
|
|
cloudlog.warning("shutdown")
|
|
|
|
HARDWARE.shutdown()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
unblock_stdout()
|
|
|
|
|
|
|
|
try:
|
2024-05-29 03:22:15 -07:00
|
|
|
main(FrogPilotFunctions())
|
2024-03-18 06:57:41 -07:00
|
|
|
except KeyboardInterrupt:
|
|
|
|
print("got CTRL-C, exiting")
|
|
|
|
except Exception:
|
|
|
|
add_file_handler(cloudlog)
|
|
|
|
cloudlog.exception("Manager failed to start")
|
|
|
|
|
|
|
|
try:
|
|
|
|
managed_processes['ui'].stop()
|
|
|
|
except Exception:
|
|
|
|
pass
|
|
|
|
|
|
|
|
# Show last 3 lines of traceback
|
|
|
|
error = traceback.format_exc(-3)
|
|
|
|
error = "Manager failed to start\n\n" + error
|
|
|
|
with TextWindow(error) as t:
|
|
|
|
t.wait_for_exit()
|
|
|
|
|
|
|
|
raise
|
|
|
|
|
|
|
|
# manual exit because we are forked
|
|
|
|
sys.exit(0)
|