@dronedeploy/rocos-js-sdk 0.0.1 → 2.6.1
Sign up to get free protection for your applications and to get access to all the features.
- package/IRocosSDK.d.ts +55 -0
- package/IRocosSDK.js +6 -0
- package/README.md +90 -0
- package/RocosSDK.d.ts +138 -0
- package/RocosSDK.js +294 -0
- package/api/StreamRegister.d.ts +13 -0
- package/api/StreamRegister.js +58 -0
- package/api/atoms/StreamHeartbeat.d.ts +27 -0
- package/api/atoms/StreamHeartbeat.js +115 -0
- package/api/streams/caller/CallerStream.d.ts +13 -0
- package/api/streams/caller/CallerStream.js +85 -0
- package/api/streams/caller/CallerStreamAbstract.d.ts +28 -0
- package/api/streams/caller/CallerStreamAbstract.js +99 -0
- package/api/streams/caller/CallerStreamNode.d.ts +13 -0
- package/api/streams/caller/CallerStreamNode.js +128 -0
- package/api/streams/command/CommandStream.d.ts +12 -0
- package/api/streams/command/CommandStream.js +68 -0
- package/api/streams/command/CommandStreamAbstract.d.ts +24 -0
- package/api/streams/command/CommandStreamAbstract.js +72 -0
- package/api/streams/command/CommandStreamNode.d.ts +12 -0
- package/api/streams/command/CommandStreamNode.js +93 -0
- package/api/streams/control/ControlStream.d.ts +14 -0
- package/api/streams/control/ControlStream.js +81 -0
- package/api/streams/control/ControlStreamAbstract.d.ts +28 -0
- package/api/streams/control/ControlStreamAbstract.js +108 -0
- package/api/streams/control/ControlStreamNode.d.ts +14 -0
- package/api/streams/control/ControlStreamNode.js +98 -0
- package/api/streams/fileAccessor/FileAccessorStream.d.ts +10 -0
- package/api/streams/fileAccessor/FileAccessorStream.js +74 -0
- package/api/streams/fileAccessor/FileAccessorStreamAbstract.d.ts +26 -0
- package/api/streams/fileAccessor/FileAccessorStreamAbstract.js +82 -0
- package/api/streams/fileAccessor/FileAccessorStreamNode.d.ts +10 -0
- package/api/streams/fileAccessor/FileAccessorStreamNode.js +96 -0
- package/api/streams/search/SearchStream.d.ts +16 -0
- package/api/streams/search/SearchStream.js +120 -0
- package/api/streams/search/SearchStreamAbstract.d.ts +30 -0
- package/api/streams/search/SearchStreamAbstract.js +74 -0
- package/api/streams/search/SearchStreamNode.d.ts +16 -0
- package/api/streams/search/SearchStreamNode.js +143 -0
- package/api/streams/telemetry/TelemetryStream.d.ts +17 -0
- package/api/streams/telemetry/TelemetryStream.js +126 -0
- package/api/streams/telemetry/TelemetryStreamAbstract.d.ts +62 -0
- package/api/streams/telemetry/TelemetryStreamAbstract.js +421 -0
- package/api/streams/telemetry/TelemetryStreamNode.d.ts +21 -0
- package/api/streams/telemetry/TelemetryStreamNode.js +195 -0
- package/api/streams/webRTCSignalling/WebRTCSignallingStream.d.ts +44 -0
- package/api/streams/webRTCSignalling/WebRTCSignallingStream.js +67 -0
- package/api/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.d.ts +32 -0
- package/api/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.js +65 -0
- package/constants/api.d.ts +121 -0
- package/constants/api.js +126 -0
- package/constants/grpc.d.ts +5 -0
- package/constants/grpc.js +8 -0
- package/constants/identifier.d.ts +6 -0
- package/constants/identifier.js +9 -0
- package/constants/timezones.d.ts +2 -0
- package/constants/timezones.js +430 -0
- package/demo/angular/.editorconfig +16 -0
- package/demo/angular/.eslintignore +4 -0
- package/demo/angular/.eslintrc.json +50 -0
- package/demo/angular/README.md +36 -0
- package/demo/angular/angular.json +132 -0
- package/demo/angular/karma.conf.js +44 -0
- package/demo/angular/package.json +41 -0
- package/demo/angular/src/app/app.component.css +0 -0
- package/demo/angular/src/app/app.component.html +9 -0
- package/demo/angular/src/app/app.component.ts +10 -0
- package/demo/angular/src/app/app.module.ts +38 -0
- package/demo/angular/src/app/components/assets/assets.component.css +0 -0
- package/demo/angular/src/app/components/assets/assets.component.html +29 -0
- package/demo/angular/src/app/components/assets/assets.component.ts +107 -0
- package/demo/angular/src/app/components/auth/auth.component.css +0 -0
- package/demo/angular/src/app/components/auth/auth.component.html +27 -0
- package/demo/angular/src/app/components/auth/auth.component.ts +33 -0
- package/demo/angular/src/app/components/caller/caller.component.css +0 -0
- package/demo/angular/src/app/components/caller/caller.component.html +22 -0
- package/demo/angular/src/app/components/caller/caller.component.ts +61 -0
- package/demo/angular/src/app/components/command/command.component.css +0 -0
- package/demo/angular/src/app/components/command/command.component.html +22 -0
- package/demo/angular/src/app/components/command/command.component.ts +60 -0
- package/demo/angular/src/app/components/integrations/integrations.component.ts +43 -0
- package/demo/angular/src/app/components/robots/robots.component.css +0 -0
- package/demo/angular/src/app/components/robots/robots.component.html +13 -0
- package/demo/angular/src/app/components/robots/robots.component.ts +26 -0
- package/demo/angular/src/app/components/sdk/sdk.component.css +0 -0
- package/demo/angular/src/app/components/sdk/sdk.component.html +43 -0
- package/demo/angular/src/app/components/sdk/sdk.component.ts +50 -0
- package/demo/angular/src/app/components/subscription/subscription.component.css +0 -0
- package/demo/angular/src/app/components/subscription/subscription.component.html +6 -0
- package/demo/angular/src/app/components/subscription/subscription.component.ts +40 -0
- package/demo/angular/src/app/components/telemetry/telemetry.component.css +0 -0
- package/demo/angular/src/app/components/telemetry/telemetry.component.html +19 -0
- package/demo/angular/src/app/components/telemetry/telemetry.component.ts +61 -0
- package/demo/angular/src/app/components/token/token.component.css +0 -0
- package/demo/angular/src/app/components/token/token.component.html +10 -0
- package/demo/angular/src/app/components/token/token.component.ts +18 -0
- package/demo/angular/src/app/components/video/p2pvideo/index.ts +646 -0
- package/demo/angular/src/app/components/video/video-source.ts +315 -0
- package/demo/angular/src/app/components/video/video.component.css +6 -0
- package/demo/angular/src/app/components/video/video.component.html +54 -0
- package/demo/angular/src/app/components/video/video.component.ts +151 -0
- package/demo/angular/src/app/services/sdk.service.ts +193 -0
- package/demo/angular/src/assets/.gitkeep +0 -0
- package/demo/angular/src/assets/HKGrotesk-Bold.otf +0 -0
- package/demo/angular/src/assets/HKGrotesk-Regular.otf +0 -0
- package/demo/angular/src/assets/logo.svg +16 -0
- package/demo/angular/src/environments/environment.prod.ts +3 -0
- package/demo/angular/src/environments/environment.ts +16 -0
- package/demo/angular/src/favicon.ico +0 -0
- package/demo/angular/src/index.html +15 -0
- package/demo/angular/src/main.ts +7 -0
- package/demo/angular/src/polyfills.ts +53 -0
- package/demo/angular/src/styles.css +198 -0
- package/demo/angular/tsconfig.app.json +15 -0
- package/demo/angular/tsconfig.json +39 -0
- package/demo/html/README.md +8 -0
- package/demo/html/assets/HKGrotesk-Bold.otf +0 -0
- package/demo/html/assets/HKGrotesk-Regular.otf +0 -0
- package/demo/html/assets/logo.svg +16 -0
- package/demo/html/favicon.ico +0 -0
- package/demo/html/index.html +416 -0
- package/demo/html/rocos-js-sdk.js +3 -0
- package/demo/html/rocos-js-sdk.js.LICENSE.txt +8 -0
- package/demo/html/rocos-js-sdk.js.map +1 -0
- package/demo/html/styles.css +190 -0
- package/demo/node/README.md +17 -0
- package/demo/node/index.js +134 -0
- package/demo/node/package.json +8 -0
- package/demo/react/.env +1 -0
- package/demo/react/.env.dist +1 -0
- package/demo/react/.eslintrc.json +46 -0
- package/demo/react/README.md +65 -0
- package/demo/react/package.json +60 -0
- package/demo/react/public/favicon.ico +0 -0
- package/demo/react/public/index.html +43 -0
- package/demo/react/public/logo192.png +0 -0
- package/demo/react/public/logo512.png +0 -0
- package/demo/react/public/manifest.json +25 -0
- package/demo/react/public/robots.txt +3 -0
- package/demo/react/src/App.css +190 -0
- package/demo/react/src/App.tsx +31 -0
- package/demo/react/src/actions/index.ts +8 -0
- package/demo/react/src/actions/sdkActions.ts +62 -0
- package/demo/react/src/assets/HKGrotesk-Bold.otf +0 -0
- package/demo/react/src/assets/HKGrotesk-Regular.otf +0 -0
- package/demo/react/src/assets/logo.svg +16 -0
- package/demo/react/src/components/AuthForm.tsx +76 -0
- package/demo/react/src/components/CallerBox.tsx +53 -0
- package/demo/react/src/components/CallerForm.tsx +98 -0
- package/demo/react/src/components/CommandBox.tsx +47 -0
- package/demo/react/src/components/CommandForm.tsx +98 -0
- package/demo/react/src/components/RobotsForm.tsx +51 -0
- package/demo/react/src/components/SubscriptionBox.tsx +55 -0
- package/demo/react/src/components/TelemetryForm.tsx +98 -0
- package/demo/react/src/components/TokenForm.tsx +39 -0
- package/demo/react/src/config.json +14 -0
- package/demo/react/src/controllers/RocosSDKController.ts +48 -0
- package/demo/react/src/helpers/deepEqual.ts +27 -0
- package/demo/react/src/hooks/useInput.ts +29 -0
- package/demo/react/src/index.css +11 -0
- package/demo/react/src/index.tsx +26 -0
- package/demo/react/src/react-app-env.d.ts +1 -0
- package/demo/react/src/reducers/sdkReducer.ts +133 -0
- package/demo/react/src/reportWebVitals.ts +15 -0
- package/demo/react/src/selectors/sdkSelector.ts +11 -0
- package/demo/react/src/setupTests.ts +5 -0
- package/demo/react/src/store.ts +14 -0
- package/demo/react/tsconfig.json +26 -0
- package/demo/sdk-sizer/dist/sdk-sizer/3rdpartylicenses.txt +975 -0
- package/demo/sdk-sizer/dist/sdk-sizer/favicon.ico +0 -0
- package/demo/sdk-sizer/dist/sdk-sizer/index.html +12 -0
- package/demo/sdk-sizer/dist/sdk-sizer/main.c9183649ce1856ef.js +2 -0
- package/demo/sdk-sizer/dist/sdk-sizer/main.c9183649ce1856ef.js.map +1 -0
- package/demo/sdk-sizer/dist/sdk-sizer/polyfills.701c8e5d007909aa.js +2 -0
- package/demo/sdk-sizer/dist/sdk-sizer/polyfills.701c8e5d007909aa.js.map +1 -0
- package/demo/sdk-sizer/dist/sdk-sizer/runtime.00e20e689f5284a8.js +2 -0
- package/demo/sdk-sizer/dist/sdk-sizer/runtime.00e20e689f5284a8.js.map +1 -0
- package/demo/sdk-sizer/dist/sdk-sizer/stats.json +1 -0
- package/demo/sdk-sizer/dist/sdk-sizer/styles.b45f7e627ac8cbce.css +2 -0
- package/demo/sdk-sizer/dist/sdk-sizer/styles.b45f7e627ac8cbce.css.map +1 -0
- package/grpc/file-accessor/filagree_grpc_pb.d.ts +41 -0
- package/grpc/file-accessor/filagree_grpc_pb.js +121 -0
- package/grpc/file-accessor/filagree_pb.d.ts +339 -0
- package/grpc/file-accessor/filagree_pb.js +2261 -0
- package/grpc/file-accessor/filagree_pb_service.d.ts +115 -0
- package/grpc/file-accessor/filagree_pb_service.js +257 -0
- package/grpc/rambo/rambo.v1_grpc_pb.d.ts +39 -0
- package/grpc/rambo/rambo.v1_grpc_pb.js +73 -0
- package/grpc/rambo/rambo.v1_pb.d.ts +365 -0
- package/grpc/rambo/rambo.v1_pb.js +2469 -0
- package/grpc/rambo/rambo.v1_pb_service.d.ts +76 -0
- package/grpc/rambo/rambo.v1_pb_service.js +138 -0
- package/grpc/rambo/uri.v1_grpc_pb.d.ts +1 -0
- package/grpc/rambo/uri.v1_grpc_pb.js +1 -0
- package/grpc/rambo/uri.v1_pb.d.ts +80 -0
- package/grpc/rambo/uri.v1_pb.js +563 -0
- package/grpc/rambo/uri.v1_pb_service.d.ts +3 -0
- package/grpc/rambo/uri.v1_pb_service.js +3 -0
- package/grpc/robot-control/conker_grpc_pb.d.ts +46 -0
- package/grpc/robot-control/conker_grpc_pb.js +143 -0
- package/grpc/robot-control/conker_pb.d.ts +168 -0
- package/grpc/robot-control/conker_pb.js +1287 -0
- package/grpc/robot-control/conker_pb_service.d.ts +126 -0
- package/grpc/robot-control/conker_pb_service.js +301 -0
- package/grpc/serviette/common.v1_grpc_pb.d.ts +1 -0
- package/grpc/serviette/common.v1_grpc_pb.js +1 -0
- package/grpc/serviette/common.v1_pb.d.ts +8 -0
- package/grpc/serviette/common.v1_pb.js +45 -0
- package/grpc/serviette/common.v1_pb_service.d.ts +3 -0
- package/grpc/serviette/common.v1_pb_service.js +3 -0
- package/grpc/serviette/serviette.v1_grpc_pb.d.ts +137 -0
- package/grpc/serviette/serviette.v1_grpc_pb.js +331 -0
- package/grpc/serviette/serviette.v1_pb.d.ts +884 -0
- package/grpc/serviette/serviette.v1_pb.js +6363 -0
- package/grpc/serviette/serviette.v1_pb_service.d.ts +278 -0
- package/grpc/serviette/serviette.v1_pb_service.js +699 -0
- package/grpc/serviette/uri.v1_grpc_pb.d.ts +1 -0
- package/grpc/serviette/uri.v1_grpc_pb.js +1 -0
- package/grpc/serviette/uri.v1_pb.d.ts +102 -0
- package/grpc/serviette/uri.v1_pb.js +741 -0
- package/grpc/serviette/uri.v1_pb_service.d.ts +3 -0
- package/grpc/serviette/uri.v1_pb_service.js +3 -0
- package/grpc/slowlane/slowlane_grpc_pb.d.ts +38 -0
- package/grpc/slowlane/slowlane_grpc_pb.js +132 -0
- package/grpc/slowlane/slowlane_pb.d.ts +373 -0
- package/grpc/slowlane/slowlane_pb.js +2908 -0
- package/grpc/slowlane/slowlane_pb_service.d.ts +112 -0
- package/grpc/slowlane/slowlane_pb_service.js +189 -0
- package/grpc/teletubby/teletubby_grpc_pb.d.ts +73 -0
- package/grpc/teletubby/teletubby_grpc_pb.js +231 -0
- package/grpc/teletubby/teletubby_pb.d.ts +647 -0
- package/grpc/teletubby/teletubby_pb.js +4786 -0
- package/grpc/teletubby/teletubby_pb_service.d.ts +193 -0
- package/grpc/teletubby/teletubby_pb_service.js +436 -0
- package/grpc/video/pigeon_grpc_pb.d.ts +59 -0
- package/grpc/video/pigeon_grpc_pb.js +180 -0
- package/grpc/video/pigeon_pb.d.ts +237 -0
- package/grpc/video/pigeon_pb.js +1775 -0
- package/grpc/video/pigeon_pb_service.d.ts +152 -0
- package/grpc/video/pigeon_pb_service.js +292 -0
- package/helpers/arrayRemove.d.ts +1 -0
- package/helpers/arrayRemove.js +7 -0
- package/helpers/arrayUnique.d.ts +1 -0
- package/helpers/arrayUnique.js +7 -0
- package/helpers/average.d.ts +1 -0
- package/helpers/average.js +11 -0
- package/helpers/cleanObject.d.ts +1 -0
- package/helpers/cleanObject.js +20 -0
- package/helpers/enviroment.d.ts +8 -0
- package/helpers/enviroment.js +20 -0
- package/helpers/flattenCallsignsLookup.d.ts +2 -0
- package/helpers/flattenCallsignsLookup.js +10 -0
- package/helpers/flattenObject.d.ts +1 -0
- package/helpers/flattenObject.js +17 -0
- package/helpers/formatServiceUrl.d.ts +1 -0
- package/helpers/formatServiceUrl.js +11 -0
- package/helpers/generateUUID.d.ts +1 -0
- package/helpers/generateUUID.js +8 -0
- package/helpers/getSubscriptionsDifference.d.ts +10 -0
- package/helpers/getSubscriptionsDifference.js +39 -0
- package/helpers/getUniqueConfigKey.d.ts +7 -0
- package/helpers/getUniqueConfigKey.js +19 -0
- package/helpers/getUniqueId.d.ts +9 -0
- package/helpers/getUniqueId.js +15 -0
- package/helpers/getUnixTimeMs.d.ts +1 -0
- package/helpers/getUnixTimeMs.js +8 -0
- package/helpers/index.d.ts +3 -0
- package/helpers/index.js +15 -0
- package/helpers/nanosecondToMillisecond.d.ts +1 -0
- package/helpers/nanosecondToMillisecond.js +7 -0
- package/helpers/randomString.d.ts +1 -0
- package/helpers/randomString.js +7 -0
- package/helpers/standardDeviation.d.ts +1 -0
- package/helpers/standardDeviation.js +16 -0
- package/helpers/stringToUint8Array.d.ts +1 -0
- package/helpers/stringToUint8Array.js +14 -0
- package/helpers/uint8ArrayToString.d.ts +1 -0
- package/helpers/uint8ArrayToString.js +15 -0
- package/index.d.ts +7 -0
- package/index.js +19 -0
- package/logger/RocosLogger.d.ts +7 -0
- package/logger/RocosLogger.js +63 -0
- package/models/ExportDataQuery.d.ts +8 -0
- package/models/ExportDataQuery.js +17 -0
- package/models/ExternalProject.d.ts +6 -0
- package/models/ExternalProject.js +6 -0
- package/models/IBaseService.d.ts +3 -0
- package/models/IBaseService.js +2 -0
- package/models/IConfigGroup.d.ts +5 -0
- package/models/IConfigGroup.js +2 -0
- package/models/IDebugLevel.d.ts +2 -0
- package/models/IDebugLevel.js +2 -0
- package/models/IExportDataQuery.d.ts +9 -0
- package/models/IExportDataQuery.js +2 -0
- package/models/IFunctionConfig.d.ts +8 -0
- package/models/IFunctionConfig.js +2 -0
- package/models/IInvitation.d.ts +6 -0
- package/models/IInvitation.js +2 -0
- package/models/IInvitationExists.d.ts +4 -0
- package/models/IInvitationExists.js +2 -0
- package/models/IOperation.d.ts +6 -0
- package/models/IOperation.js +2 -0
- package/models/IPersonalAccessToken.d.ts +16 -0
- package/models/IPersonalAccessToken.js +2 -0
- package/models/IProject.d.ts +4 -0
- package/models/IProject.js +2 -0
- package/models/IProjectApplication.d.ts +6 -0
- package/models/IProjectApplication.js +2 -0
- package/models/IRobot.d.ts +17 -0
- package/models/IRobot.js +2 -0
- package/models/IRobotConfig.d.ts +8 -0
- package/models/IRobotConfig.js +2 -0
- package/models/IRobotPlugin.d.ts +3 -0
- package/models/IRobotPlugin.js +2 -0
- package/models/IRobotTemplate.d.ts +10 -0
- package/models/IRobotTemplate.js +2 -0
- package/models/IRocosSDKConfig.d.ts +25 -0
- package/models/IRocosSDKConfig.js +2 -0
- package/models/ISignupParams.d.ts +8 -0
- package/models/ISignupParams.js +2 -0
- package/models/ISource.d.ts +8 -0
- package/models/ISource.js +2 -0
- package/models/IStream.d.ts +9 -0
- package/models/IStream.js +2 -0
- package/models/IStreamConfig.d.ts +9 -0
- package/models/IStreamConfig.js +2 -0
- package/models/IStreamOptions.d.ts +7 -0
- package/models/IStreamOptions.js +2 -0
- package/models/IStreamSource.d.ts +8 -0
- package/models/IStreamSource.js +2 -0
- package/models/ISubscriberStatus.d.ts +5 -0
- package/models/ISubscriberStatus.js +2 -0
- package/models/ITelemetryStreamConfig.d.ts +7 -0
- package/models/ITelemetryStreamConfig.js +2 -0
- package/models/IToken.d.ts +5 -0
- package/models/IToken.js +2 -0
- package/models/IWidget.d.ts +25 -0
- package/models/IWidget.js +2 -0
- package/models/IWidgetLineGroup.d.ts +8 -0
- package/models/IWidgetLineGroup.js +2 -0
- package/models/ResponseLevelEnum.d.ts +6 -0
- package/models/ResponseLevelEnum.js +10 -0
- package/models/Robot.d.ts +19 -0
- package/models/Robot.js +12 -0
- package/models/RobotConfig.d.ts +10 -0
- package/models/RobotConfig.js +9 -0
- package/models/RobotPlugin.d.ts +5 -0
- package/models/RobotPlugin.js +9 -0
- package/models/RobotTemplate.d.ts +12 -0
- package/models/RobotTemplate.js +30 -0
- package/models/RocosError.d.ts +30 -0
- package/models/RocosError.js +43 -0
- package/models/ServiceEnum.d.ts +26 -0
- package/models/ServiceEnum.js +30 -0
- package/models/Stream.d.ts +10 -0
- package/models/Stream.js +15 -0
- package/models/StreamOptions.d.ts +9 -0
- package/models/StreamOptions.js +37 -0
- package/models/StreamSource.d.ts +10 -0
- package/models/StreamSource.js +15 -0
- package/models/SubscriberStatusEnum.d.ts +6 -0
- package/models/SubscriberStatusEnum.js +10 -0
- package/models/Token.d.ts +8 -0
- package/models/Token.js +15 -0
- package/models/Widget.d.ts +27 -0
- package/models/Widget.js +16 -0
- package/models/WidgetLineGroup.d.ts +10 -0
- package/models/WidgetLineGroup.js +9 -0
- package/models/asset-storage/AssetModelItem.d.ts +29 -0
- package/models/asset-storage/AssetModelItem.js +2 -0
- package/models/caller/IRocosCallerMessageChunk.d.ts +9 -0
- package/models/caller/IRocosCallerMessageChunk.js +2 -0
- package/models/caller/IRocosCallerMessageChunks.d.ts +5 -0
- package/models/caller/IRocosCallerMessageChunks.js +2 -0
- package/models/caller/IRocosCallerMessageHeartbeat.d.ts +2 -0
- package/models/caller/IRocosCallerMessageHeartbeat.js +2 -0
- package/models/caller/IRocosCallerMessageResponse.d.ts +9 -0
- package/models/caller/IRocosCallerMessageResponse.js +2 -0
- package/models/caller/IRocosCallerMessageResponseAck.d.ts +2 -0
- package/models/caller/IRocosCallerMessageResponseAck.js +2 -0
- package/models/caller/IRocosCallerMessageResponseResult.d.ts +2 -0
- package/models/caller/IRocosCallerMessageResponseResult.js +2 -0
- package/models/caller/IRocosCallerMessageResponseUid.d.ts +2 -0
- package/models/caller/IRocosCallerMessageResponseUid.js +2 -0
- package/models/caller/IRocosCallerMessageResponses.d.ts +5 -0
- package/models/caller/IRocosCallerMessageResponses.js +2 -0
- package/models/caller/RocosCallerResultStatus.d.ts +1 -0
- package/models/caller/RocosCallerResultStatus.js +5 -0
- package/models/callsigns/CallsignsEnums.d.ts +13 -0
- package/models/callsigns/CallsignsEnums.js +20 -0
- package/models/callsigns/CallsignsLookup.d.ts +8 -0
- package/models/callsigns/CallsignsLookup.js +33 -0
- package/models/callsigns/CallsignsQuery.d.ts +9 -0
- package/models/callsigns/CallsignsQuery.js +18 -0
- package/models/callsigns/CallsignsQueryPredicate.d.ts +9 -0
- package/models/callsigns/CallsignsQueryPredicate.js +19 -0
- package/models/command/IRocosCommandMessageHeartbeat.d.ts +2 -0
- package/models/command/IRocosCommandMessageHeartbeat.js +2 -0
- package/models/command/IRocosCommandMessageResponse.d.ts +2 -0
- package/models/command/IRocosCommandMessageResponse.js +2 -0
- package/models/command/RocosCommandResultStatus.d.ts +1 -0
- package/models/command/RocosCommandResultStatus.js +5 -0
- package/models/file/FileEnums.d.ts +30 -0
- package/models/file/FileEnums.js +36 -0
- package/models/index.d.ts +101 -0
- package/models/index.js +113 -0
- package/models/integrations/Overlay.d.ts +49 -0
- package/models/integrations/Overlay.js +2 -0
- package/models/integrations/Plan.d.ts +324 -0
- package/models/integrations/Plan.js +2 -0
- package/models/maps/Map.d.ts +12 -0
- package/models/maps/Map.js +2 -0
- package/models/message/IRocosCallerMessage.d.ts +8 -0
- package/models/message/IRocosCallerMessage.js +2 -0
- package/models/message/IRocosChangeMessage.d.ts +6 -0
- package/models/message/IRocosChangeMessage.js +2 -0
- package/models/message/IRocosCommandMessage.d.ts +6 -0
- package/models/message/IRocosCommandMessage.js +2 -0
- package/models/message/IRocosControlMessage.d.ts +7 -0
- package/models/message/IRocosControlMessage.js +2 -0
- package/models/message/IRocosOpResultMessage.d.ts +6 -0
- package/models/message/IRocosOpResultMessage.js +2 -0
- package/models/message/IRocosSearchMessage.d.ts +5 -0
- package/models/message/IRocosSearchMessage.js +2 -0
- package/models/message/IRocosSearchRowMessage.d.ts +9 -0
- package/models/message/IRocosSearchRowMessage.js +2 -0
- package/models/message/IRocosSearchStatusMessage.d.ts +4 -0
- package/models/message/IRocosSearchStatusMessage.js +2 -0
- package/models/message/IRocosTelemetryMessage.d.ts +18 -0
- package/models/message/IRocosTelemetryMessage.js +2 -0
- package/models/message/IStreamStatusMessage.d.ts +5 -0
- package/models/message/IStreamStatusMessage.js +2 -0
- package/models/message/RocosCallerMessage.d.ts +12 -0
- package/models/message/RocosCallerMessage.js +23 -0
- package/models/message/RocosCommandMessage.d.ts +10 -0
- package/models/message/RocosCommandMessage.js +16 -0
- package/models/message/RocosControlMessage.d.ts +11 -0
- package/models/message/RocosControlMessage.js +18 -0
- package/models/message/RocosOpResultMessage.d.ts +9 -0
- package/models/message/RocosOpResultMessage.js +22 -0
- package/models/message/RocosSearchMessage.d.ts +9 -0
- package/models/message/RocosSearchMessage.js +28 -0
- package/models/message/RocosSearchRowMessage.d.ts +13 -0
- package/models/message/RocosSearchRowMessage.js +20 -0
- package/models/message/RocosTelemetryMessage.d.ts +24 -0
- package/models/message/RocosTelemetryMessage.js +105 -0
- package/models/params/ICallerParams.d.ts +15 -0
- package/models/params/ICallerParams.js +2 -0
- package/models/params/ICommandParams.d.ts +9 -0
- package/models/params/ICommandParams.js +2 -0
- package/models/params/IControlParams.d.ts +8 -0
- package/models/params/IControlParams.js +2 -0
- package/models/params/IFileAccessorParams.d.ts +11 -0
- package/models/params/IFileAccessorParams.js +2 -0
- package/models/params/ISearchParams.d.ts +10 -0
- package/models/params/ISearchParams.js +2 -0
- package/models/params/ITelemetryParams.d.ts +18 -0
- package/models/params/ITelemetryParams.js +2 -0
- package/models/params/IWebRTCSignallingParams.d.ts +21 -0
- package/models/params/IWebRTCSignallingParams.js +2 -0
- package/models/projects/ProjectUser.d.ts +6 -0
- package/models/projects/ProjectUser.js +2 -0
- package/models/schedule/IScheduleAction.d.ts +13 -0
- package/models/schedule/IScheduleAction.js +9 -0
- package/models/schedule/IScheduleInfo.d.ts +11 -0
- package/models/schedule/IScheduleInfo.js +2 -0
- package/models/schedule/IScheduleJob.d.ts +12 -0
- package/models/schedule/IScheduleJob.js +2 -0
- package/models/search/SearchQueryFilter.d.ts +5 -0
- package/models/search/SearchQueryFilter.js +9 -0
- package/models/search/SearchStreamQuery.d.ts +15 -0
- package/models/search/SearchStreamQuery.js +10 -0
- package/models/stream/IBaseStream.d.ts +8 -0
- package/models/stream/IBaseStream.js +2 -0
- package/models/stream/ICallerStream.d.ts +8 -0
- package/models/stream/ICallerStream.js +2 -0
- package/models/stream/ICommandStream.d.ts +7 -0
- package/models/stream/ICommandStream.js +2 -0
- package/models/stream/IControlStream.d.ts +9 -0
- package/models/stream/IControlStream.js +2 -0
- package/models/stream/IFileAccessorStream.d.ts +10 -0
- package/models/stream/IFileAccessorStream.js +2 -0
- package/models/stream/ISearchStream.d.ts +11 -0
- package/models/stream/ISearchStream.js +2 -0
- package/models/stream/ITelemetryStream.d.ts +10 -0
- package/models/stream/ITelemetryStream.js +2 -0
- package/models/stream/IWebRTCSignallingStream.d.ts +41 -0
- package/models/stream/IWebRTCSignallingStream.js +7 -0
- package/models/types.d.ts +5 -0
- package/models/types.js +2 -0
- package/node/RocosSDKNode.d.ts +42 -0
- package/node/RocosSDKNode.js +148 -0
- package/node/index.d.ts +7 -0
- package/node/index.js +19 -0
- package/package.json +25 -6
- package/services/AssetStorageService.d.ts +92 -0
- package/services/AssetStorageService.js +153 -0
- package/services/AuthService.d.ts +61 -0
- package/services/AuthService.js +154 -0
- package/services/BaseServiceAbstract.d.ts +38 -0
- package/services/BaseServiceAbstract.js +103 -0
- package/services/CallerService.d.ts +22 -0
- package/services/CallerService.js +96 -0
- package/services/CallerServiceNode.d.ts +6 -0
- package/services/CallerServiceNode.js +11 -0
- package/services/CommandService.d.ts +21 -0
- package/services/CommandService.js +81 -0
- package/services/CommandServiceNode.d.ts +6 -0
- package/services/CommandServiceNode.js +11 -0
- package/services/ConfigGroupService.d.ts +89 -0
- package/services/ConfigGroupService.js +157 -0
- package/services/ControlService.d.ts +23 -0
- package/services/ControlService.js +100 -0
- package/services/ControlServiceNode.d.ts +6 -0
- package/services/ControlServiceNode.js +11 -0
- package/services/DashboardService.d.ts +97 -0
- package/services/DashboardService.js +146 -0
- package/services/EventService.d.ts +53 -0
- package/services/EventService.js +89 -0
- package/services/FileAccessorService.d.ts +25 -0
- package/services/FileAccessorService.js +85 -0
- package/services/FileAccessorServiceNode.d.ts +6 -0
- package/services/FileAccessorServiceNode.js +11 -0
- package/services/FunctionService.d.ts +68 -0
- package/services/FunctionService.js +103 -0
- package/services/IntegrationService.d.ts +48 -0
- package/services/IntegrationService.js +77 -0
- package/services/MapService.d.ts +96 -0
- package/services/MapService.js +119 -0
- package/services/PlatformTimeService.d.ts +35 -0
- package/services/PlatformTimeService.js +160 -0
- package/services/ProfileService.d.ts +244 -0
- package/services/ProfileService.js +366 -0
- package/services/ProjectService.d.ts +110 -0
- package/services/ProjectService.js +164 -0
- package/services/RobotService.d.ts +282 -0
- package/services/RobotService.js +467 -0
- package/services/ScheduleService.d.ts +22 -0
- package/services/ScheduleService.js +40 -0
- package/services/SearchService.d.ts +25 -0
- package/services/SearchService.js +93 -0
- package/services/SearchServiceNode.d.ts +6 -0
- package/services/SearchServiceNode.js +11 -0
- package/services/SpotProvisioningService.d.ts +14 -0
- package/services/SpotProvisioningService.js +43 -0
- package/services/SpotProvisioningServiceNode.d.ts +15 -0
- package/services/SpotProvisioningServiceNode.js +43 -0
- package/services/StreamService.d.ts +98 -0
- package/services/StreamService.js +146 -0
- package/services/TelemetryService.d.ts +43 -0
- package/services/TelemetryService.js +144 -0
- package/services/TelemetryServiceNode.d.ts +6 -0
- package/services/TelemetryServiceNode.js +11 -0
- package/services/TimeSyncerService.d.ts +13 -0
- package/services/TimeSyncerService.js +27 -0
- package/services/UserService.d.ts +200 -0
- package/services/UserService.js +319 -0
- package/services/WebRTCSignallingService.d.ts +22 -0
- package/services/WebRTCSignallingService.js +81 -0
- package/services/WorkflowService.d.ts +71 -0
- package/services/WorkflowService.js +122 -0
- package/services/index.d.ts +26 -0
- package/services/index.js +38 -0
- package/store/RocosStore.d.ts +31 -0
- package/store/RocosStore.js +53 -0
- package/utils/axisangle.d.ts +18 -0
- package/utils/axisangle.js +48 -0
- package/utils/eulerangles.d.ts +22 -0
- package/utils/eulerangles.js +133 -0
- package/utils/helperfunctions.d.ts +5 -0
- package/utils/helperfunctions.js +50 -0
- package/utils/localtransform.d.ts +17 -0
- package/utils/localtransform.js +50 -0
- package/utils/localtransformtree.d.ts +17 -0
- package/utils/localtransformtree.js +88 -0
- package/utils/misc.d.ts +17 -0
- package/utils/misc.js +23 -0
- package/utils/positionvector.d.ts +13 -0
- package/utils/positionvector.js +79 -0
- package/utils/quaternion.d.ts +20 -0
- package/utils/quaternion.js +62 -0
- package/utils/rotationmatrix.d.ts +23 -0
- package/utils/rotationmatrix.js +262 -0
- package/utils/transformationmatrix.d.ts +12 -0
- package/utils/transformationmatrix.js +123 -0
- package/utils/vector3.d.ts +11 -0
- package/utils/vector3.js +61 -0
@@ -0,0 +1,115 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.StreamHeartbeat = void 0;
|
4
|
+
const RocosLogger_1 = require("../../logger/RocosLogger");
|
5
|
+
class StreamHeartbeat {
|
6
|
+
constructor(identifier) {
|
7
|
+
this.beats = 0;
|
8
|
+
this.healthLastSeenDate = new Date();
|
9
|
+
this.healthMisses = 0;
|
10
|
+
this.healthTimeout = 6000; // check for healthy heartbeat every 6 seconds
|
11
|
+
this.healthMaxTimeout = 10;
|
12
|
+
this.healthMaxMisses = 5;
|
13
|
+
this.identifier = identifier;
|
14
|
+
this.logger = RocosLogger_1.RocosLogger.getInstance(`StreamHeartbeat(${this.identifier})`);
|
15
|
+
}
|
16
|
+
setHealthTimeout(healthTimeout) {
|
17
|
+
this.healthTimeout = healthTimeout;
|
18
|
+
return this;
|
19
|
+
}
|
20
|
+
setHealthMaxTimeout(healthMaxTimeout) {
|
21
|
+
this.healthMaxTimeout = healthMaxTimeout;
|
22
|
+
return this;
|
23
|
+
}
|
24
|
+
setHealthMaxMisses(healthMaxMisses) {
|
25
|
+
this.healthMaxMisses = healthMaxMisses;
|
26
|
+
return this;
|
27
|
+
}
|
28
|
+
setHealthCheckStatusCallback(healthCheckStatusCallback) {
|
29
|
+
this.healthCheckStatusCallback = healthCheckStatusCallback;
|
30
|
+
return this;
|
31
|
+
}
|
32
|
+
setHealthCheckErrorCallback(healthCheckErrorCallback) {
|
33
|
+
this.healthCheckErrorCallback = healthCheckErrorCallback;
|
34
|
+
return this;
|
35
|
+
}
|
36
|
+
start(callback, timeout) {
|
37
|
+
if (!this.interval) {
|
38
|
+
this.callback = callback;
|
39
|
+
this.timeout = timeout;
|
40
|
+
this.logger.info('Creating stream heartbeat');
|
41
|
+
this.interval = setInterval(this.callback, this.timeout);
|
42
|
+
}
|
43
|
+
else {
|
44
|
+
this.logger.warn('Stream heartbeat already exists');
|
45
|
+
}
|
46
|
+
}
|
47
|
+
stop() {
|
48
|
+
try {
|
49
|
+
this.logger.info('Removing stream heartbeat timer');
|
50
|
+
clearInterval(this.interval);
|
51
|
+
this.interval = undefined;
|
52
|
+
}
|
53
|
+
catch (e) {
|
54
|
+
this.logger.error(`Error killing stream heartbeat timer ${e}`);
|
55
|
+
}
|
56
|
+
}
|
57
|
+
pump() {
|
58
|
+
// if the health check has not started yet, we initialise it
|
59
|
+
if (!this.healthInterval) {
|
60
|
+
this.logger.debug('Starting health check timer');
|
61
|
+
this.healthInterval = setInterval(this.checkHealth, this.healthTimeout);
|
62
|
+
this.healthLastSeenDate = new Date();
|
63
|
+
this.healthMisses = 0;
|
64
|
+
}
|
65
|
+
else {
|
66
|
+
this.logger.debug(`Updating health check timer: ${this.healthLastSeenDate}, ${this.healthMisses}`);
|
67
|
+
this.healthLastSeenDate = new Date();
|
68
|
+
this.healthMisses = 0;
|
69
|
+
}
|
70
|
+
return this.beats++;
|
71
|
+
}
|
72
|
+
async checkHealth() {
|
73
|
+
this.logger.debug('Checking health');
|
74
|
+
let status = true;
|
75
|
+
// check to see if we have received a heartbeat in in the last few seconds
|
76
|
+
const lastSeenInSeconds = (new Date().getTime() - this.healthLastSeenDate.getTime()) / 1000;
|
77
|
+
if (lastSeenInSeconds > this.healthMaxTimeout && this.healthMaxMisses) {
|
78
|
+
status = false;
|
79
|
+
this.healthMisses += 1;
|
80
|
+
this.logger.warn(`Heartbeat is more than ${this.healthMaxTimeout} seconds, delay: ${lastSeenInSeconds} seconds, misses: ${this.healthMisses}`);
|
81
|
+
if (this.healthMisses === this.healthMaxMisses) {
|
82
|
+
this.stopHealthCheck();
|
83
|
+
this.logger.error(`Stopping Heartbeat as it is more than ${this.healthMaxTimeout} seconds, delay - ${lastSeenInSeconds} seconds, misses: ${this.healthMisses}`);
|
84
|
+
if (this.healthCheckErrorCallback) {
|
85
|
+
await this.healthCheckErrorCallback();
|
86
|
+
}
|
87
|
+
}
|
88
|
+
}
|
89
|
+
else if (lastSeenInSeconds > this.healthMaxTimeout) {
|
90
|
+
status = false;
|
91
|
+
this.logger.warn(`Stopping Heartbeat as it is more than ${this.healthMaxTimeout} seconds, delay - ${lastSeenInSeconds} seconds`);
|
92
|
+
this.stopHealthCheck();
|
93
|
+
if (this.healthCheckErrorCallback) {
|
94
|
+
await this.healthCheckErrorCallback();
|
95
|
+
}
|
96
|
+
}
|
97
|
+
if (this.healthCheckStatusCallback) {
|
98
|
+
await this.healthCheckStatusCallback(status);
|
99
|
+
}
|
100
|
+
}
|
101
|
+
stopHealthCheck() {
|
102
|
+
if (this.healthInterval) {
|
103
|
+
try {
|
104
|
+
this.logger.info('Stopping timer');
|
105
|
+
clearInterval(this.healthInterval);
|
106
|
+
this.healthInterval = undefined;
|
107
|
+
this.logger.info('Removed timer');
|
108
|
+
}
|
109
|
+
catch (e) {
|
110
|
+
this.logger.error('error removing timer', e);
|
111
|
+
}
|
112
|
+
}
|
113
|
+
}
|
114
|
+
}
|
115
|
+
exports.StreamHeartbeat = StreamHeartbeat;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { Observable } from 'rxjs';
|
2
|
+
import { RequestCancellation, ServiceRequest } from '../../../grpc/serviette/serviette.v1_pb';
|
3
|
+
import { CallerStreamAbstract } from './CallerStreamAbstract';
|
4
|
+
import { ICallerParams } from '../../../models/params/ICallerParams';
|
5
|
+
import { IRocosCallerMessage } from '../../../models/message/IRocosCallerMessage';
|
6
|
+
import { IStreamConfig } from '../../../models/IStreamConfig';
|
7
|
+
export declare class CallerStream extends CallerStreamAbstract {
|
8
|
+
private client;
|
9
|
+
constructor(config: IStreamConfig);
|
10
|
+
protected callStream(request: ServiceRequest | RequestCancellation, params: ICallerParams): Observable<IRocosCallerMessage>;
|
11
|
+
protected setPayload(request: ServiceRequest, payload: string): void;
|
12
|
+
private getMetadata;
|
13
|
+
}
|
@@ -0,0 +1,85 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.CallerStream = void 0;
|
4
|
+
const rxjs_1 = require("rxjs");
|
5
|
+
const serviette_v1_pb_1 = require("../../../grpc/serviette/serviette.v1_pb");
|
6
|
+
const serviette_v1_pb_service_1 = require("../../../grpc/serviette/serviette.v1_pb_service");
|
7
|
+
const CallerStreamAbstract_1 = require("./CallerStreamAbstract");
|
8
|
+
const RocosCallerMessage_1 = require("../../../models/message/RocosCallerMessage");
|
9
|
+
const RocosLogger_1 = require("../../../logger/RocosLogger");
|
10
|
+
const SubscriberStatusEnum_1 = require("../../../models/SubscriberStatusEnum");
|
11
|
+
const stringToUint8Array_1 = require("../../../helpers/stringToUint8Array");
|
12
|
+
class CallerStream extends CallerStreamAbstract_1.CallerStreamAbstract {
|
13
|
+
constructor(config) {
|
14
|
+
super(config);
|
15
|
+
this.logger = RocosLogger_1.RocosLogger.getInstance(`CallerStream(${this.identifier})`);
|
16
|
+
const protocol = config.insecure ? 'http' : 'https';
|
17
|
+
this.client = new serviette_v1_pb_service_1.WebServiceCallerClient(`${protocol}://${this.url}`);
|
18
|
+
}
|
19
|
+
callStream(request, params) {
|
20
|
+
const metadata = this.getMetadata(params.projectId, params.callsign, params.subSystem);
|
21
|
+
let call;
|
22
|
+
return new rxjs_1.Observable((emitter) => {
|
23
|
+
let requestType = 'invoke';
|
24
|
+
if (request instanceof serviette_v1_pb_1.RequestCancellation) {
|
25
|
+
call = this.client.cancelService(request, metadata);
|
26
|
+
requestType = 'cancel';
|
27
|
+
}
|
28
|
+
else {
|
29
|
+
call = this.client.callService(request, metadata);
|
30
|
+
}
|
31
|
+
this.subscriberStatus = SubscriberStatusEnum_1.SubscriberStatusEnum.ALIVE;
|
32
|
+
this.statusStream$.next(this.subscriberStatus);
|
33
|
+
call.on('data', (update) => {
|
34
|
+
const message = RocosCallerMessage_1.RocosCallerMessage.fromModel(update);
|
35
|
+
emitter.next(message);
|
36
|
+
this.logger.debug(`${requestType}Request - on(data)`, {
|
37
|
+
message,
|
38
|
+
projectId: params.projectId,
|
39
|
+
callsign: params.callsign,
|
40
|
+
component: params.component,
|
41
|
+
topic: params.topic,
|
42
|
+
});
|
43
|
+
});
|
44
|
+
call.on('end', () => {
|
45
|
+
this.subscriberStatus = SubscriberStatusEnum_1.SubscriberStatusEnum.STOPPED;
|
46
|
+
this.statusStream$.next(this.subscriberStatus);
|
47
|
+
// A result message will be sent from data, so we don't need to notify the subscriber this is the end.
|
48
|
+
this.logger.debug(`${requestType}Request - on(end)`, {
|
49
|
+
projectId: params.projectId,
|
50
|
+
callsign: params.callsign,
|
51
|
+
component: params.component,
|
52
|
+
topic: params.topic,
|
53
|
+
});
|
54
|
+
emitter.complete();
|
55
|
+
});
|
56
|
+
call.on('status', (status) => {
|
57
|
+
this.logger.debug(`${requestType}Request - on(status)`, {
|
58
|
+
status,
|
59
|
+
projectId: params.projectId,
|
60
|
+
callsign: params.callsign,
|
61
|
+
component: params.component,
|
62
|
+
topic: params.topic,
|
63
|
+
});
|
64
|
+
// TODO: match fail status and emit an error
|
65
|
+
// emitter.error(error)
|
66
|
+
});
|
67
|
+
return () => {
|
68
|
+
this.logger.debug('unsubscribing callStream');
|
69
|
+
call.cancel();
|
70
|
+
};
|
71
|
+
});
|
72
|
+
}
|
73
|
+
setPayload(request, payload) {
|
74
|
+
request.setPayload(stringToUint8Array_1.stringToUint8Array(payload));
|
75
|
+
}
|
76
|
+
getMetadata(projectId, callsign, subsystem) {
|
77
|
+
return {
|
78
|
+
'authorization': this.token,
|
79
|
+
'r-p': projectId,
|
80
|
+
'r-cs': callsign,
|
81
|
+
'r-s': subsystem || '',
|
82
|
+
};
|
83
|
+
}
|
84
|
+
}
|
85
|
+
exports.CallerStream = CallerStream;
|
@@ -0,0 +1,28 @@
|
|
1
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
2
|
+
import { ICallerInvokeParams, ICallerParams } from '../../../models/params/ICallerParams';
|
3
|
+
import { RequestCancellation, ServiceRequest } from '../../../grpc/serviette/serviette.v1_pb';
|
4
|
+
import { ICallerStream } from '../../../models/stream/ICallerStream';
|
5
|
+
import { IRocosCallerMessage } from '../../../models/message/IRocosCallerMessage';
|
6
|
+
import { IStreamConfig } from '../../../models/IStreamConfig';
|
7
|
+
import { Logger } from 'loglevel';
|
8
|
+
import { SubscriberStatusEnum } from '../../../models/SubscriberStatusEnum';
|
9
|
+
export declare abstract class CallerStreamAbstract implements ICallerStream {
|
10
|
+
identifier: string;
|
11
|
+
statusStream$: BehaviorSubject<SubscriberStatusEnum>;
|
12
|
+
protected token: string;
|
13
|
+
private scope;
|
14
|
+
protected url: string;
|
15
|
+
protected subscriberStatus: SubscriberStatusEnum;
|
16
|
+
protected logger: Logger;
|
17
|
+
constructor(config: IStreamConfig);
|
18
|
+
protected abstract callStream(request: ServiceRequest | RequestCancellation, params: ICallerParams): Observable<IRocosCallerMessage>;
|
19
|
+
protected abstract setPayload(request: ServiceRequest, payload: string): void;
|
20
|
+
setToken(token: string): void;
|
21
|
+
stopStream(): void;
|
22
|
+
invokeRequest(params: ICallerInvokeParams): Observable<IRocosCallerMessage>;
|
23
|
+
cancelRequest(params: ICallerParams): Observable<IRocosCallerMessage>;
|
24
|
+
private createCancellationRequest;
|
25
|
+
private createServiceHeader;
|
26
|
+
private createServiceRequest;
|
27
|
+
private createRocosUriPath;
|
28
|
+
}
|
@@ -0,0 +1,99 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.CallerStreamAbstract = void 0;
|
4
|
+
const rxjs_1 = require("rxjs");
|
5
|
+
const serviette_v1_pb_1 = require("../../../grpc/serviette/serviette.v1_pb");
|
6
|
+
const uri_v1_pb_1 = require("../../../grpc/serviette/uri.v1_pb");
|
7
|
+
const identifier_1 = require("../../../constants/identifier");
|
8
|
+
const RocosStore_1 = require("../../../store/RocosStore");
|
9
|
+
const StreamRegister_1 = require("../../StreamRegister");
|
10
|
+
const SubscriberStatusEnum_1 = require("../../../models/SubscriberStatusEnum");
|
11
|
+
const operators_1 = require("rxjs/operators");
|
12
|
+
const uuid_1 = require("uuid");
|
13
|
+
class CallerStreamAbstract {
|
14
|
+
constructor(config) {
|
15
|
+
this.subscriberStatus = SubscriberStatusEnum_1.SubscriberStatusEnum.STOPPED;
|
16
|
+
this.scope = config.scope;
|
17
|
+
this.identifier = StreamRegister_1.StreamRegister.getIdentifier(identifier_1.IDENTIFIER_NAME_CALLER, this.scope);
|
18
|
+
this.token = config.token;
|
19
|
+
this.url = config.url;
|
20
|
+
this.statusStream$ = new rxjs_1.BehaviorSubject(SubscriberStatusEnum_1.SubscriberStatusEnum.STOPPED);
|
21
|
+
RocosStore_1.RocosStore.getChangeSubject()
|
22
|
+
.pipe(operators_1.filter((message) => {
|
23
|
+
return message.type === 'token' && message.url === this.url;
|
24
|
+
}))
|
25
|
+
.subscribe((msg) => {
|
26
|
+
this.token = msg.data;
|
27
|
+
});
|
28
|
+
}
|
29
|
+
setToken(token) {
|
30
|
+
this.token = token;
|
31
|
+
}
|
32
|
+
stopStream() {
|
33
|
+
// do nothing for now
|
34
|
+
}
|
35
|
+
invokeRequest(params) {
|
36
|
+
this.logger.info('invokeRequest', params);
|
37
|
+
const responseLevel = params.responseLevelNumber;
|
38
|
+
const request = this.createServiceRequest(params.uid, params.projectId, params.callsign, params.component, params.topic, responseLevel, params.payload, params.query);
|
39
|
+
return this.callStream(request, params);
|
40
|
+
}
|
41
|
+
cancelRequest(params) {
|
42
|
+
this.logger.info('cancelRequest', params);
|
43
|
+
const request = this.createCancellationRequest(params.uid);
|
44
|
+
return this.callStream(request, params);
|
45
|
+
}
|
46
|
+
createCancellationRequest(uid) {
|
47
|
+
const request = new serviette_v1_pb_1.RequestCancellation();
|
48
|
+
const serviceCallUID = new serviette_v1_pb_1.ServiceCallUID();
|
49
|
+
serviceCallUID.setHash(uid);
|
50
|
+
request.setUid(serviceCallUID);
|
51
|
+
return request;
|
52
|
+
}
|
53
|
+
createServiceHeader(uri, responseLevel) {
|
54
|
+
const serviceRequestHeader = new serviette_v1_pb_1.ServiceRequestHeader();
|
55
|
+
serviceRequestHeader.setCreated(Date.now());
|
56
|
+
serviceRequestHeader.setSource(uri);
|
57
|
+
serviceRequestHeader.setResponselevel(responseLevel);
|
58
|
+
return serviceRequestHeader;
|
59
|
+
}
|
60
|
+
// eslint-disable-next-line max-params
|
61
|
+
createServiceRequest(uid, projectId, callsign, component, topic, responseLevel, payload, query) {
|
62
|
+
const path = this.createRocosUriPath(projectId, callsign, component, topic, undefined);
|
63
|
+
const uri = new uri_v1_pb_1.RocosURI();
|
64
|
+
uri.setPath(path);
|
65
|
+
uri.setScheme(uri_v1_pb_1.RocosURIScheme.GRPC);
|
66
|
+
if (query) {
|
67
|
+
const queryMap = uri.getQueryMap();
|
68
|
+
Object.keys(query).forEach((key) => {
|
69
|
+
const vals = new uri_v1_pb_1.RocosURIQueryValues();
|
70
|
+
query[key].forEach((v) => vals.addValues(v));
|
71
|
+
queryMap.set(key, vals);
|
72
|
+
});
|
73
|
+
}
|
74
|
+
const request = new serviette_v1_pb_1.ServiceRequest();
|
75
|
+
const serviceCallUID = new serviette_v1_pb_1.ServiceCallUID();
|
76
|
+
serviceCallUID.setVersion(serviette_v1_pb_1.UIDVersion.HEADER_HASH_RAND);
|
77
|
+
if (!uid) {
|
78
|
+
uid = uuid_1.v4();
|
79
|
+
}
|
80
|
+
serviceCallUID.setHash(uid);
|
81
|
+
const serviceRequestHeader = this.createServiceHeader(uri, responseLevel);
|
82
|
+
request.setUid(serviceCallUID);
|
83
|
+
request.setHeader(serviceRequestHeader);
|
84
|
+
this.setPayload(request, payload);
|
85
|
+
return request;
|
86
|
+
}
|
87
|
+
createRocosUriPath(projectId, callsign, component, topic, subsystem) {
|
88
|
+
const path = new uri_v1_pb_1.RocosURIPath();
|
89
|
+
path.setProject(projectId);
|
90
|
+
path.setCallsign(callsign);
|
91
|
+
path.setComponent(component);
|
92
|
+
path.setTopic(topic);
|
93
|
+
if (subsystem) {
|
94
|
+
path.setSubsystem(subsystem);
|
95
|
+
}
|
96
|
+
return path;
|
97
|
+
}
|
98
|
+
}
|
99
|
+
exports.CallerStreamAbstract = CallerStreamAbstract;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { Observable } from 'rxjs';
|
2
|
+
import { RequestCancellation, ServiceRequest } from '../../../grpc/serviette/serviette.v1_pb';
|
3
|
+
import { CallerStreamAbstract } from './CallerStreamAbstract';
|
4
|
+
import { ICallerParams } from '../../../models/params/ICallerParams';
|
5
|
+
import { IRocosCallerMessage } from '../../../models/message/IRocosCallerMessage';
|
6
|
+
import { IStreamConfig } from '../../../models/IStreamConfig';
|
7
|
+
export declare class CallerStreamNode extends CallerStreamAbstract {
|
8
|
+
private client;
|
9
|
+
constructor(config: IStreamConfig);
|
10
|
+
protected callStream(request: ServiceRequest | RequestCancellation, params: ICallerParams): Observable<IRocosCallerMessage>;
|
11
|
+
protected setPayload(request: ServiceRequest, payload: string): void;
|
12
|
+
private getMetadata;
|
13
|
+
}
|
@@ -0,0 +1,128 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
5
|
+
}) : (function(o, m, k, k2) {
|
6
|
+
if (k2 === undefined) k2 = k;
|
7
|
+
o[k2] = m[k];
|
8
|
+
}));
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
11
|
+
}) : function(o, v) {
|
12
|
+
o["default"] = v;
|
13
|
+
});
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
15
|
+
if (mod && mod.__esModule) return mod;
|
16
|
+
var result = {};
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
18
|
+
__setModuleDefault(result, mod);
|
19
|
+
return result;
|
20
|
+
};
|
21
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
22
|
+
exports.CallerStreamNode = void 0;
|
23
|
+
const grpc = __importStar(require("@grpc/grpc-js"));
|
24
|
+
const rxjs_1 = require("rxjs");
|
25
|
+
const serviette_v1_pb_1 = require("../../../grpc/serviette/serviette.v1_pb");
|
26
|
+
const CallerStreamAbstract_1 = require("./CallerStreamAbstract");
|
27
|
+
const RocosCallerMessage_1 = require("../../../models/message/RocosCallerMessage");
|
28
|
+
const RocosLogger_1 = require("../../../logger/RocosLogger");
|
29
|
+
const serviette_v1_grpc_pb_1 = require("../../../grpc/serviette/serviette.v1_grpc_pb");
|
30
|
+
const SubscriberStatusEnum_1 = require("../../../models/SubscriberStatusEnum");
|
31
|
+
class CallerStreamNode extends CallerStreamAbstract_1.CallerStreamAbstract {
|
32
|
+
constructor(config) {
|
33
|
+
super(config);
|
34
|
+
this.logger = RocosLogger_1.RocosLogger.getInstance(`CallerStreamNode(${this.identifier})`);
|
35
|
+
const port = config.port || 443;
|
36
|
+
const credentials = config.insecure ? grpc.credentials.createInsecure() : grpc.credentials.createSsl();
|
37
|
+
this.client = new serviette_v1_grpc_pb_1.ServiceCallerClient(`${this.url}:${port}`, credentials);
|
38
|
+
}
|
39
|
+
callStream(request, params) {
|
40
|
+
const metadata = this.getMetadata(params.projectId, params.callsign, params.subSystem);
|
41
|
+
let call;
|
42
|
+
return new rxjs_1.Observable((emitter) => {
|
43
|
+
call = this.client.callServices(metadata);
|
44
|
+
const req = new serviette_v1_pb_1.RequestChannelMessage();
|
45
|
+
let requestType = 'invoke';
|
46
|
+
if (request instanceof serviette_v1_pb_1.RequestCancellation) {
|
47
|
+
const rc = new serviette_v1_pb_1.RequestCancellations();
|
48
|
+
rc.addCancellations(request);
|
49
|
+
req.setCancellations(rc);
|
50
|
+
requestType = 'cancel';
|
51
|
+
}
|
52
|
+
else {
|
53
|
+
const sr = new serviette_v1_pb_1.ServiceRequests();
|
54
|
+
sr.addRequests(request);
|
55
|
+
req.setRequests(sr);
|
56
|
+
}
|
57
|
+
this.logger.info(`${requestType}Request - call`);
|
58
|
+
this.subscriberStatus = SubscriberStatusEnum_1.SubscriberStatusEnum.ALIVE;
|
59
|
+
this.statusStream$.next(this.subscriberStatus);
|
60
|
+
call.write(req, () => {
|
61
|
+
this.logger.info(`${requestType}Request write completed for - ${req}`);
|
62
|
+
});
|
63
|
+
call.on('data', (update) => {
|
64
|
+
const message = RocosCallerMessage_1.RocosCallerMessage.fromModel(update);
|
65
|
+
emitter.next(message);
|
66
|
+
this.logger.debug(`${requestType}Request - on(data)`, {
|
67
|
+
message,
|
68
|
+
projectId: params.projectId,
|
69
|
+
callsign: params.callsign,
|
70
|
+
component: params.component,
|
71
|
+
topic: params.topic,
|
72
|
+
});
|
73
|
+
});
|
74
|
+
call.on('finish', () => {
|
75
|
+
this.logger.info(`${requestType}Request - on(finish) all writes are now complete`);
|
76
|
+
call.end();
|
77
|
+
});
|
78
|
+
call.on('end', () => {
|
79
|
+
this.subscriberStatus = SubscriberStatusEnum_1.SubscriberStatusEnum.STOPPED;
|
80
|
+
this.statusStream$.next(this.subscriberStatus);
|
81
|
+
this.logger.debug(`${requestType}Request - on(end)`, {
|
82
|
+
projectId: params.projectId,
|
83
|
+
callsign: params.callsign,
|
84
|
+
component: params.component,
|
85
|
+
topic: params.topic,
|
86
|
+
});
|
87
|
+
call.pause();
|
88
|
+
call.destroy();
|
89
|
+
this.client.close();
|
90
|
+
emitter.complete();
|
91
|
+
});
|
92
|
+
call.on('close', () => {
|
93
|
+
this.subscriberStatus = SubscriberStatusEnum_1.SubscriberStatusEnum.STOPPED;
|
94
|
+
this.statusStream$.next(this.subscriberStatus);
|
95
|
+
this.logger.debug(`${requestType}Request - on(close)`);
|
96
|
+
});
|
97
|
+
call.on('error', (error) => {
|
98
|
+
this.subscriberStatus = SubscriberStatusEnum_1.SubscriberStatusEnum.ERROR;
|
99
|
+
this.statusStream$.next(this.subscriberStatus);
|
100
|
+
if (error.stack.match('2 UNKNOWN: heartbeat watchdog strike')) {
|
101
|
+
this.logger.debug(`${requestType}Request grpc Error heartbeat error`, error);
|
102
|
+
call.end();
|
103
|
+
emitter.complete();
|
104
|
+
}
|
105
|
+
else {
|
106
|
+
this.logger.error(`${requestType}Request - on(error)`, error);
|
107
|
+
emitter.error(error);
|
108
|
+
}
|
109
|
+
});
|
110
|
+
return () => {
|
111
|
+
this.logger.debug('unsubscribing callStream');
|
112
|
+
call.cancel();
|
113
|
+
};
|
114
|
+
});
|
115
|
+
}
|
116
|
+
setPayload(request, payload) {
|
117
|
+
request.setPayload(Buffer.from(payload).toString('base64'));
|
118
|
+
}
|
119
|
+
getMetadata(projectId, callsign, subsystem) {
|
120
|
+
const meta = new grpc.Metadata();
|
121
|
+
meta.add('r-p', projectId);
|
122
|
+
meta.add('r-cs', callsign);
|
123
|
+
meta.add('r-s', subsystem || '');
|
124
|
+
meta.add('authorization', this.token);
|
125
|
+
return meta;
|
126
|
+
}
|
127
|
+
}
|
128
|
+
exports.CallerStreamNode = CallerStreamNode;
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { CommandRequest } from '../../../grpc/rambo/rambo.v1_pb';
|
2
|
+
import { Observable } from 'rxjs';
|
3
|
+
import { CommandStreamAbstract } from './CommandStreamAbstract';
|
4
|
+
import { ICommandParams } from '../../../models/params/ICommandParams';
|
5
|
+
import { IRocosCommandMessage } from '../../../models/message/IRocosCommandMessage';
|
6
|
+
import { IStreamConfig } from '../../../models/IStreamConfig';
|
7
|
+
export declare class CommandStream extends CommandStreamAbstract {
|
8
|
+
private client;
|
9
|
+
constructor(config: IStreamConfig);
|
10
|
+
protected callStream(request: CommandRequest, params: ICommandParams): Observable<IRocosCommandMessage>;
|
11
|
+
private getMetadata;
|
12
|
+
}
|
@@ -0,0 +1,68 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.CommandStream = void 0;
|
4
|
+
const rambo_v1_pb_service_1 = require("../../../grpc/rambo/rambo.v1_pb_service");
|
5
|
+
const rxjs_1 = require("rxjs");
|
6
|
+
const CommandStreamAbstract_1 = require("./CommandStreamAbstract");
|
7
|
+
const RocosCommandMessage_1 = require("../../../models/message/RocosCommandMessage");
|
8
|
+
const RocosLogger_1 = require("../../../logger/RocosLogger");
|
9
|
+
const SubscriberStatusEnum_1 = require("../../../models/SubscriberStatusEnum");
|
10
|
+
class CommandStream extends CommandStreamAbstract_1.CommandStreamAbstract {
|
11
|
+
constructor(config) {
|
12
|
+
super(config);
|
13
|
+
this.logger = RocosLogger_1.RocosLogger.getInstance(`CommandStream(${this.identifier})`);
|
14
|
+
const protocol = config.insecure ? 'http' : 'https';
|
15
|
+
this.client = new rambo_v1_pb_service_1.CommandClient(`${protocol}://${this.url}`);
|
16
|
+
}
|
17
|
+
callStream(request, params) {
|
18
|
+
const metadata = this.getMetadata(params.projectId, params.callsign);
|
19
|
+
let call;
|
20
|
+
return new rxjs_1.Observable((emitter) => {
|
21
|
+
call = this.client.callCommand(request, metadata);
|
22
|
+
this.subscriberStatus = SubscriberStatusEnum_1.SubscriberStatusEnum.ALIVE;
|
23
|
+
this.statusStream$.next(this.subscriberStatus);
|
24
|
+
call.on('data', (update) => {
|
25
|
+
const message = RocosCommandMessage_1.RocosCommandMessage.fromModel(update);
|
26
|
+
emitter.next(message);
|
27
|
+
this.logger.debug('invokeRequest - on(data)', {
|
28
|
+
message,
|
29
|
+
projectId: params.projectId,
|
30
|
+
callsign: params.callsign,
|
31
|
+
commandId: params.commandId,
|
32
|
+
});
|
33
|
+
});
|
34
|
+
call.on('end', () => {
|
35
|
+
this.subscriberStatus = SubscriberStatusEnum_1.SubscriberStatusEnum.STOPPED;
|
36
|
+
this.statusStream$.next(this.subscriberStatus);
|
37
|
+
this.logger.debug('invokeRequest - on(end)', {
|
38
|
+
projectId: params.projectId,
|
39
|
+
callsign: params.callsign,
|
40
|
+
commandId: params.commandId,
|
41
|
+
});
|
42
|
+
emitter.complete();
|
43
|
+
});
|
44
|
+
call.on('status', (status) => {
|
45
|
+
this.logger.debug('invokeRequest - on(status)', {
|
46
|
+
status,
|
47
|
+
projectId: params.projectId,
|
48
|
+
callsign: params.callsign,
|
49
|
+
commandId: params.commandId,
|
50
|
+
});
|
51
|
+
// TODO: match fail status and emit an error
|
52
|
+
// emitter.error(error)
|
53
|
+
});
|
54
|
+
return () => {
|
55
|
+
this.logger.debug('unsubscribing commandStream');
|
56
|
+
call.cancel();
|
57
|
+
};
|
58
|
+
});
|
59
|
+
}
|
60
|
+
getMetadata(projectId, callsign) {
|
61
|
+
return {
|
62
|
+
'authorization': this.token,
|
63
|
+
'r-p': projectId,
|
64
|
+
'r-cs': callsign,
|
65
|
+
};
|
66
|
+
}
|
67
|
+
}
|
68
|
+
exports.CommandStream = CommandStream;
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
2
|
+
import { CommandRequest } from '../../../grpc/rambo/rambo.v1_pb';
|
3
|
+
import { ICommandParams } from '../../../models/params/ICommandParams';
|
4
|
+
import { ICommandStream } from '../../../models/stream/ICommandStream';
|
5
|
+
import { IRocosCommandMessage } from '../../../models/message/IRocosCommandMessage';
|
6
|
+
import { IStreamConfig } from '../../../models/IStreamConfig';
|
7
|
+
import { Logger } from 'loglevel';
|
8
|
+
import { SubscriberStatusEnum } from '../../../models/SubscriberStatusEnum';
|
9
|
+
export declare abstract class CommandStreamAbstract implements ICommandStream {
|
10
|
+
identifier: string;
|
11
|
+
statusStream$: BehaviorSubject<SubscriberStatusEnum>;
|
12
|
+
protected token: string;
|
13
|
+
private scope;
|
14
|
+
protected url: string;
|
15
|
+
protected subscriberStatus: SubscriberStatusEnum;
|
16
|
+
protected logger: Logger;
|
17
|
+
constructor(config: IStreamConfig);
|
18
|
+
protected abstract callStream(request: CommandRequest, params: ICommandParams): Observable<IRocosCommandMessage>;
|
19
|
+
setToken(token: string): void;
|
20
|
+
stopStream(): void;
|
21
|
+
invokeRequest(params: ICommandParams): Observable<IRocosCommandMessage>;
|
22
|
+
private createCommandRequest;
|
23
|
+
private createRocosUriPath;
|
24
|
+
}
|
@@ -0,0 +1,72 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.CommandStreamAbstract = void 0;
|
4
|
+
const rxjs_1 = require("rxjs");
|
5
|
+
const uri_v1_pb_1 = require("../../../grpc/rambo/uri.v1_pb");
|
6
|
+
const rambo_v1_pb_1 = require("../../../grpc/rambo/rambo.v1_pb");
|
7
|
+
const identifier_1 = require("../../../constants/identifier");
|
8
|
+
const ResponseLevelEnum_1 = require("../../../models/ResponseLevelEnum");
|
9
|
+
const RocosStore_1 = require("../../../store/RocosStore");
|
10
|
+
const StreamRegister_1 = require("../../StreamRegister");
|
11
|
+
const SubscriberStatusEnum_1 = require("../../../models/SubscriberStatusEnum");
|
12
|
+
const operators_1 = require("rxjs/operators");
|
13
|
+
const getUnixTimeMs_1 = require("../../../helpers/getUnixTimeMs");
|
14
|
+
const randomString_1 = require("../../../helpers/randomString");
|
15
|
+
class CommandStreamAbstract {
|
16
|
+
constructor(config) {
|
17
|
+
this.subscriberStatus = SubscriberStatusEnum_1.SubscriberStatusEnum.STOPPED;
|
18
|
+
this.scope = config.scope;
|
19
|
+
this.identifier = StreamRegister_1.StreamRegister.getIdentifier(identifier_1.IDENTIFIER_NAME_COMMAND, this.scope);
|
20
|
+
this.token = config.token;
|
21
|
+
this.url = config.url;
|
22
|
+
this.statusStream$ = new rxjs_1.BehaviorSubject(SubscriberStatusEnum_1.SubscriberStatusEnum.STOPPED);
|
23
|
+
RocosStore_1.RocosStore.getChangeSubject()
|
24
|
+
.pipe(operators_1.filter((message) => {
|
25
|
+
return message.type === 'token' && message.url === this.url;
|
26
|
+
}))
|
27
|
+
.subscribe((msg) => {
|
28
|
+
this.token = msg.data;
|
29
|
+
});
|
30
|
+
}
|
31
|
+
setToken(token) {
|
32
|
+
this.token = token;
|
33
|
+
}
|
34
|
+
stopStream() {
|
35
|
+
// do nothing for now
|
36
|
+
}
|
37
|
+
invokeRequest(params) {
|
38
|
+
if (params.timeoutMs === undefined || params.timeoutMs === null) {
|
39
|
+
params.timeoutMs = 30 * 1000; // Default 30 seconds.
|
40
|
+
}
|
41
|
+
this.logger.info('invokeRequest', params);
|
42
|
+
const request = this.createCommandRequest(params.projectId, params.callsign, params.commandId, params.parameters, params.timeoutMs, params.responseLevel);
|
43
|
+
return this.callStream(request, params);
|
44
|
+
}
|
45
|
+
createCommandRequest(projectId, callsign, commandId, parameters, timeoutMs = 30 * 1000, // Default 30 seconds.
|
46
|
+
responseLevel = ResponseLevelEnum_1.ResponseLevelEnum.ALL) {
|
47
|
+
const path = this.createRocosUriPath(projectId, callsign, commandId);
|
48
|
+
const uri = new uri_v1_pb_1.RocosUri();
|
49
|
+
uri.setPath(path);
|
50
|
+
uri.setScheme(uri_v1_pb_1.RocosUriScheme.GRPC);
|
51
|
+
const request = new rambo_v1_pb_1.CommandRequest();
|
52
|
+
request.setTxid(randomString_1.randomString());
|
53
|
+
request.setUri(uri);
|
54
|
+
request.setReslevel(responseLevel);
|
55
|
+
if (parameters) {
|
56
|
+
Object.keys(parameters).forEach((key) => {
|
57
|
+
request.getParametersMap().set(key, parameters[key]);
|
58
|
+
});
|
59
|
+
}
|
60
|
+
request.setDeadlinems(getUnixTimeMs_1.getUnixTimeMs(timeoutMs));
|
61
|
+
return request;
|
62
|
+
}
|
63
|
+
createRocosUriPath(projectId, callsign, commandId) {
|
64
|
+
const path = new uri_v1_pb_1.RocosUriPath();
|
65
|
+
path.setProject(projectId);
|
66
|
+
path.setCallsign(callsign);
|
67
|
+
path.setTopic(commandId);
|
68
|
+
path.setComponent('command-executor');
|
69
|
+
return path;
|
70
|
+
}
|
71
|
+
}
|
72
|
+
exports.CommandStreamAbstract = CommandStreamAbstract;
|