someip-py 0.0.1__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- someip_py/__init__.py +5 -0
- someip_py/ci/.gitignore +25 -0
- someip_py/ci/.pre-commit-config.yaml +23 -0
- someip_py/ci/MANIFEST.in +2 -0
- someip_py/ci/README.md +3 -0
- someip_py/ci/obfuscate.sh +6 -0
- someip_py/ci/setup.cfg +56 -0
- someip_py/ci/setup.py +4 -0
- someip_py/ci/tests/1.pcap +0 -0
- someip_py/ci/tests/2.pcap +0 -0
- someip_py/ci/tests/proto/Adcu.ADAVPOperService.proto +491 -0
- someip_py/ci/tests/proto/Adcu.ADAVPStsService.proto +1510 -0
- someip_py/ci/tests/proto/Adcu.ADHighDefinitionMapService.proto +250 -0
- someip_py/ci/tests/proto/Adcu.ADLocationService.proto +385 -0
- someip_py/ci/tests/proto/Adcu.ADNZPUbOperService.proto +1445 -0
- someip_py/ci/tests/proto/Adcu.ADNZPUbStsService.proto +682 -0
- someip_py/ci/tests/proto/Adcu.ADPerceptionService.proto +631 -0
- someip_py/ci/tests/proto/Adcu.ADPlanningInfoService.proto +151 -0
- someip_py/ci/tests/proto/Adcu.ADSDMapNavigationService.proto +1268 -0
- someip_py/ci/tests/proto/Adcu.ADStateService.proto +1406 -0
- someip_py/ci/tests/proto/Adcu.DMSInfoService.proto +84 -0
- someip_py/ci/tests/test_decode_payload.py +18 -0
- someip_py/ci/tests/test_deserialize.py +56 -0
- someip_py/ci/tests/test_encode_payload.py +14 -0
- someip_py/ci/tests/test_encrypt.py +9 -0
- someip_py/ci/tests/test_generate_code.py +13 -0
- someip_py/ci/tests/test_parse_pcap_2x.py +12 -0
- someip_py/ci/tests/test_parse_pcap_pb.py +14 -0
- someip_py/ci/tests/test_subscribe.py +51 -0
- someip_py/ci/tests/test_view.py +10 -0
- someip_py/ci/tox.ini +73 -0
- someip_py/client.py +475 -0
- someip_py/codec.py +1243 -0
- someip_py/config.py +353 -0
- someip_py/constants.py +60 -0
- someip_py/frame.py +1003 -0
- someip_py/interface.py +975 -0
- someip_py/scapy_extention.py +557 -0
- someip_py/secure_upload.py +66 -0
- someip_py/server.py +699 -0
- someip_py/service_interface/V2x/ADAVPOperService/ADAVPOper.py +62 -0
- someip_py/service_interface/V2x/ADAVPOperService/__init__.py +0 -0
- someip_py/service_interface/V2x/ADCU_HmiService/ADParkingInfoPB.py +53 -0
- someip_py/service_interface/V2x/ADCU_HmiService/AVP3DMapInf.py +291 -0
- someip_py/service_interface/V2x/ADCU_HmiService/AVPCollectedDestinationCmdInf.py +23 -0
- someip_py/service_interface/V2x/ADCU_HmiService/AVPMapButtonCmdInf.py +19 -0
- someip_py/service_interface/V2x/ADCU_HmiService/AVPMapGenerateStatusInf.py +39 -0
- someip_py/service_interface/V2x/ADCU_HmiService/AVPMapInf.py +265 -0
- someip_py/service_interface/V2x/ADCU_HmiService/AVPMapListInfoInf.py +136 -0
- someip_py/service_interface/V2x/ADCU_HmiService/AVPMapManageCmdInf.py +149 -0
- someip_py/service_interface/V2x/ADCU_HmiService/AVPPopupInf.py +10 -0
- someip_py/service_interface/V2x/ADCU_HmiService/AbsoluteLocalizationInf.py +63 -0
- someip_py/service_interface/V2x/ADCU_HmiService/ActionableAreaInf.py +41 -0
- someip_py/service_interface/V2x/ADCU_HmiService/AdasMileageInf.py +10 -0
- someip_py/service_interface/V2x/ADCU_HmiService/AlarmInfoInf.py +63 -0
- someip_py/service_interface/V2x/ADCU_HmiService/AlignedSpeedSettingInf.py +10 -0
- someip_py/service_interface/V2x/ADCU_HmiService/ApaParkingStatusInf.py +23 -0
- someip_py/service_interface/V2x/ADCU_HmiService/ApaSlelectedSlotParkingmodeInf.py +10 -0
- someip_py/service_interface/V2x/ADCU_HmiService/AutoNaviSearchInf.py +72 -0
- someip_py/service_interface/V2x/ADCU_HmiService/AvoidJamAreaInf.py +86 -0
- someip_py/service_interface/V2x/ADCU_HmiService/AvpEgoPositionInMapInf.py +55 -0
- someip_py/service_interface/V2x/ADCU_HmiService/AvpTfRelToMapInf.py +43 -0
- someip_py/service_interface/V2x/ADCU_HmiService/CalibSensorGroupStateInf.py +27 -0
- someip_py/service_interface/V2x/ADCU_HmiService/CalibStateAckInf.py +39 -0
- someip_py/service_interface/V2x/ADCU_HmiService/CancelSaveInf.py +19 -0
- someip_py/service_interface/V2x/ADCU_HmiService/ClearFaultInf.py +10 -0
- someip_py/service_interface/V2x/ADCU_HmiService/CommutingRouteSelectionReqInf.py +52 -0
- someip_py/service_interface/V2x/ADCU_HmiService/CommutingRouteSelectionRspInf.py +43 -0
- someip_py/service_interface/V2x/ADCU_HmiService/CommutingRoutesInfoInf.py +135 -0
- someip_py/service_interface/V2x/ADCU_HmiService/CurrentRoadSpeedInf.py +19 -0
- someip_py/service_interface/V2x/ADCU_HmiService/CustomParkingInf.py +54 -0
- someip_py/service_interface/V2x/ADCU_HmiService/CustomerInf.py +66 -0
- someip_py/service_interface/V2x/ADCU_HmiService/D2DRouteEndSwitchInf.py +19 -0
- someip_py/service_interface/V2x/ADCU_HmiService/DHUInquireIssueLogInf.py +32 -0
- someip_py/service_interface/V2x/ADCU_HmiService/DLPSceneInf.py +31 -0
- someip_py/service_interface/V2x/ADCU_HmiService/EgoCarPositionCityInf.py +19 -0
- someip_py/service_interface/V2x/ADCU_HmiService/EstablishSomeIPConnectionInf.py +19 -0
- someip_py/service_interface/V2x/ADCU_HmiService/FaultListInfoInf.py +23 -0
- someip_py/service_interface/V2x/ADCU_HmiService/FavoriteRouteInfoUpdateInf.py +44 -0
- someip_py/service_interface/V2x/ADCU_HmiService/FeatureStateInf.py +383 -0
- someip_py/service_interface/V2x/ADCU_HmiService/FeatureStateInf2.py +23 -0
- someip_py/service_interface/V2x/ADCU_HmiService/GNSSMsgInf.py +71 -0
- someip_py/service_interface/V2x/ADCU_HmiService/GuidanceStatusUpdateInf.py +60 -0
- someip_py/service_interface/V2x/ADCU_HmiService/HighDefinitionMapInf.py +179 -0
- someip_py/service_interface/V2x/ADCU_HmiService/IntegAdpuConfigInf.py +10 -0
- someip_py/service_interface/V2x/ADCU_HmiService/LaneFunction.py +52 -0
- someip_py/service_interface/V2x/ADCU_HmiService/LineInfoInf.py +82 -0
- someip_py/service_interface/V2x/ADCU_HmiService/MemoryRouteControlInf.py +27 -0
- someip_py/service_interface/V2x/ADCU_HmiService/MemoryRouteStatusInf.py +43 -0
- someip_py/service_interface/V2x/ADCU_HmiService/MrNaviRouteInf.py +82 -0
- someip_py/service_interface/V2x/ADCU_HmiService/NavExitTriggerInf.py +19 -0
- someip_py/service_interface/V2x/ADCU_HmiService/NaviGreenWaveCarSpeedInf.py +44 -0
- someip_py/service_interface/V2x/ADCU_HmiService/NavigationDistreqInf.py +57 -0
- someip_py/service_interface/V2x/ADCU_HmiService/NavigationInfoInf.py +260 -0
- someip_py/service_interface/V2x/ADCU_HmiService/NavigationLineInf.py +45 -0
- someip_py/service_interface/V2x/ADCU_HmiService/NavigationRouteInf.py +389 -0
- someip_py/service_interface/V2x/ADCU_HmiService/NavigationStsInf.py +19 -0
- someip_py/service_interface/V2x/ADCU_HmiService/NavigationTargetInf.py +57 -0
- someip_py/service_interface/V2x/ADCU_HmiService/NavilntervalCameraDynamicInf.py +45 -0
- someip_py/service_interface/V2x/ADCU_HmiService/NzpStateTriggerInf.py +19 -0
- someip_py/service_interface/V2x/ADCU_HmiService/OnlineCalibTriggerInf.py +32 -0
- someip_py/service_interface/V2x/ADCU_HmiService/PDCWarningInfoInf.py +97 -0
- someip_py/service_interface/V2x/ADCU_HmiService/ParkingAPAInf.py +28 -0
- someip_py/service_interface/V2x/ADCU_HmiService/ParkingInteractiveInf.py +27 -0
- someip_py/service_interface/V2x/ADCU_HmiService/ParkingInteractiveStatusInf.py +36 -0
- someip_py/service_interface/V2x/ADCU_HmiService/PathDirectionArrowInf.py +36 -0
- someip_py/service_interface/V2x/ADCU_HmiService/PebSwitchSettingInf.py +10 -0
- someip_py/service_interface/V2x/ADCU_HmiService/PercepFusionObjsInf.py +79 -0
- someip_py/service_interface/V2x/ADCU_HmiService/PercepTrafficLightsInf.py +73 -0
- someip_py/service_interface/V2x/ADCU_HmiService/PerceptionAPASlotsInf.py +73 -0
- someip_py/service_interface/V2x/ADCU_HmiService/PlanningTrajectoryInf.py +53 -0
- someip_py/service_interface/V2x/ADCU_HmiService/PoiInfoInf.py +122 -0
- someip_py/service_interface/V2x/ADCU_HmiService/RelativeLocalizationInf.py +51 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SDMapElectronicEyeInf.py +141 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SDMapLinkRoadInfo.py +36 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SelectedSlotIdInf.py +27 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingACPEInfoInf.py +10 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingADASInfoInf.py +23 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingAEBInfoInf.py +35 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingAESInfoInf.py +10 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingAPAInfoInf.py +35 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingAWWInfoInf.py +10 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingBSDInfoInf.py +27 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingCMSRInfoInf.py +10 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingCheckInf.py +277 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingCheckReq.py +23 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingDOWInfoInf.py +10 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingDrivingInfoInf.py +79 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingEMAInfoInf.py +10 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingFCTAInfoInf.py +23 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingFVSWInfoInf.py +10 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingInitializationInf.py +300 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingLKAInfoInf.py +39 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingLPInfoInf.py +10 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingRCTAInfoInf.py +10 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingRMFInfoInf.py +10 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingRPAInfoInf.py +23 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingSGWInfoInf.py +10 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingSRVInfoInf.py +10 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingTLAInfoInf.py +23 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingTSIInfoInf.py +39 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SettingVoiceWarningInfoInf.py +10 -0
- someip_py/service_interface/V2x/ADCU_HmiService/SpeedLimitTriggerInf.py +19 -0
- someip_py/service_interface/V2x/ADCU_HmiService/TLAMainActionInf.py +102 -0
- someip_py/service_interface/V2x/ADCU_HmiService/TrafficLightStatusInf.py +66 -0
- someip_py/service_interface/V2x/ADCU_HmiService/TrafficRedWarningInf.py +36 -0
- someip_py/service_interface/V2x/ADCU_HmiService/VehicleRegionInf.py +10 -0
- someip_py/service_interface/V2x/ADCU_HmiService/VoiceCommandsInf.py +32 -0
- someip_py/service_interface/V2x/ADCU_HmiService/__init__.py +0 -0
- someip_py/service_interface/V2x/ADCU_HmiService/base.py +10 -0
- someip_py/service_interface/V2x/ADDrivingService/ADConfirmAndResume.py +19 -0
- someip_py/service_interface/V2x/ADDrivingService/ADFunctionReq.py +19 -0
- someip_py/service_interface/V2x/ADDrivingService/ADSetSpeed.py +36 -0
- someip_py/service_interface/V2x/ADDrivingService/ADTiGapAdj.py +36 -0
- someip_py/service_interface/V2x/ADDrivingService/AsyALatIndcr.py +10 -0
- someip_py/service_interface/V2x/ADDrivingService/AsyALgtIndcr.py +10 -0
- someip_py/service_interface/V2x/ADDrivingService/__init__.py +0 -0
- someip_py/service_interface/V2x/ADHighDefinitionMapService/ADHDMapSts.py +53 -0
- someip_py/service_interface/V2x/ADHighDefinitionMapService/__init__.py +0 -0
- someip_py/service_interface/V2x/ADLocationService/ADLocationSts.py +53 -0
- someip_py/service_interface/V2x/ADLocationService/__init__.py +0 -0
- someip_py/service_interface/V2x/ADNZPUbStsService/ADNZPUbSts.py +53 -0
- someip_py/service_interface/V2x/ADNZPUbStsService/__init__.py +0 -0
- someip_py/service_interface/V2x/ADPerceptionService/ADPerceptionSts.py +53 -0
- someip_py/service_interface/V2x/ADPerceptionService/__init__.py +0 -0
- someip_py/service_interface/V2x/ADPlanningService/ADPlanningInf.py +53 -0
- someip_py/service_interface/V2x/ADPlanningService/__init__.py +0 -0
- someip_py/service_interface/V2x/ADStateService/DrivingFeatureState.py +53 -0
- someip_py/service_interface/V2x/ADStateService/__init__.py +0 -0
- someip_py/service_interface/V2x/CamIntrinsicsService/CameraIntInf.py +62 -0
- someip_py/service_interface/V2x/CamIntrinsicsService/__init__.py +0 -0
- someip_py/service_interface/V2x/DMSInfoService/DMSInfo.py +53 -0
- someip_py/service_interface/V2x/DMSInfoService/__init__.py +0 -0
- someip_py/service_interface/V2x/ZID_Model_Service/ZidForbidInf.py +33 -0
- someip_py/service_interface/V2x/ZID_Model_Service/__init__.py +0 -0
- someip_py/service_interface/V2x/__init__.py +0 -0
- someip_py/service_interface/V30/ADASMapService/HznData.py +69 -0
- someip_py/service_interface/V30/ADASMapService/HznEdge.py +85 -0
- someip_py/service_interface/V30/ADASMapService/HznPosn.py +61 -0
- someip_py/service_interface/V30/ADASMapService/HznPosnLR.py +61 -0
- someip_py/service_interface/V30/ADASMapService/HznProfLong.py +53 -0
- someip_py/service_interface/V30/ADASMapService/HznProfLongLR.py +53 -0
- someip_py/service_interface/V30/ADASMapService/HznProfSho.py +65 -0
- someip_py/service_interface/V30/ADASMapService/HznSeg.py +93 -0
- someip_py/service_interface/V30/ADASMapService/HznSts.py +10 -0
- someip_py/service_interface/V30/ADASMapService/__init__.py +0 -0
- someip_py/service_interface/V30/ADAVPOperService/ADAVPOper.py +65 -0
- someip_py/service_interface/V30/ADAVPOperService/__init__.py +0 -0
- someip_py/service_interface/V30/ADAVPStsService/ADAVPSts.py +56 -0
- someip_py/service_interface/V30/ADAVPStsService/__init__.py +0 -0
- someip_py/service_interface/V30/ADAlertService/ADAlertAlarmInfoInfSts.py +40 -0
- someip_py/service_interface/V30/ADAlertService/ADAlertFaultListInfoSts.py +25 -0
- someip_py/service_interface/V30/ADAlertService/ClearFaultInf.py +10 -0
- someip_py/service_interface/V30/ADAlertService/__init__.py +0 -0
- someip_py/service_interface/V30/ADHighDefinitionMapService/ADHDMapSts.py +56 -0
- someip_py/service_interface/V30/ADHighDefinitionMapService/__init__.py +0 -0
- someip_py/service_interface/V30/ADLocationService/ADLocationSts.py +56 -0
- someip_py/service_interface/V30/ADLocationService/__init__.py +0 -0
- someip_py/service_interface/V30/ADNZPUbOperService/ADNZPUbOper.py +65 -0
- someip_py/service_interface/V30/ADNZPUbOperService/__init__.py +0 -0
- someip_py/service_interface/V30/ADNZPUbStsService/ADNZPUbSts.py +56 -0
- someip_py/service_interface/V30/ADNZPUbStsService/__init__.py +0 -0
- someip_py/service_interface/V30/ADPerceptionService/ADPerceptionSts.py +56 -0
- someip_py/service_interface/V30/ADPerceptionService/__init__.py +0 -0
- someip_py/service_interface/V30/ADPlanningService/ADPlanningInf.py +56 -0
- someip_py/service_interface/V30/ADPlanningService/__init__.py +0 -0
- someip_py/service_interface/V30/ADSDMapNavigationService/ADSDMapNavigationSts.py +56 -0
- someip_py/service_interface/V30/ADSDMapNavigationService/__init__.py +0 -0
- someip_py/service_interface/V30/ADScenePerceiveService/ScenePerceiveNotify.py +39 -0
- someip_py/service_interface/V30/ADScenePerceiveService/__init__.py +0 -0
- someip_py/service_interface/V30/ADStateService/ADSTSCalibSensorGroupState.py +56 -0
- someip_py/service_interface/V30/ADStateService/ADSTSCalibStateAckInf.py +56 -0
- someip_py/service_interface/V30/ADStateService/ADSTSFeatureStatus.py +56 -0
- someip_py/service_interface/V30/ADStateService/ADSTSIntegAdpuConfig.py +56 -0
- someip_py/service_interface/V30/ADStateService/ADSTSOnlineCalibInf.py +56 -0
- someip_py/service_interface/V30/ADStateService/CalibSensorGroupState.py +29 -0
- someip_py/service_interface/V30/ADStateService/__init__.py +0 -0
- someip_py/service_interface/V30/ADUserOperationService/ADUOCollectAndUpload.py +34 -0
- someip_py/service_interface/V30/ADUserOperationService/ADUOCustomParkingInf.py +57 -0
- someip_py/service_interface/V30/ADUserOperationService/ADUOOnlineCalibTriggerInf.py +34 -0
- someip_py/service_interface/V30/ADUserOperationService/ADUOSelectedSlotIdInf.py +19 -0
- someip_py/service_interface/V30/ADUserOperationService/ADUOSlelectedSlotParkingmodeInf.py +19 -0
- someip_py/service_interface/V30/ADUserOperationService/__init__.py +0 -0
- someip_py/service_interface/V30/ADUserSettingService/ADUserSettingSts.py +25 -0
- someip_py/service_interface/V30/ADUserSettingService/GetAllParameters.py +25 -0
- someip_py/service_interface/V30/ADUserSettingService/GetIntParameters.py +34 -0
- someip_py/service_interface/V30/ADUserSettingService/__init__.py +0 -0
- someip_py/service_interface/V30/CarConfigurationManagerService/CarConfigurationChangeEvent.py +25 -0
- someip_py/service_interface/V30/CarConfigurationManagerService/InstallCarconfig.py +10 -0
- someip_py/service_interface/V30/CarConfigurationManagerService/PrecheckCarconfig.py +10 -0
- someip_py/service_interface/V30/CarConfigurationManagerService/RollbackCarconfig.py +10 -0
- someip_py/service_interface/V30/CarConfigurationManagerService/SwitchCarconfig.py +10 -0
- someip_py/service_interface/V30/CarConfigurationManagerService/getAllParameters.py +25 -0
- someip_py/service_interface/V30/CarConfigurationManagerService/getAllofNodes.py +25 -0
- someip_py/service_interface/V30/CarConfigurationManagerService/getIntParameter.py +19 -0
- someip_py/service_interface/V30/CarConfigurationManagerService/getIntParameters.py +34 -0
- someip_py/service_interface/V30/CarConfigurationManagerService/getListofNodes.py +34 -0
- someip_py/service_interface/V30/CarConfigurationManagerService/getOneofNode.py +19 -0
- someip_py/service_interface/V30/CarConfigurationManagerService/getPartNumber.py +12 -0
- someip_py/service_interface/V30/CarConfigurationManagerService/getVin.py +10 -0
- someip_py/service_interface/V30/CarConfigurationManagerService/setIntParameter.py +19 -0
- someip_py/service_interface/V30/CarConfigurationManagerService/setIntParameters.py +34 -0
- someip_py/service_interface/V30/CarConfigurationManagerService/updateCarconfig.py +10 -0
- someip_py/service_interface/V30/ConnectedService/CurrentWeatherInfo.py +53 -0
- someip_py/service_interface/V30/ConnectedService/RequiredWeatherInfo.py +68 -0
- someip_py/service_interface/V30/ConnectedService/WeatherInforQueryReq.py +38 -0
- someip_py/service_interface/V30/DistributeFotaService/AbortDownload.py +43 -0
- someip_py/service_interface/V30/DistributeFotaService/AbortInstallation.py +43 -0
- someip_py/service_interface/V30/DistributeFotaService/GetAssignmentStatus.py +80 -0
- someip_py/service_interface/V30/DistributeFotaService/PauseDownload.py +34 -0
- someip_py/service_interface/V30/DistributeFotaService/PrecheckSwitch.py +34 -0
- someip_py/service_interface/V30/DistributeFotaService/ResumeDownload.py +34 -0
- someip_py/service_interface/V30/DistributeFotaService/Rollback.py +34 -0
- someip_py/service_interface/V30/DistributeFotaService/StartDecryption.py +34 -0
- someip_py/service_interface/V30/DistributeFotaService/StartDownload.py +34 -0
- someip_py/service_interface/V30/DistributeFotaService/StartInstallation.py +34 -0
- someip_py/service_interface/V30/DistributeFotaService/StartSensibleInstallation.py +34 -0
- someip_py/service_interface/V30/DistributeFotaService/StartSwitch.py +34 -0
- someip_py/service_interface/V30/DistributeFotaService/TransferAssignmentInfo.py +112 -0
- someip_py/service_interface/V30/DriverMonitorService/CamFltsStsToADCU.py +10 -0
- someip_py/service_interface/V30/DriverMonitorService/DrvrDistSwitchSts.py +10 -0
- someip_py/service_interface/V30/DriverMonitorService/DrvrDistSwitchsetting.py +19 -0
- someip_py/service_interface/V30/DriverMonitorService/DrvrFatiLvl.py +10 -0
- someip_py/service_interface/V30/DriverMonitorService/DrvrMonrAlarmSts.py +10 -0
- someip_py/service_interface/V30/DriverMonitorService/DrvrPerformanceAlarmSts.py +10 -0
- someip_py/service_interface/V30/DriverMonitorService/DrvrPfmncSwitchSts.py +10 -0
- someip_py/service_interface/V30/DriverMonitorService/DrvrPfmncSwitchsetting.py +19 -0
- someip_py/service_interface/V30/DriverMonitorService/EyeGazeRegion.py +25 -0
- someip_py/service_interface/V30/DriverMonitorService/EyeOnRoad.py +10 -0
- someip_py/service_interface/V30/DriverMonitorService/EyeOpenSts.py +25 -0
- someip_py/service_interface/V30/DriverMonitorService/EyePosnValidSig.py +29 -0
- someip_py/service_interface/V30/DriverMonitorService/SnsrDrvrPerformanceSts.py +10 -0
- someip_py/service_interface/V30/ESIMConnectionStatus/AutoCardSwitchSts.py +10 -0
- someip_py/service_interface/V30/ESIMConnectionStatus/CardSwitchStsCode.py +10 -0
- someip_py/service_interface/V30/ESIMConnectionStatus/ConnectionStatus.py +25 -0
- someip_py/service_interface/V30/ESIMConnectionStatus/DataConnectionStatus.py +25 -0
- someip_py/service_interface/V30/ESIMConnectionStatus/HiSpeedFun.py +25 -0
- someip_py/service_interface/V30/ESIMConnectionStatus/ICCIDInfo.py +25 -0
- someip_py/service_interface/V30/ESIMConnectionStatus/IMEIInfo.py +25 -0
- someip_py/service_interface/V30/ESIMConnectionStatus/IMSIInfo.py +25 -0
- someip_py/service_interface/V30/ESIMConnectionStatus/IPAddress.py +25 -0
- someip_py/service_interface/V30/ESIMConnectionStatus/MSISDNInfo.py +25 -0
- someip_py/service_interface/V30/ESIMConnectionStatus/MainCardSts.py +25 -0
- someip_py/service_interface/V30/ESIMConnectionStatus/MainCardSwitchReq.py +19 -0
- someip_py/service_interface/V30/ESIMConnectionStatus/NetworkAvailable.py +25 -0
- someip_py/service_interface/V30/ESIMConnectionStatus/OperatorStatus.py +25 -0
- someip_py/service_interface/V30/ESIMConnectionStatus/SignalLevel.py +25 -0
- someip_py/service_interface/V30/ESIMConnectionStatus/SignalLevelEvent.py +25 -0
- someip_py/service_interface/V30/ESIMConnectionStatus/SignalStrength.py +25 -0
- someip_py/service_interface/V30/ESIMConnectionStatus/SimCardSts.py +10 -0
- someip_py/service_interface/V30/ESIMConnectionStatus/SimCardStsEvent.py +10 -0
- someip_py/service_interface/V30/ESIMConnectionStatus/TrafficData.py +29 -0
- someip_py/service_interface/V30/IDPSProcessLocalService/CfigRuleLocalUpdate.py +19 -0
- someip_py/service_interface/V30/IDPSProcessLocalService/DeviceRegisterLocal.py +55 -0
- someip_py/service_interface/V30/IDPSProcessLocalService/FlowLocalUpload.py +19 -0
- someip_py/service_interface/V30/IDPSProcessLocalService/FwRuleLocalUpdate.py +19 -0
- someip_py/service_interface/V30/IDPSProcessLocalService/HealthLocalUpload.py +19 -0
- someip_py/service_interface/V30/IDPSProcessLocalService/QSEvLocalUpLoad.py +19 -0
- someip_py/service_interface/V30/IDPSProcessLocalService/RuleLocalUpdate.py +19 -0
- someip_py/service_interface/V30/IDPSProcessLocalService/VerifyIdentity.py +38 -0
- someip_py/service_interface/V30/IDPSVehicleRegisterLocalService/IDPSVehicleRegisterLocalSts.py +10 -0
- someip_py/service_interface/V30/NavigationService/ChrgStationPwr.py +10 -0
- someip_py/service_interface/V30/NavigationService/DistanceToDestination.py +10 -0
- someip_py/service_interface/V30/NavigationService/EstimdLeftSOCToDestination.py +10 -0
- someip_py/service_interface/V30/NavigationService/NaviActiveSts.py +10 -0
- someip_py/service_interface/V30/NavigationService/PositionOfDestinationInfo.py +29 -0
- someip_py/service_interface/V30/NavigationService/TLAMainActionInf.py +33 -0
- someip_py/service_interface/V30/NavigationService/TimeToDestination.py +29 -0
- someip_py/service_interface/V30/NavigationService/TotalRoadGroupInfo.py +37 -0
- someip_py/service_interface/V30/NavigationService/TrafficLightStatus.py +33 -0
- someip_py/service_interface/V30/NavigationService/TypeToDestination.py +10 -0
- someip_py/service_interface/V30/NavigationService/VehicleRegion.py +10 -0
- someip_py/service_interface/V30/NightVisionModeUXCService/NightVisionSnsrSts.py +10 -0
- someip_py/service_interface/V30/PerceptionObjectService/CameraSts.py +10 -0
- someip_py/service_interface/V30/PerceptionObjectService/HostVehInLitArea.py +10 -0
- someip_py/service_interface/V30/PerceptionObjectService/NearestVehObj.py +61 -0
- someip_py/service_interface/V30/PerceptionObjectService/TooManyCars.py +10 -0
- someip_py/service_interface/V30/PerceptionObjectService/TrafficSign1.py +49 -0
- someip_py/service_interface/V30/PerceptionObjectService/TrafficSign2.py +49 -0
- someip_py/service_interface/V30/PerceptionObjectService/VRUObj1.py +45 -0
- someip_py/service_interface/V30/PerceptionObjectService/VRUObj2.py +45 -0
- someip_py/service_interface/V30/PerceptionObjectService/VRUObj3.py +45 -0
- someip_py/service_interface/V30/PerceptionObjectService/VRUObj4.py +45 -0
- someip_py/service_interface/V30/PerceptionObjectService/VRUObj5.py +45 -0
- someip_py/service_interface/V30/PerceptionObjectService/VRUObj6.py +45 -0
- someip_py/service_interface/V30/PerceptionObjectService/VRUObj7.py +45 -0
- someip_py/service_interface/V30/PerceptionObjectService/VRUObj8.py +45 -0
- someip_py/service_interface/V30/PerceptionObjectService/VehObj1.py +61 -0
- someip_py/service_interface/V30/PerceptionObjectService/VehObj2.py +61 -0
- someip_py/service_interface/V30/PerceptionObjectService/VehObj3.py +61 -0
- someip_py/service_interface/V30/PerceptionObjectService/VehObj4.py +61 -0
- someip_py/service_interface/V30/PerceptionObjectService/VehObj5.py +61 -0
- someip_py/service_interface/V30/PerceptionObjectService/VehObj6.py +61 -0
- someip_py/service_interface/V30/PerceptionObjectService/VehObj7.py +61 -0
- someip_py/service_interface/V30/PerceptionObjectService/VehObj8.py +61 -0
- someip_py/service_interface/V30/VehicleModeManagementService/CarModeState.py +10 -0
- someip_py/service_interface/V30/VehicleModeManagementService/CarModeSubtype.py +10 -0
- someip_py/service_interface/V30/VehicleModeManagementService/EnergyLevelElectric.py +25 -0
- someip_py/service_interface/V30/VehicleModeManagementService/PowerLevelElectric.py +25 -0
- someip_py/service_interface/V30/VehicleModeManagementService/PowerModeState.py +10 -0
- someip_py/service_interface/V30/WIFIAvailabilityService/AvailabilityStatus.py +10 -0
- someip_py/service_interface/V30/__init__.py +0 -0
- someip_py/service_interface/__init__.py +0 -0
- someip_py/service_interface/config.json +3412 -0
- someip_py/service_interface/fields.json +70 -0
- someip_py/service_interface/pb/Adcu/ADAVPOperService_pb2.py +59 -0
- someip_py/service_interface/pb/Adcu/ADAVPStsService_pb2.py +109 -0
- someip_py/service_interface/pb/Adcu/ADHighDefinitionMapService_pb2.py +45 -0
- someip_py/service_interface/pb/Adcu/ADLocationService_pb2.py +47 -0
- someip_py/service_interface/pb/Adcu/ADNZPUbOperService_pb2.py +101 -0
- someip_py/service_interface/pb/Adcu/ADNZPUbStsService_pb2.py +85 -0
- someip_py/service_interface/pb/Adcu/ADPerceptionService_pb2.py +61 -0
- someip_py/service_interface/pb/Adcu/ADPlanningInfoService_pb2.py +41 -0
- someip_py/service_interface/pb/Adcu/ADSDMapNavigationService_pb2.py +115 -0
- someip_py/service_interface/pb/Adcu/ADStateService_pb2.py +79 -0
- someip_py/service_interface/pb/Adcu/DMSInfoService_pb2.py +41 -0
- someip_py/service_interface/protoc/linux/bin/protoc +0 -0
- someip_py/service_interface/protoc/linux/include/google/protobuf/any.proto +158 -0
- someip_py/service_interface/protoc/linux/include/google/protobuf/api.proto +208 -0
- someip_py/service_interface/protoc/linux/include/google/protobuf/compiler/plugin.proto +183 -0
- someip_py/service_interface/protoc/linux/include/google/protobuf/descriptor.proto +911 -0
- someip_py/service_interface/protoc/linux/include/google/protobuf/duration.proto +116 -0
- someip_py/service_interface/protoc/linux/include/google/protobuf/empty.proto +52 -0
- someip_py/service_interface/protoc/linux/include/google/protobuf/field_mask.proto +245 -0
- someip_py/service_interface/protoc/linux/include/google/protobuf/source_context.proto +48 -0
- someip_py/service_interface/protoc/linux/include/google/protobuf/struct.proto +95 -0
- someip_py/service_interface/protoc/linux/include/google/protobuf/timestamp.proto +147 -0
- someip_py/service_interface/protoc/linux/include/google/protobuf/type.proto +187 -0
- someip_py/service_interface/protoc/linux/include/google/protobuf/wrappers.proto +123 -0
- someip_py/service_interface/protoc/windows/bin/protoc.exe +0 -0
- someip_py/service_interface/protoc/windows/include/google/protobuf/any.proto +161 -0
- someip_py/service_interface/protoc/windows/include/google/protobuf/api.proto +207 -0
- someip_py/service_interface/protoc/windows/include/google/protobuf/compiler/plugin.proto +180 -0
- someip_py/service_interface/protoc/windows/include/google/protobuf/descriptor.proto +1028 -0
- someip_py/service_interface/protoc/windows/include/google/protobuf/duration.proto +115 -0
- someip_py/service_interface/protoc/windows/include/google/protobuf/empty.proto +51 -0
- someip_py/service_interface/protoc/windows/include/google/protobuf/field_mask.proto +245 -0
- someip_py/service_interface/protoc/windows/include/google/protobuf/source_context.proto +48 -0
- someip_py/service_interface/protoc/windows/include/google/protobuf/struct.proto +95 -0
- someip_py/service_interface/protoc/windows/include/google/protobuf/timestamp.proto +144 -0
- someip_py/service_interface/protoc/windows/include/google/protobuf/type.proto +193 -0
- someip_py/service_interface/protoc/windows/include/google/protobuf/wrappers.proto +123 -0
- someip_py/utils.py +155 -0
- someip_py-0.0.1.dist-info/METADATA +38 -0
- someip_py-0.0.1.dist-info/RECORD +388 -0
- someip_py-0.0.1.dist-info/WHEEL +6 -0
- someip_py-0.0.1.dist-info/entry_points.txt +2 -0
- someip_py-0.0.1.dist-info/top_level.txt +1 -0
someip_py/__init__.py
ADDED
someip_py/ci/.gitignore
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
.DS_Store
|
|
2
|
+
.env
|
|
3
|
+
.flaskenv
|
|
4
|
+
*.pyc
|
|
5
|
+
*.pyo
|
|
6
|
+
env/
|
|
7
|
+
venv/
|
|
8
|
+
.venv/
|
|
9
|
+
env*
|
|
10
|
+
dist/
|
|
11
|
+
build/
|
|
12
|
+
*.egg
|
|
13
|
+
*.egg-info/
|
|
14
|
+
.tox/
|
|
15
|
+
.cache/
|
|
16
|
+
.pytest_cache/
|
|
17
|
+
.idea/
|
|
18
|
+
docs/_build/
|
|
19
|
+
.vscode
|
|
20
|
+
__pycache__
|
|
21
|
+
.coverage
|
|
22
|
+
htmlcov
|
|
23
|
+
*.db
|
|
24
|
+
*.sqlite
|
|
25
|
+
x_obfuscate/
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
repos:
|
|
2
|
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
3
|
+
rev: v4.0.1
|
|
4
|
+
hooks:
|
|
5
|
+
- id: check-merge-conflict
|
|
6
|
+
- id: trailing-whitespace
|
|
7
|
+
- id: end-of-file-fixer
|
|
8
|
+
|
|
9
|
+
- repo: https://github.com/pycqa/isort
|
|
10
|
+
rev: 5.11.5
|
|
11
|
+
hooks:
|
|
12
|
+
- id: isort
|
|
13
|
+
args: ["--profile", "black"]
|
|
14
|
+
|
|
15
|
+
- repo: https://github.com/psf/black
|
|
16
|
+
rev: 22.3.0
|
|
17
|
+
hooks:
|
|
18
|
+
- id: black
|
|
19
|
+
|
|
20
|
+
- repo: https://github.com/PyCQA/flake8
|
|
21
|
+
rev: 5.0.4 # cause importlib-metadata==5.0.0 release in 10.1 and remove deprecated endpoint, reference to https://github.com/PyCQA/flake8/issues/1701
|
|
22
|
+
hooks:
|
|
23
|
+
- id: flake8
|
someip_py/ci/MANIFEST.in
ADDED
someip_py/ci/README.md
ADDED
someip_py/ci/setup.cfg
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
[metadata]
|
|
2
|
+
name = someip-py
|
|
3
|
+
version = attr: someip_py.__version__
|
|
4
|
+
description = SOME/IP Libraries
|
|
5
|
+
long_description = file: README.md
|
|
6
|
+
long_description_content_type = text/markdown
|
|
7
|
+
# url = https://github.com/DeanHwd/someip-py
|
|
8
|
+
author = weidong.huang
|
|
9
|
+
maintainer = weidong.huang
|
|
10
|
+
maintainer_email = weidong.huang1229@gmail.com
|
|
11
|
+
platforms = any
|
|
12
|
+
classifiers =
|
|
13
|
+
Development Status :: 5 - Production/Stable
|
|
14
|
+
Intended Audience :: Developers
|
|
15
|
+
Operating System :: MacOS :: MacOS X
|
|
16
|
+
Operating System :: Microsoft :: Windows
|
|
17
|
+
Operating System :: POSIX
|
|
18
|
+
Programming Language :: Python :: 3.7
|
|
19
|
+
Programming Language :: Python :: 3.8
|
|
20
|
+
Programming Language :: Python :: 3.9
|
|
21
|
+
Programming Language :: Python :: 3.10
|
|
22
|
+
Programming Language :: Python :: 3.11
|
|
23
|
+
Programming Language :: Python :: 3.12
|
|
24
|
+
Programming Language :: Python :: Implementation :: CPython
|
|
25
|
+
Programming Language :: Python :: Implementation :: PyPy
|
|
26
|
+
Topic :: Software Development :: Libraries
|
|
27
|
+
Topic :: Software Development :: Testing
|
|
28
|
+
Topic :: Utilities
|
|
29
|
+
keywords = SOME/IP
|
|
30
|
+
project_urls =
|
|
31
|
+
Source = https://github.com/DeanHwd/someip-py
|
|
32
|
+
|
|
33
|
+
[options]
|
|
34
|
+
packages =
|
|
35
|
+
someip_py
|
|
36
|
+
# package_dir =
|
|
37
|
+
# someip_py = x_obfuscate
|
|
38
|
+
python_requires = >=3.7
|
|
39
|
+
include_package_data = True
|
|
40
|
+
install_requires =
|
|
41
|
+
jinja2
|
|
42
|
+
openpyxl
|
|
43
|
+
pandas
|
|
44
|
+
protobuf>=3.18.0,<=3.20.3
|
|
45
|
+
scapy
|
|
46
|
+
setuptools
|
|
47
|
+
|
|
48
|
+
[options.entry_points]
|
|
49
|
+
twine.registered_commands =
|
|
50
|
+
secureupload = someip_py.secure_upload:main
|
|
51
|
+
|
|
52
|
+
[bdist_wheel]
|
|
53
|
+
universal = 1
|
|
54
|
+
|
|
55
|
+
[mypy]
|
|
56
|
+
no_implicit_optional = False
|
someip_py/ci/setup.py
ADDED
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,491 @@
|
|
|
1
|
+
syntax = "proto3";
|
|
2
|
+
|
|
3
|
+
package Adcu.ADAVPOperService;
|
|
4
|
+
|
|
5
|
+
enum Version {
|
|
6
|
+
DEFAULT_VERSION = 0;
|
|
7
|
+
MAJOR_VERSION = 1; // 当对原有数据进行删除或修改时更新
|
|
8
|
+
MINOR_VERSION = 7; // 当新增接口或数据时更新
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
enum MessageId {
|
|
13
|
+
MsgIdDefault = 0;
|
|
14
|
+
|
|
15
|
+
// Frequency: event
|
|
16
|
+
// Comment: 用户选择的导航目的地信息
|
|
17
|
+
MsgIdNavigationTarget = 1;
|
|
18
|
+
|
|
19
|
+
// Frequency: event
|
|
20
|
+
// Comment: Parking交互状态信息
|
|
21
|
+
MsgIdParkingInteractiveStatus = 2;
|
|
22
|
+
|
|
23
|
+
// Frequency: event
|
|
24
|
+
// Comment: 用于传递AVP地图按键命令信息
|
|
25
|
+
MsgIdAVPMapButtonCmd = 3;
|
|
26
|
+
|
|
27
|
+
// Frequency: event
|
|
28
|
+
// Comment: 用于地图管理命令信息
|
|
29
|
+
MsgIdAVPMapManageCmd = 4;
|
|
30
|
+
|
|
31
|
+
// Frequency: event
|
|
32
|
+
// Comment: 用于传递泊车功能按键信息
|
|
33
|
+
MsgIdParkingButtonCmd = 5;
|
|
34
|
+
|
|
35
|
+
// Frequency: event
|
|
36
|
+
// Comment: 用于发送附近的POI信息
|
|
37
|
+
MsgIdPoiInfo = 6;
|
|
38
|
+
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
message NavigationTarget {
|
|
42
|
+
// 枚举: NavigationTargetType
|
|
43
|
+
// 0: 无效
|
|
44
|
+
// 1: 地图中车位
|
|
45
|
+
// 2: 地图中位置点
|
|
46
|
+
// 3: 地图中的线路
|
|
47
|
+
// 4: 预留
|
|
48
|
+
// 5: 预留
|
|
49
|
+
// DefaultValue: 0
|
|
50
|
+
// Description: 导航目标类型
|
|
51
|
+
uint32 NavigationTargetType = 1;
|
|
52
|
+
|
|
53
|
+
// DefaultValue: 0
|
|
54
|
+
// Description: 导航目标车位Id
|
|
55
|
+
uint32 NavigationTargetSlotId = 2;
|
|
56
|
+
|
|
57
|
+
// DefaultValue: (0,0,0)
|
|
58
|
+
// Description: 导航目标位置点
|
|
59
|
+
CoordinateSys NavigationTargetPoint = 3;
|
|
60
|
+
|
|
61
|
+
// DefaultValue: 0
|
|
62
|
+
// Description: 导航目标线路Id
|
|
63
|
+
uint32 NavigationLineId = 4;
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
message CoordinateSys {
|
|
67
|
+
// Description: 3D坐标系x轴坐标
|
|
68
|
+
// Unit: mm
|
|
69
|
+
int32 CoordinateX = 1;
|
|
70
|
+
|
|
71
|
+
// Description: 3D坐标系y轴坐标
|
|
72
|
+
// Unit: mm
|
|
73
|
+
int32 CoordinateY = 2;
|
|
74
|
+
|
|
75
|
+
// Description: 3D坐标系z轴坐标
|
|
76
|
+
// Unit: mm
|
|
77
|
+
int32 CoordinateZ = 3;
|
|
78
|
+
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
}
|
|
82
|
+
message ParkingInteractiveStatus {
|
|
83
|
+
// 枚举: PrkgInterSts
|
|
84
|
+
// 0: 无效
|
|
85
|
+
// 1: 关闭地锁
|
|
86
|
+
// 2: 打开地锁
|
|
87
|
+
// 3: 地锁异常
|
|
88
|
+
// 4: 充电插枪
|
|
89
|
+
// 5: 充电拔枪
|
|
90
|
+
// 6: 充电异常
|
|
91
|
+
// 7: 查询目的地车位
|
|
92
|
+
// 8: 预留
|
|
93
|
+
// 9: 预留
|
|
94
|
+
// DefaultValue: 0
|
|
95
|
+
// Description: 状态
|
|
96
|
+
uint32 PrkgInterSts = 1;
|
|
97
|
+
|
|
98
|
+
// DefaultValue: 0
|
|
99
|
+
// Description: 交互对象ID
|
|
100
|
+
uint32 PrkgInterID = 2;
|
|
101
|
+
|
|
102
|
+
// DefaultValue: 0
|
|
103
|
+
// Description: 场站ID
|
|
104
|
+
uint32 PrkgStationID = 3;
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
}
|
|
108
|
+
message AVPMapButtonCmd {
|
|
109
|
+
// 枚举: MapButtonCmdType
|
|
110
|
+
// 0: 无效
|
|
111
|
+
// 1: 进入前台建图
|
|
112
|
+
// 2: 退出前台建图
|
|
113
|
+
// 3: 更新地图
|
|
114
|
+
// 4: 生成地图
|
|
115
|
+
// 5: 不生成地图
|
|
116
|
+
// 6: 打开地图
|
|
117
|
+
// 7: 忽略
|
|
118
|
+
// 8: 退出导航
|
|
119
|
+
// 9: 打开AVP
|
|
120
|
+
// 10: 退出AVP
|
|
121
|
+
// 11: 去无人充电
|
|
122
|
+
// 12: 去无人泊车
|
|
123
|
+
// 13:Re-AVP Back To AVP
|
|
124
|
+
// 14:Exit Re-AVP
|
|
125
|
+
// 15: 取消重规划路线
|
|
126
|
+
// 16: Reserved
|
|
127
|
+
// DefaultValue: 0
|
|
128
|
+
// Description: 地图按键命令
|
|
129
|
+
// Unit: /
|
|
130
|
+
uint32 MapButtonCmdType = 1;
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
}
|
|
134
|
+
message AVPMapManageCmd {
|
|
135
|
+
message CoordinateSys {
|
|
136
|
+
// Description: 3D坐标系x轴坐标
|
|
137
|
+
// Unit: mm
|
|
138
|
+
int32 CoordinateX = 1;
|
|
139
|
+
|
|
140
|
+
// Description: 3D坐标系y轴坐标
|
|
141
|
+
// Unit: mm
|
|
142
|
+
int32 CoordinateY = 2;
|
|
143
|
+
|
|
144
|
+
// Description: 3D坐标系z轴坐标
|
|
145
|
+
// Unit: mm
|
|
146
|
+
int32 CoordinateZ = 3;
|
|
147
|
+
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
// 枚举: MapManageCmdType
|
|
151
|
+
// 1: 查询地图信息
|
|
152
|
+
// 2: 新增收藏的地图(可包括目的地)
|
|
153
|
+
// 3: 编辑更新收藏的地图(可包括目的地)
|
|
154
|
+
// 4: 删除收藏的地图(包括目的地)
|
|
155
|
+
// 5: 新增收藏的目的地
|
|
156
|
+
// 6: 编辑更新收藏的目的地
|
|
157
|
+
// 7: 删除收藏的目的地
|
|
158
|
+
// 8: 选中地图
|
|
159
|
+
// 9: 取消自动匹配地图
|
|
160
|
+
// 10: 基于使用时间排序
|
|
161
|
+
// 11: 基于生效时间排序
|
|
162
|
+
// DefaultValue: 0
|
|
163
|
+
// Description: 地图管理命令类型
|
|
164
|
+
// Unit: /
|
|
165
|
+
uint32 MapManageCmdType = 1;
|
|
166
|
+
|
|
167
|
+
// Description: AVP收藏的地图新增/更新信息
|
|
168
|
+
repeated AVPCollectedMap MapUpdateInfo = 2;
|
|
169
|
+
|
|
170
|
+
// DefaultValue: 0
|
|
171
|
+
// Description: AVP收藏的地图删除命令
|
|
172
|
+
repeated uint32 MapDeleteCmd = 3;
|
|
173
|
+
|
|
174
|
+
// Description: AVP收藏的目的地新增/更新信息
|
|
175
|
+
repeated AVPCollectedDestination DestinationUpdateInfo = 4;
|
|
176
|
+
|
|
177
|
+
// DefaultValue: 0
|
|
178
|
+
// Description: AVP收藏的目的地删除命令
|
|
179
|
+
repeated uint32 DestinationDeleteCmd = 5;
|
|
180
|
+
|
|
181
|
+
// 枚举: DestinationTypeDeleteCmd
|
|
182
|
+
// 0: 无效
|
|
183
|
+
// 1: 地图中车位
|
|
184
|
+
// 2: 地图中位置点
|
|
185
|
+
// 3: 地图中的线路
|
|
186
|
+
// 4: 自车位置
|
|
187
|
+
// 5: 预留
|
|
188
|
+
// DefaultValue: 0
|
|
189
|
+
// Description: AVP收藏的目的地目标类型删除命令
|
|
190
|
+
uint32 DestinationTypeDeleteCmd = 6;
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
message AVPCollectedMap {
|
|
194
|
+
// DefaultValue: 0
|
|
195
|
+
// Description: 收藏的地图唯一Id
|
|
196
|
+
uint32 MapId = 1;
|
|
197
|
+
|
|
198
|
+
// Description: 停车场地图信息
|
|
199
|
+
string MapName = 2;
|
|
200
|
+
|
|
201
|
+
// DefaultValue: 0
|
|
202
|
+
// Description: 地图中收藏目的地数目
|
|
203
|
+
uint32 DestinationNum = 3;
|
|
204
|
+
|
|
205
|
+
// Description: 目的地列表
|
|
206
|
+
repeated AVPCollectedDestination DestinationList = 4;
|
|
207
|
+
|
|
208
|
+
// DefaultValue: 0
|
|
209
|
+
// Description: 收藏的地图时间戳
|
|
210
|
+
uint64 MapLearningTime = 5;
|
|
211
|
+
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
message AVPCollectedDestination {
|
|
215
|
+
// 枚举: CollectedDestinationType
|
|
216
|
+
// 0: 无效
|
|
217
|
+
// 1: 地图中车位
|
|
218
|
+
// 2: 地图中位置点
|
|
219
|
+
// 3: 地图中的线路
|
|
220
|
+
// 4: 自车位置
|
|
221
|
+
// 5: 预留
|
|
222
|
+
// DefaultValue: 0
|
|
223
|
+
// Description: 目的地目标类型
|
|
224
|
+
uint32 CollectedDestinationType = 1;
|
|
225
|
+
|
|
226
|
+
// DefaultValue: 0
|
|
227
|
+
// Description: 目的地车位Id
|
|
228
|
+
uint32 CollectedDestinationSlotId = 2;
|
|
229
|
+
|
|
230
|
+
// DefaultValue: (0,0,0)
|
|
231
|
+
// Description: 目的地位置点
|
|
232
|
+
CoordinateSys CollectedDestinationPoint = 3;
|
|
233
|
+
|
|
234
|
+
// DefaultValue: 0
|
|
235
|
+
// Description: 目的地所在楼层
|
|
236
|
+
int32 CollectedDestinationFloorLevel = 4;
|
|
237
|
+
|
|
238
|
+
// DefaultValue: 0
|
|
239
|
+
// Description: 目的地线路Id
|
|
240
|
+
uint32 CollectedDestinationLineId = 5;
|
|
241
|
+
|
|
242
|
+
// 枚举: CollectedDestinationPriority
|
|
243
|
+
// 0: invalid
|
|
244
|
+
// 1: Top Priority
|
|
245
|
+
// 2: Second Priority
|
|
246
|
+
// 3: Third Priority
|
|
247
|
+
// 4: 预留
|
|
248
|
+
// 5: 预留
|
|
249
|
+
// DefaultValue: 0
|
|
250
|
+
// Description: 目的地默认推荐优先级
|
|
251
|
+
uint32 CollectedDestinationPriority = 6;
|
|
252
|
+
|
|
253
|
+
// Description: 目的地所在停车场地图Id
|
|
254
|
+
uint32 CollectedParkMapId = 7;
|
|
255
|
+
|
|
256
|
+
// Description: 目的地名称
|
|
257
|
+
string CollectedDestinationName = 8;
|
|
258
|
+
|
|
259
|
+
// Description: 目的地标签
|
|
260
|
+
string CollectedDestinationLabel = 9;
|
|
261
|
+
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
}
|
|
265
|
+
message ParkingButtonCmd {
|
|
266
|
+
// DefaultValue: 0
|
|
267
|
+
// Description: 用户点击的非可用车位ID
|
|
268
|
+
uint32 DriverSelectNotAvailableSlotID = 1;
|
|
269
|
+
|
|
270
|
+
// 枚举: ApaSlelectedDirection
|
|
271
|
+
// 0:无效(默认)
|
|
272
|
+
// 1:车头泊出向左
|
|
273
|
+
// 2:车头泊出向前
|
|
274
|
+
// 3:车头泊出向右
|
|
275
|
+
// 4:车尾泊出向左
|
|
276
|
+
// 5:车尾泊出向后
|
|
277
|
+
// 6:车尾泊出向右
|
|
278
|
+
// 7:水平向左泊出
|
|
279
|
+
// 8:水平向右泊出
|
|
280
|
+
// 9:预留
|
|
281
|
+
// 10:预留
|
|
282
|
+
// DefaultValue: 0
|
|
283
|
+
// Description: APA用户选择的泊出方向
|
|
284
|
+
uint32 ApaSlelectedDirection = 2;
|
|
285
|
+
|
|
286
|
+
// 枚举: AutPrkgVoiceSwt
|
|
287
|
+
// 0: OnOff1_Off
|
|
288
|
+
// 1: OnOff1_On
|
|
289
|
+
// DefaultValue: 0
|
|
290
|
+
// Description: APA voice control switch
|
|
291
|
+
uint32 AutPrkgVoiceSwt = 3;
|
|
292
|
+
|
|
293
|
+
// 枚举: AutPrkgVoiceTyp
|
|
294
|
+
// 0 = VoiceTyp10_NoReq
|
|
295
|
+
// 1 = VoiceTyp10_Simple
|
|
296
|
+
// 2 = VoiceTyp10_Middle
|
|
297
|
+
// 3 = VoiceTyp10_Complex
|
|
298
|
+
// DefaultValue: 0
|
|
299
|
+
// Description: APA voice control type
|
|
300
|
+
uint32 AutPrkgVoiceTyp = 4;
|
|
301
|
+
|
|
302
|
+
// 枚举: DrvrAsscWisdomBtn
|
|
303
|
+
// 0 = DrvrAsscWisdomBtn_Idle
|
|
304
|
+
// 1 = DrvrAsscWisdomBtn_LeftIn
|
|
305
|
+
// 2 = DrvrAsscWisdomBtn_RightIn
|
|
306
|
+
// 3 = DrvrAsscWisdomBtn_MiddleIn
|
|
307
|
+
// 4 = DrvrAsscWisdomBtn_APASuspensionball
|
|
308
|
+
// DefaultValue: 0
|
|
309
|
+
// Description: APA Wisdom parking in button
|
|
310
|
+
uint32 DrvrAsscWisdomBtn = 5;
|
|
311
|
+
|
|
312
|
+
// 枚举: PrkgInOrOutAndCncl
|
|
313
|
+
// 0 = PrkgInOrOutAndCncl1_Default
|
|
314
|
+
// 1 = PrkgInOrOutAndCncl1_ParkingIn
|
|
315
|
+
// 2 = PrkgInOrOutAndCncl1_ParkingOut
|
|
316
|
+
// 3 = PrkgInOrOutAndCncl1_Cancel
|
|
317
|
+
// DefaultValue: 0
|
|
318
|
+
// Description: cancel park in and park out.
|
|
319
|
+
uint32 PrkgInOrOutAndCncl = 6;
|
|
320
|
+
|
|
321
|
+
// 枚举: PrkgFctSwt
|
|
322
|
+
// 0 = SwtReq2_NoReq
|
|
323
|
+
// 1 = SwtReq2_AutomaticParkingButtonInAVM
|
|
324
|
+
// 2 = SwtReq2_VisualParkButtonInAPA
|
|
325
|
+
// DefaultValue: 0
|
|
326
|
+
// Description: Switch parking functions
|
|
327
|
+
uint32 PrkgFctSwt = 7;
|
|
328
|
+
|
|
329
|
+
// 枚举: LSDANotifPushReq
|
|
330
|
+
// 0 = OnOff1_Off
|
|
331
|
+
// 1 = OnOff1_On
|
|
332
|
+
// DefaultValue: 0
|
|
333
|
+
// Description: User set whether approve push LSDA on APA
|
|
334
|
+
uint32 LSDANotifPushReq = 8;
|
|
335
|
+
|
|
336
|
+
// 枚举: LoSpdDrvgAssiShoPushResp
|
|
337
|
+
// 0 = CmdType1_Idle
|
|
338
|
+
// 1 = CmdType1_Confirm
|
|
339
|
+
// 2 = CmdType1_Cancel
|
|
340
|
+
// 3 = CmdType1_NoMoreReminder
|
|
341
|
+
// DefaultValue: 0
|
|
342
|
+
// Description: AVP short distance push notification response
|
|
343
|
+
uint32 LoSpdDrvgAssiShoPushResp = 9;
|
|
344
|
+
|
|
345
|
+
// 枚举: LoSpdDrvgAssiSwt
|
|
346
|
+
// 0 = AssiSwt_NoReq
|
|
347
|
+
// 1 = AssiSwt_Enter
|
|
348
|
+
// 2 = AssiSwt_Exit
|
|
349
|
+
// DefaultValue: 0
|
|
350
|
+
// Description: LSDA function switchs
|
|
351
|
+
uint32 LoSpdDrvgAssiSwt = 10;
|
|
352
|
+
|
|
353
|
+
// 枚举: PrkgFrntOrReSelect
|
|
354
|
+
// 0 = None
|
|
355
|
+
// 1 = Frnt
|
|
356
|
+
// 2 = Rear
|
|
357
|
+
// 3 = Both
|
|
358
|
+
// DefaultValue: 0
|
|
359
|
+
// Description: PrkgFrntOrReSelect
|
|
360
|
+
uint32 PrkgFrntOrReSelect = 11;
|
|
361
|
+
|
|
362
|
+
// 枚举: PdcMuteBtnReq
|
|
363
|
+
// 0 = OnOffNoReq_NoReq
|
|
364
|
+
// 1 = OnOffNoReq_On
|
|
365
|
+
// 2 = OnOffNoReq_Off
|
|
366
|
+
// DefaultValue: 0
|
|
367
|
+
// Description: PDC Mute button
|
|
368
|
+
uint32 PdcMuteBtnReq = 12;
|
|
369
|
+
|
|
370
|
+
// 枚举: PrkgDstCtrlReq
|
|
371
|
+
// 0: No request
|
|
372
|
+
// 1: User clicks on
|
|
373
|
+
// 2: User clicks off
|
|
374
|
+
// DefaultValue: 0
|
|
375
|
+
// Description: Request to enter/exit PDC interface
|
|
376
|
+
uint32 PrkgDstCtrlReq = 13;
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
}
|
|
380
|
+
message PoiInfo {
|
|
381
|
+
// DefaultValue: 0
|
|
382
|
+
// Description: 任务Id
|
|
383
|
+
// Unit: /
|
|
384
|
+
uint64 TaskId = 1;
|
|
385
|
+
|
|
386
|
+
// DefaultValue: /
|
|
387
|
+
// Description: POI列表
|
|
388
|
+
// Unit: /
|
|
389
|
+
repeated ADPoiInfo PoiList = 2;
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
message ADPoiInfo {
|
|
393
|
+
// DefaultValue: /
|
|
394
|
+
// Description: POI基础信息
|
|
395
|
+
// Unit: /
|
|
396
|
+
ADPoiBasicInfo Basic = 1;
|
|
397
|
+
|
|
398
|
+
// DefaultValue: /
|
|
399
|
+
// Description: 权重
|
|
400
|
+
// Unit: /
|
|
401
|
+
string Weight = 2;
|
|
402
|
+
|
|
403
|
+
// DefaultValue: 0
|
|
404
|
+
// Description: 城市码
|
|
405
|
+
// Unit: /
|
|
406
|
+
int32 CityAdCode = 3;
|
|
407
|
+
|
|
408
|
+
// DefaultValue: 0
|
|
409
|
+
// Description: 区域码
|
|
410
|
+
// Unit: /
|
|
411
|
+
int32 AdCode = 4;
|
|
412
|
+
|
|
413
|
+
// DefaultValue: /
|
|
414
|
+
// Description: 子POI列表
|
|
415
|
+
// Unit: /
|
|
416
|
+
repeated ADPoiChildInfo ChildrenList = 5;
|
|
417
|
+
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
message ADPoiBasicInfo {
|
|
421
|
+
// DefaultValue: /
|
|
422
|
+
// Description: ID
|
|
423
|
+
// Unit: /
|
|
424
|
+
string PoiId = 1;
|
|
425
|
+
|
|
426
|
+
// DefaultValue: /
|
|
427
|
+
// Description: Name
|
|
428
|
+
// Unit: /
|
|
429
|
+
string Name = 2;
|
|
430
|
+
|
|
431
|
+
// DefaultValue: /
|
|
432
|
+
// Description: Address
|
|
433
|
+
// Unit: /
|
|
434
|
+
string Address = 3;
|
|
435
|
+
|
|
436
|
+
// DefaultValue: /
|
|
437
|
+
// Description: POI的经纬度
|
|
438
|
+
// Unit: /
|
|
439
|
+
Pos2D PoiLoc = 4;
|
|
440
|
+
|
|
441
|
+
// DefaultValue: 0
|
|
442
|
+
// Description: POI的距离
|
|
443
|
+
// Unit: 米
|
|
444
|
+
uint32 Distance = 5;
|
|
445
|
+
|
|
446
|
+
// DefaultValue: /
|
|
447
|
+
// Description: 类型码
|
|
448
|
+
// Unit: /
|
|
449
|
+
string TypeCode = 6;
|
|
450
|
+
|
|
451
|
+
// DefaultValue: /
|
|
452
|
+
// Description: 类型
|
|
453
|
+
// Unit: /
|
|
454
|
+
string Type = 7;
|
|
455
|
+
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
message Pos2D {
|
|
459
|
+
// Range: [-180,180]
|
|
460
|
+
// DefaultValue: 0:默认值
|
|
461
|
+
// Description: 经度(GJC-02)
|
|
462
|
+
// Unit: 单位:度
|
|
463
|
+
double LongitudePos2D = 1;
|
|
464
|
+
|
|
465
|
+
// Range: [-90,90]
|
|
466
|
+
// DefaultValue: 0:默认值
|
|
467
|
+
// Description: 纬度(GJC-02)
|
|
468
|
+
// Unit: 单位:度
|
|
469
|
+
double LatitudePos2D = 2;
|
|
470
|
+
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
message ADPoiChildInfo {
|
|
474
|
+
// DefaultValue: /
|
|
475
|
+
// Description: POI基础信息
|
|
476
|
+
// Unit: /
|
|
477
|
+
ADPoiBasicInfo Basic = 1;
|
|
478
|
+
|
|
479
|
+
// DefaultValue: /
|
|
480
|
+
// Description: ID
|
|
481
|
+
// Unit: /
|
|
482
|
+
string PPoiId = 2;
|
|
483
|
+
|
|
484
|
+
// DefaultValue: /
|
|
485
|
+
// Description: 关系类型
|
|
486
|
+
// Unit: /
|
|
487
|
+
string RelType = 3;
|
|
488
|
+
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
}
|