rsmp 0.43.2 → 0.45.1
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.
- checksums.yaml +4 -4
- data/.github/workflows/rubocop.yaml +1 -1
- data/.github/workflows/sus.yaml +1 -1
- data/.gitignore +0 -1
- data/CHANGELOG.md +12 -1
- data/Gemfile +0 -2
- data/Gemfile.lock +10 -88
- data/README.md +30 -35
- data/Rakefile +2 -2
- data/config/supervisor.yaml +2 -1
- data/config/tlc.yaml +2 -2
- data/documentation/configuration.md +12 -11
- data/documentation/message_distribution.md +1 -2
- data/documentation/tasks.md +1 -2
- data/exe/rsmp +1 -2
- data/lib/rsmp/cli.rb +62 -8
- data/lib/rsmp/component/component.rb +0 -4
- data/lib/rsmp/component/component_base.rb +15 -2
- data/lib/rsmp/component/component_proxy.rb +1 -1
- data/lib/rsmp/component/components.rb +22 -1
- data/lib/rsmp/convert/export/json_schema/outputs.rb +19 -0
- data/lib/rsmp/convert/export/json_schema/values.rb +7 -5
- data/lib/rsmp/convert/export/json_schema.rb +15 -3
- data/lib/rsmp/helpers/deep_merge.rb +2 -2
- data/lib/rsmp/message.rb +32 -0
- data/lib/rsmp/node/site/site.rb +34 -10
- data/lib/rsmp/node/supervisor/modules/configuration.rb +32 -5
- data/lib/rsmp/node/supervisor/modules/connection.rb +0 -2
- data/lib/rsmp/node/supervisor/supervisor.rb +0 -7
- data/lib/rsmp/options/options.rb +55 -6
- data/lib/rsmp/options/schemas/site.json +6 -3
- data/lib/rsmp/options/schemas/supervisor.json +5 -2
- data/lib/rsmp/options/schemas/supervisor_site.json +5 -2
- data/lib/rsmp/options/site_options.rb +3 -2
- data/lib/rsmp/options/supervisor_options.rb +3 -1
- data/lib/rsmp/proxy/modules/acknowledgements.rb +2 -0
- data/lib/rsmp/proxy/modules/receive.rb +5 -2
- data/lib/rsmp/proxy/modules/state.rb +1 -0
- data/lib/rsmp/proxy/modules/versions.rb +90 -15
- data/lib/rsmp/proxy/proxy.rb +52 -3
- data/lib/rsmp/proxy/site/modules/status.rb +5 -3
- data/lib/rsmp/proxy/site/site_proxy.rb +68 -35
- data/lib/rsmp/proxy/site/sxl_selection.rb +54 -0
- data/lib/rsmp/proxy/supervisor/supervisor_proxy.rb +54 -18
- data/lib/rsmp/schema/core_sxl_resolution.rb +69 -0
- data/lib/rsmp/schema/message_resolution.rb +104 -0
- data/lib/rsmp/schema/validation.rb +57 -0
- data/lib/rsmp/schema.rb +87 -32
- data/lib/rsmp/schema_error.rb +7 -1
- data/lib/rsmp/sxl/interface.rb +48 -0
- data/lib/rsmp/sxl/registry.rb +55 -0
- data/lib/rsmp/sxl/site_interface.rb +10 -0
- data/lib/rsmp/sxl/supervisor_interface.rb +21 -0
- data/lib/rsmp/tlc/detector_logic.rb +2 -2
- data/lib/rsmp/tlc/signal_group.rb +2 -2
- data/lib/rsmp/tlc/site_interface.rb +10 -0
- data/lib/rsmp/tlc/{traffic_controller_proxy.rb → supervisor_interface.rb} +19 -34
- data/lib/rsmp/tlc/traffic_controller.rb +10 -2
- data/lib/rsmp/tlc/traffic_controller_site.rb +4 -2
- data/lib/rsmp/tlc.rb +10 -0
- data/lib/rsmp/version.rb +1 -1
- data/lib/rsmp.rb +8 -1
- data/rsmp.gemspec +5 -5
- data/schemas/core/3.3.0/aggregated_status.json +25 -0
- data/schemas/core/3.3.0/aggregated_status_request.json +9 -0
- data/schemas/core/3.3.0/alarm.json +71 -0
- data/schemas/core/3.3.0/alarm_acknowledge.json +11 -0
- data/schemas/core/3.3.0/alarm_issue.json +44 -0
- data/schemas/core/3.3.0/alarm_request.json +3 -0
- data/schemas/core/3.3.0/alarm_suspend_resume.json +3 -0
- data/schemas/core/3.3.0/alarm_suspended_resumed.json +44 -0
- data/schemas/core/3.3.0/command_request.json +24 -0
- data/schemas/core/3.3.0/command_response.json +35 -0
- data/schemas/core/3.3.0/component_list.json +24 -0
- data/schemas/core/3.3.0/core.json +40 -0
- data/schemas/core/3.3.0/definitions.json +133 -0
- data/schemas/core/3.3.0/message_ack.json +11 -0
- data/schemas/core/3.3.0/message_not_ack.json +15 -0
- data/schemas/core/3.3.0/rsmp.json +142 -0
- data/schemas/core/3.3.0/status.json +21 -0
- data/schemas/core/3.3.0/status_request.json +5 -0
- data/schemas/core/3.3.0/status_response.json +41 -0
- data/schemas/core/3.3.0/status_subscribe.json +31 -0
- data/schemas/core/3.3.0/status_unsubscribe.json +5 -0
- data/schemas/core/3.3.0/status_update.json +41 -0
- data/schemas/core/3.3.0/version.json +144 -0
- data/schemas/core/3.3.0/watchdog.json +9 -0
- data/schemas/tlc/1.0.10/rsmp.json +2 -1
- data/schemas/tlc/1.0.10/sxl.yaml +1 -0
- data/schemas/tlc/1.0.10/sxl_index.json +356 -0
- data/schemas/tlc/1.0.13/rsmp.json +2 -1
- data/schemas/tlc/1.0.13/sxl.yaml +1 -0
- data/schemas/tlc/1.0.13/sxl_index.json +436 -0
- data/schemas/tlc/1.0.14/rsmp.json +2 -1
- data/schemas/tlc/1.0.14/sxl.yaml +1 -0
- data/schemas/tlc/1.0.14/sxl_index.json +468 -0
- data/schemas/tlc/1.0.15/rsmp.json +2 -1
- data/schemas/tlc/1.0.15/sxl.yaml +1 -0
- data/schemas/tlc/1.0.15/sxl_index.json +508 -0
- data/schemas/tlc/1.0.7/rsmp.json +2 -1
- data/schemas/tlc/1.0.7/sxl.yaml +1 -0
- data/schemas/tlc/1.0.7/sxl_index.json +356 -0
- data/schemas/tlc/1.0.8/rsmp.json +2 -1
- data/schemas/tlc/1.0.8/sxl.yaml +1 -0
- data/schemas/tlc/1.0.8/sxl_index.json +356 -0
- data/schemas/tlc/1.0.9/rsmp.json +2 -1
- data/schemas/tlc/1.0.9/sxl.yaml +1 -0
- data/schemas/tlc/1.0.9/sxl_index.json +356 -0
- data/schemas/tlc/1.1.0/rsmp.json +2 -1
- data/schemas/tlc/1.1.0/sxl.yaml +1 -0
- data/schemas/tlc/1.1.0/sxl_index.json +572 -0
- data/schemas/tlc/1.2.0/rsmp.json +2 -1
- data/schemas/tlc/1.2.0/sxl.yaml +1 -0
- data/schemas/tlc/1.2.0/sxl_index.json +571 -0
- data/schemas/tlc/1.2.1/rsmp.json +2 -1
- data/schemas/tlc/1.2.1/sxl.yaml +1 -0
- data/schemas/tlc/1.2.1/sxl_index.json +571 -0
- data/schemas/tlc/1.3.0/alarms/A0001.json +4 -0
- data/schemas/tlc/1.3.0/alarms/A0002.json +4 -0
- data/schemas/tlc/1.3.0/alarms/A0003.json +4 -0
- data/schemas/tlc/1.3.0/alarms/A0004.json +4 -0
- data/schemas/tlc/1.3.0/alarms/A0005.json +4 -0
- data/schemas/tlc/1.3.0/alarms/A0006.json +4 -0
- data/schemas/tlc/1.3.0/alarms/A0007.json +34 -0
- data/schemas/tlc/1.3.0/alarms/A0008.json +30 -0
- data/schemas/tlc/1.3.0/alarms/A0009.json +4 -0
- data/schemas/tlc/1.3.0/alarms/A0010.json +4 -0
- data/schemas/tlc/1.3.0/alarms/A0101.json +4 -0
- data/schemas/tlc/1.3.0/alarms/A0201.json +35 -0
- data/schemas/tlc/1.3.0/alarms/A0202.json +35 -0
- data/schemas/tlc/1.3.0/alarms/A0301.json +92 -0
- data/schemas/tlc/1.3.0/alarms/A0302.json +115 -0
- data/schemas/tlc/1.3.0/alarms/A0303.json +92 -0
- data/schemas/tlc/1.3.0/alarms/A0304.json +115 -0
- data/schemas/tlc/1.3.0/alarms/alarms.json +287 -0
- data/schemas/tlc/1.3.0/commands/M0001.json +92 -0
- data/schemas/tlc/1.3.0/commands/M0002.json +69 -0
- data/schemas/tlc/1.3.0/commands/M0003.json +69 -0
- data/schemas/tlc/1.3.0/commands/M0004.json +51 -0
- data/schemas/tlc/1.3.0/commands/M0005.json +69 -0
- data/schemas/tlc/1.3.0/commands/M0006.json +69 -0
- data/schemas/tlc/1.3.0/commands/M0007.json +51 -0
- data/schemas/tlc/1.3.0/commands/M0008.json +87 -0
- data/schemas/tlc/1.3.0/commands/M0010.json +51 -0
- data/schemas/tlc/1.3.0/commands/M0011.json +51 -0
- data/schemas/tlc/1.3.0/commands/M0012.json +51 -0
- data/schemas/tlc/1.3.0/commands/M0013.json +51 -0
- data/schemas/tlc/1.3.0/commands/M0014.json +69 -0
- data/schemas/tlc/1.3.0/commands/M0015.json +69 -0
- data/schemas/tlc/1.3.0/commands/M0016.json +51 -0
- data/schemas/tlc/1.3.0/commands/M0017.json +51 -0
- data/schemas/tlc/1.3.0/commands/M0018.json +69 -0
- data/schemas/tlc/1.3.0/commands/M0019.json +87 -0
- data/schemas/tlc/1.3.0/commands/M0020.json +87 -0
- data/schemas/tlc/1.3.0/commands/M0021.json +51 -0
- data/schemas/tlc/1.3.0/commands/M0022.json +249 -0
- data/schemas/tlc/1.3.0/commands/M0023.json +51 -0
- data/schemas/tlc/1.3.0/commands/M0024.json +33 -0
- data/schemas/tlc/1.3.0/commands/M0103.json +72 -0
- data/schemas/tlc/1.3.0/commands/M0104.json +141 -0
- data/schemas/tlc/1.3.0/commands/command_requests.json +8 -0
- data/schemas/tlc/1.3.0/commands/command_responses.json +8 -0
- data/schemas/tlc/1.3.0/commands/commands.json +415 -0
- data/schemas/tlc/1.3.0/defs/definitions.json +133 -0
- data/schemas/tlc/1.3.0/defs/guards.json +24 -0
- data/schemas/tlc/1.3.0/rsmp.json +75 -0
- data/schemas/tlc/1.3.0/statuses/S0001.json +109 -0
- data/schemas/tlc/1.3.0/statuses/S0002.json +36 -0
- data/schemas/tlc/1.3.0/statuses/S0003.json +36 -0
- data/schemas/tlc/1.3.0/statuses/S0004.json +36 -0
- data/schemas/tlc/1.3.0/statuses/S0005.json +72 -0
- data/schemas/tlc/1.3.0/statuses/S0006.json +54 -0
- data/schemas/tlc/1.3.0/statuses/S0007.json +73 -0
- data/schemas/tlc/1.3.0/statuses/S0008.json +73 -0
- data/schemas/tlc/1.3.0/statuses/S0009.json +73 -0
- data/schemas/tlc/1.3.0/statuses/S0010.json +73 -0
- data/schemas/tlc/1.3.0/statuses/S0011.json +73 -0
- data/schemas/tlc/1.3.0/statuses/S0012.json +73 -0
- data/schemas/tlc/1.3.0/statuses/S0013.json +54 -0
- data/schemas/tlc/1.3.0/statuses/S0014.json +55 -0
- data/schemas/tlc/1.3.0/statuses/S0015.json +55 -0
- data/schemas/tlc/1.3.0/statuses/S0016.json +36 -0
- data/schemas/tlc/1.3.0/statuses/S0017.json +36 -0
- data/schemas/tlc/1.3.0/statuses/S0018.json +61 -0
- data/schemas/tlc/1.3.0/statuses/S0019.json +36 -0
- data/schemas/tlc/1.3.0/statuses/S0020.json +54 -0
- data/schemas/tlc/1.3.0/statuses/S0021.json +37 -0
- data/schemas/tlc/1.3.0/statuses/S0022.json +36 -0
- data/schemas/tlc/1.3.0/statuses/S0023.json +37 -0
- data/schemas/tlc/1.3.0/statuses/S0024.json +37 -0
- data/schemas/tlc/1.3.0/statuses/S0025.json +162 -0
- data/schemas/tlc/1.3.0/statuses/S0026.json +36 -0
- data/schemas/tlc/1.3.0/statuses/S0027.json +36 -0
- data/schemas/tlc/1.3.0/statuses/S0028.json +36 -0
- data/schemas/tlc/1.3.0/statuses/S0029.json +36 -0
- data/schemas/tlc/1.3.0/statuses/S0030.json +36 -0
- data/schemas/tlc/1.3.0/statuses/S0031.json +36 -0
- data/schemas/tlc/1.3.0/statuses/S0032.json +73 -0
- data/schemas/tlc/1.3.0/statuses/S0033.json +77 -0
- data/schemas/tlc/1.3.0/statuses/S0034.json +36 -0
- data/schemas/tlc/1.3.0/statuses/S0035.json +49 -0
- data/schemas/tlc/1.3.0/statuses/S0091.json +40 -0
- data/schemas/tlc/1.3.0/statuses/S0092.json +40 -0
- data/schemas/tlc/1.3.0/statuses/S0095.json +36 -0
- data/schemas/tlc/1.3.0/statuses/S0096.json +126 -0
- data/schemas/tlc/1.3.0/statuses/S0097.json +54 -0
- data/schemas/tlc/1.3.0/statuses/S0098.json +72 -0
- data/schemas/tlc/1.3.0/statuses/S0201.json +54 -0
- data/schemas/tlc/1.3.0/statuses/S0202.json +54 -0
- data/schemas/tlc/1.3.0/statuses/S0203.json +54 -0
- data/schemas/tlc/1.3.0/statuses/S0204.json +198 -0
- data/schemas/tlc/1.3.0/statuses/S0205.json +54 -0
- data/schemas/tlc/1.3.0/statuses/S0206.json +54 -0
- data/schemas/tlc/1.3.0/statuses/S0207.json +54 -0
- data/schemas/tlc/1.3.0/statuses/S0208.json +198 -0
- data/schemas/tlc/1.3.0/statuses/statuses.json +787 -0
- data/schemas/tlc/1.3.0/sxl.yaml +2297 -0
- data/schemas/tlc/1.3.0/sxl_index.json +578 -0
- metadata +157 -15
- data/.github/copilot-instructions.md +0 -33
- data/.rspec +0 -1
- data/cucumber.yml +0 -1
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rsmp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.45.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Emil Tin
|
|
@@ -15,14 +15,14 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - "~>"
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: '2.
|
|
18
|
+
version: '2.39'
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - "~>"
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: '2.
|
|
25
|
+
version: '2.39'
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: colorize
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -43,28 +43,28 @@ dependencies:
|
|
|
43
43
|
requirements:
|
|
44
44
|
- - "~>"
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: '0.
|
|
46
|
+
version: '0.17'
|
|
47
47
|
type: :runtime
|
|
48
48
|
prerelease: false
|
|
49
49
|
version_requirements: !ruby/object:Gem::Requirement
|
|
50
50
|
requirements:
|
|
51
51
|
- - "~>"
|
|
52
52
|
- !ruby/object:Gem::Version
|
|
53
|
-
version: '0.
|
|
53
|
+
version: '0.17'
|
|
54
54
|
- !ruby/object:Gem::Dependency
|
|
55
55
|
name: io-stream
|
|
56
56
|
requirement: !ruby/object:Gem::Requirement
|
|
57
57
|
requirements:
|
|
58
58
|
- - "~>"
|
|
59
59
|
- !ruby/object:Gem::Version
|
|
60
|
-
version: '0.
|
|
60
|
+
version: '0.13'
|
|
61
61
|
type: :runtime
|
|
62
62
|
prerelease: false
|
|
63
63
|
version_requirements: !ruby/object:Gem::Requirement
|
|
64
64
|
requirements:
|
|
65
65
|
- - "~>"
|
|
66
66
|
- !ruby/object:Gem::Version
|
|
67
|
-
version: '0.
|
|
67
|
+
version: '0.13'
|
|
68
68
|
- !ruby/object:Gem::Dependency
|
|
69
69
|
name: json_schemer
|
|
70
70
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -85,14 +85,14 @@ dependencies:
|
|
|
85
85
|
requirements:
|
|
86
86
|
- - "~>"
|
|
87
87
|
- !ruby/object:Gem::Version
|
|
88
|
-
version: '1.
|
|
88
|
+
version: '1.7'
|
|
89
89
|
type: :runtime
|
|
90
90
|
prerelease: false
|
|
91
91
|
version_requirements: !ruby/object:Gem::Requirement
|
|
92
92
|
requirements:
|
|
93
93
|
- - "~>"
|
|
94
94
|
- !ruby/object:Gem::Version
|
|
95
|
-
version: '1.
|
|
95
|
+
version: '1.7'
|
|
96
96
|
- !ruby/object:Gem::Dependency
|
|
97
97
|
name: ostruct
|
|
98
98
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -130,13 +130,11 @@ extensions: []
|
|
|
130
130
|
extra_rdoc_files: []
|
|
131
131
|
files:
|
|
132
132
|
- ".devcontainer/devcontainer.json"
|
|
133
|
-
- ".github/copilot-instructions.md"
|
|
134
133
|
- ".github/workflows/copilot-setup-steps.yml"
|
|
135
134
|
- ".github/workflows/rubocop.yaml"
|
|
136
135
|
- ".github/workflows/sus.yaml"
|
|
137
136
|
- ".gitignore"
|
|
138
137
|
- ".gitmodules"
|
|
139
|
-
- ".rspec"
|
|
140
138
|
- ".rubocop.yml"
|
|
141
139
|
- ".tool-versions"
|
|
142
140
|
- CHANGELOG.md
|
|
@@ -150,7 +148,6 @@ files:
|
|
|
150
148
|
- config/supervisor.yaml
|
|
151
149
|
- config/sus.rb
|
|
152
150
|
- config/tlc.yaml
|
|
153
|
-
- cucumber.yml
|
|
154
151
|
- documentation/classes_and_modules.md
|
|
155
152
|
- documentation/collecting_message.md
|
|
156
153
|
- documentation/configuration.md
|
|
@@ -226,14 +223,23 @@ files:
|
|
|
226
223
|
- lib/rsmp/proxy/site/modules/commands.rb
|
|
227
224
|
- lib/rsmp/proxy/site/modules/status.rb
|
|
228
225
|
- lib/rsmp/proxy/site/site_proxy.rb
|
|
226
|
+
- lib/rsmp/proxy/site/sxl_selection.rb
|
|
229
227
|
- lib/rsmp/proxy/supervisor/modules/aggregated_status.rb
|
|
230
228
|
- lib/rsmp/proxy/supervisor/modules/alarms.rb
|
|
231
229
|
- lib/rsmp/proxy/supervisor/modules/commands.rb
|
|
232
230
|
- lib/rsmp/proxy/supervisor/modules/status.rb
|
|
233
231
|
- lib/rsmp/proxy/supervisor/supervisor_proxy.rb
|
|
234
232
|
- lib/rsmp/schema.rb
|
|
233
|
+
- lib/rsmp/schema/core_sxl_resolution.rb
|
|
234
|
+
- lib/rsmp/schema/message_resolution.rb
|
|
235
|
+
- lib/rsmp/schema/validation.rb
|
|
235
236
|
- lib/rsmp/schema_error.rb
|
|
236
237
|
- lib/rsmp/status_list.rb
|
|
238
|
+
- lib/rsmp/sxl/interface.rb
|
|
239
|
+
- lib/rsmp/sxl/registry.rb
|
|
240
|
+
- lib/rsmp/sxl/site_interface.rb
|
|
241
|
+
- lib/rsmp/sxl/supervisor_interface.rb
|
|
242
|
+
- lib/rsmp/tlc.rb
|
|
237
243
|
- lib/rsmp/tlc/detector_logic.rb
|
|
238
244
|
- lib/rsmp/tlc/input_states.rb
|
|
239
245
|
- lib/rsmp/tlc/modules/detector_logics.rb
|
|
@@ -256,9 +262,10 @@ files:
|
|
|
256
262
|
- lib/rsmp/tlc/signal_group.rb
|
|
257
263
|
- lib/rsmp/tlc/signal_plan.rb
|
|
258
264
|
- lib/rsmp/tlc/signal_priority.rb
|
|
265
|
+
- lib/rsmp/tlc/site_interface.rb
|
|
259
266
|
- lib/rsmp/tlc/startup_sequence.rb
|
|
267
|
+
- lib/rsmp/tlc/supervisor_interface.rb
|
|
260
268
|
- lib/rsmp/tlc/traffic_controller.rb
|
|
261
|
-
- lib/rsmp/tlc/traffic_controller_proxy.rb
|
|
262
269
|
- lib/rsmp/tlc/traffic_controller_site.rb
|
|
263
270
|
- lib/rsmp/version.rb
|
|
264
271
|
- rsmp.gemspec
|
|
@@ -417,6 +424,30 @@ files:
|
|
|
417
424
|
- schemas/core/3.2.2/status_update.json
|
|
418
425
|
- schemas/core/3.2.2/version.json
|
|
419
426
|
- schemas/core/3.2.2/watchdog.json
|
|
427
|
+
- schemas/core/3.3.0/aggregated_status.json
|
|
428
|
+
- schemas/core/3.3.0/aggregated_status_request.json
|
|
429
|
+
- schemas/core/3.3.0/alarm.json
|
|
430
|
+
- schemas/core/3.3.0/alarm_acknowledge.json
|
|
431
|
+
- schemas/core/3.3.0/alarm_issue.json
|
|
432
|
+
- schemas/core/3.3.0/alarm_request.json
|
|
433
|
+
- schemas/core/3.3.0/alarm_suspend_resume.json
|
|
434
|
+
- schemas/core/3.3.0/alarm_suspended_resumed.json
|
|
435
|
+
- schemas/core/3.3.0/command_request.json
|
|
436
|
+
- schemas/core/3.3.0/command_response.json
|
|
437
|
+
- schemas/core/3.3.0/component_list.json
|
|
438
|
+
- schemas/core/3.3.0/core.json
|
|
439
|
+
- schemas/core/3.3.0/definitions.json
|
|
440
|
+
- schemas/core/3.3.0/message_ack.json
|
|
441
|
+
- schemas/core/3.3.0/message_not_ack.json
|
|
442
|
+
- schemas/core/3.3.0/rsmp.json
|
|
443
|
+
- schemas/core/3.3.0/status.json
|
|
444
|
+
- schemas/core/3.3.0/status_request.json
|
|
445
|
+
- schemas/core/3.3.0/status_response.json
|
|
446
|
+
- schemas/core/3.3.0/status_subscribe.json
|
|
447
|
+
- schemas/core/3.3.0/status_unsubscribe.json
|
|
448
|
+
- schemas/core/3.3.0/status_update.json
|
|
449
|
+
- schemas/core/3.3.0/version.json
|
|
450
|
+
- schemas/core/3.3.0/watchdog.json
|
|
420
451
|
- schemas/tlc/1.0.10/alarms/A0001.json
|
|
421
452
|
- schemas/tlc/1.0.10/alarms/A0002.json
|
|
422
453
|
- schemas/tlc/1.0.10/alarms/A0003.json
|
|
@@ -484,6 +515,7 @@ files:
|
|
|
484
515
|
- schemas/tlc/1.0.10/statuses/S0204.json
|
|
485
516
|
- schemas/tlc/1.0.10/statuses/statuses.json
|
|
486
517
|
- schemas/tlc/1.0.10/sxl.yaml
|
|
518
|
+
- schemas/tlc/1.0.10/sxl_index.json
|
|
487
519
|
- schemas/tlc/1.0.13/alarms/A0001.json
|
|
488
520
|
- schemas/tlc/1.0.13/alarms/A0002.json
|
|
489
521
|
- schemas/tlc/1.0.13/alarms/A0003.json
|
|
@@ -564,6 +596,7 @@ files:
|
|
|
564
596
|
- schemas/tlc/1.0.13/statuses/S0204.json
|
|
565
597
|
- schemas/tlc/1.0.13/statuses/statuses.json
|
|
566
598
|
- schemas/tlc/1.0.13/sxl.yaml
|
|
599
|
+
- schemas/tlc/1.0.13/sxl_index.json
|
|
567
600
|
- schemas/tlc/1.0.14/alarms/A0001.json
|
|
568
601
|
- schemas/tlc/1.0.14/alarms/A0002.json
|
|
569
602
|
- schemas/tlc/1.0.14/alarms/A0003.json
|
|
@@ -648,6 +681,7 @@ files:
|
|
|
648
681
|
- schemas/tlc/1.0.14/statuses/S0208.json
|
|
649
682
|
- schemas/tlc/1.0.14/statuses/statuses.json
|
|
650
683
|
- schemas/tlc/1.0.14/sxl.yaml
|
|
684
|
+
- schemas/tlc/1.0.14/sxl_index.json
|
|
651
685
|
- schemas/tlc/1.0.15/alarms/A0001.json
|
|
652
686
|
- schemas/tlc/1.0.15/alarms/A0002.json
|
|
653
687
|
- schemas/tlc/1.0.15/alarms/A0003.json
|
|
@@ -739,6 +773,7 @@ files:
|
|
|
739
773
|
- schemas/tlc/1.0.15/statuses/S0208.json
|
|
740
774
|
- schemas/tlc/1.0.15/statuses/statuses.json
|
|
741
775
|
- schemas/tlc/1.0.15/sxl.yaml
|
|
776
|
+
- schemas/tlc/1.0.15/sxl_index.json
|
|
742
777
|
- schemas/tlc/1.0.7/alarms/A0001.json
|
|
743
778
|
- schemas/tlc/1.0.7/alarms/A0002.json
|
|
744
779
|
- schemas/tlc/1.0.7/alarms/A0003.json
|
|
@@ -805,6 +840,7 @@ files:
|
|
|
805
840
|
- schemas/tlc/1.0.7/statuses/S0204.json
|
|
806
841
|
- schemas/tlc/1.0.7/statuses/statuses.json
|
|
807
842
|
- schemas/tlc/1.0.7/sxl.yaml
|
|
843
|
+
- schemas/tlc/1.0.7/sxl_index.json
|
|
808
844
|
- schemas/tlc/1.0.8/alarms/A0001.json
|
|
809
845
|
- schemas/tlc/1.0.8/alarms/A0002.json
|
|
810
846
|
- schemas/tlc/1.0.8/alarms/A0003.json
|
|
@@ -873,6 +909,7 @@ files:
|
|
|
873
909
|
- schemas/tlc/1.0.8/statuses/S0204.json
|
|
874
910
|
- schemas/tlc/1.0.8/statuses/statuses.json
|
|
875
911
|
- schemas/tlc/1.0.8/sxl.yaml
|
|
912
|
+
- schemas/tlc/1.0.8/sxl_index.json
|
|
876
913
|
- schemas/tlc/1.0.9/alarms/A0001.json
|
|
877
914
|
- schemas/tlc/1.0.9/alarms/A0002.json
|
|
878
915
|
- schemas/tlc/1.0.9/alarms/A0003.json
|
|
@@ -941,6 +978,7 @@ files:
|
|
|
941
978
|
- schemas/tlc/1.0.9/statuses/S0204.json
|
|
942
979
|
- schemas/tlc/1.0.9/statuses/statuses.json
|
|
943
980
|
- schemas/tlc/1.0.9/sxl.yaml
|
|
981
|
+
- schemas/tlc/1.0.9/sxl_index.json
|
|
944
982
|
- schemas/tlc/1.1.0/alarms/A0001.json
|
|
945
983
|
- schemas/tlc/1.1.0/alarms/A0002.json
|
|
946
984
|
- schemas/tlc/1.1.0/alarms/A0003.json
|
|
@@ -1039,6 +1077,7 @@ files:
|
|
|
1039
1077
|
- schemas/tlc/1.1.0/statuses/S0208.json
|
|
1040
1078
|
- schemas/tlc/1.1.0/statuses/statuses.json
|
|
1041
1079
|
- schemas/tlc/1.1.0/sxl.yaml
|
|
1080
|
+
- schemas/tlc/1.1.0/sxl_index.json
|
|
1042
1081
|
- schemas/tlc/1.2.0/alarms/A0001.json
|
|
1043
1082
|
- schemas/tlc/1.2.0/alarms/A0002.json
|
|
1044
1083
|
- schemas/tlc/1.2.0/alarms/A0003.json
|
|
@@ -1138,6 +1177,7 @@ files:
|
|
|
1138
1177
|
- schemas/tlc/1.2.0/statuses/S0208.json
|
|
1139
1178
|
- schemas/tlc/1.2.0/statuses/statuses.json
|
|
1140
1179
|
- schemas/tlc/1.2.0/sxl.yaml
|
|
1180
|
+
- schemas/tlc/1.2.0/sxl_index.json
|
|
1141
1181
|
- schemas/tlc/1.2.1/alarms/A0001.json
|
|
1142
1182
|
- schemas/tlc/1.2.1/alarms/A0002.json
|
|
1143
1183
|
- schemas/tlc/1.2.1/alarms/A0003.json
|
|
@@ -1237,6 +1277,108 @@ files:
|
|
|
1237
1277
|
- schemas/tlc/1.2.1/statuses/S0208.json
|
|
1238
1278
|
- schemas/tlc/1.2.1/statuses/statuses.json
|
|
1239
1279
|
- schemas/tlc/1.2.1/sxl.yaml
|
|
1280
|
+
- schemas/tlc/1.2.1/sxl_index.json
|
|
1281
|
+
- schemas/tlc/1.3.0/alarms/A0001.json
|
|
1282
|
+
- schemas/tlc/1.3.0/alarms/A0002.json
|
|
1283
|
+
- schemas/tlc/1.3.0/alarms/A0003.json
|
|
1284
|
+
- schemas/tlc/1.3.0/alarms/A0004.json
|
|
1285
|
+
- schemas/tlc/1.3.0/alarms/A0005.json
|
|
1286
|
+
- schemas/tlc/1.3.0/alarms/A0006.json
|
|
1287
|
+
- schemas/tlc/1.3.0/alarms/A0007.json
|
|
1288
|
+
- schemas/tlc/1.3.0/alarms/A0008.json
|
|
1289
|
+
- schemas/tlc/1.3.0/alarms/A0009.json
|
|
1290
|
+
- schemas/tlc/1.3.0/alarms/A0010.json
|
|
1291
|
+
- schemas/tlc/1.3.0/alarms/A0101.json
|
|
1292
|
+
- schemas/tlc/1.3.0/alarms/A0201.json
|
|
1293
|
+
- schemas/tlc/1.3.0/alarms/A0202.json
|
|
1294
|
+
- schemas/tlc/1.3.0/alarms/A0301.json
|
|
1295
|
+
- schemas/tlc/1.3.0/alarms/A0302.json
|
|
1296
|
+
- schemas/tlc/1.3.0/alarms/A0303.json
|
|
1297
|
+
- schemas/tlc/1.3.0/alarms/A0304.json
|
|
1298
|
+
- schemas/tlc/1.3.0/alarms/alarms.json
|
|
1299
|
+
- schemas/tlc/1.3.0/commands/M0001.json
|
|
1300
|
+
- schemas/tlc/1.3.0/commands/M0002.json
|
|
1301
|
+
- schemas/tlc/1.3.0/commands/M0003.json
|
|
1302
|
+
- schemas/tlc/1.3.0/commands/M0004.json
|
|
1303
|
+
- schemas/tlc/1.3.0/commands/M0005.json
|
|
1304
|
+
- schemas/tlc/1.3.0/commands/M0006.json
|
|
1305
|
+
- schemas/tlc/1.3.0/commands/M0007.json
|
|
1306
|
+
- schemas/tlc/1.3.0/commands/M0008.json
|
|
1307
|
+
- schemas/tlc/1.3.0/commands/M0010.json
|
|
1308
|
+
- schemas/tlc/1.3.0/commands/M0011.json
|
|
1309
|
+
- schemas/tlc/1.3.0/commands/M0012.json
|
|
1310
|
+
- schemas/tlc/1.3.0/commands/M0013.json
|
|
1311
|
+
- schemas/tlc/1.3.0/commands/M0014.json
|
|
1312
|
+
- schemas/tlc/1.3.0/commands/M0015.json
|
|
1313
|
+
- schemas/tlc/1.3.0/commands/M0016.json
|
|
1314
|
+
- schemas/tlc/1.3.0/commands/M0017.json
|
|
1315
|
+
- schemas/tlc/1.3.0/commands/M0018.json
|
|
1316
|
+
- schemas/tlc/1.3.0/commands/M0019.json
|
|
1317
|
+
- schemas/tlc/1.3.0/commands/M0020.json
|
|
1318
|
+
- schemas/tlc/1.3.0/commands/M0021.json
|
|
1319
|
+
- schemas/tlc/1.3.0/commands/M0022.json
|
|
1320
|
+
- schemas/tlc/1.3.0/commands/M0023.json
|
|
1321
|
+
- schemas/tlc/1.3.0/commands/M0024.json
|
|
1322
|
+
- schemas/tlc/1.3.0/commands/M0103.json
|
|
1323
|
+
- schemas/tlc/1.3.0/commands/M0104.json
|
|
1324
|
+
- schemas/tlc/1.3.0/commands/command_requests.json
|
|
1325
|
+
- schemas/tlc/1.3.0/commands/command_responses.json
|
|
1326
|
+
- schemas/tlc/1.3.0/commands/commands.json
|
|
1327
|
+
- schemas/tlc/1.3.0/defs/definitions.json
|
|
1328
|
+
- schemas/tlc/1.3.0/defs/guards.json
|
|
1329
|
+
- schemas/tlc/1.3.0/rsmp.json
|
|
1330
|
+
- schemas/tlc/1.3.0/statuses/S0001.json
|
|
1331
|
+
- schemas/tlc/1.3.0/statuses/S0002.json
|
|
1332
|
+
- schemas/tlc/1.3.0/statuses/S0003.json
|
|
1333
|
+
- schemas/tlc/1.3.0/statuses/S0004.json
|
|
1334
|
+
- schemas/tlc/1.3.0/statuses/S0005.json
|
|
1335
|
+
- schemas/tlc/1.3.0/statuses/S0006.json
|
|
1336
|
+
- schemas/tlc/1.3.0/statuses/S0007.json
|
|
1337
|
+
- schemas/tlc/1.3.0/statuses/S0008.json
|
|
1338
|
+
- schemas/tlc/1.3.0/statuses/S0009.json
|
|
1339
|
+
- schemas/tlc/1.3.0/statuses/S0010.json
|
|
1340
|
+
- schemas/tlc/1.3.0/statuses/S0011.json
|
|
1341
|
+
- schemas/tlc/1.3.0/statuses/S0012.json
|
|
1342
|
+
- schemas/tlc/1.3.0/statuses/S0013.json
|
|
1343
|
+
- schemas/tlc/1.3.0/statuses/S0014.json
|
|
1344
|
+
- schemas/tlc/1.3.0/statuses/S0015.json
|
|
1345
|
+
- schemas/tlc/1.3.0/statuses/S0016.json
|
|
1346
|
+
- schemas/tlc/1.3.0/statuses/S0017.json
|
|
1347
|
+
- schemas/tlc/1.3.0/statuses/S0018.json
|
|
1348
|
+
- schemas/tlc/1.3.0/statuses/S0019.json
|
|
1349
|
+
- schemas/tlc/1.3.0/statuses/S0020.json
|
|
1350
|
+
- schemas/tlc/1.3.0/statuses/S0021.json
|
|
1351
|
+
- schemas/tlc/1.3.0/statuses/S0022.json
|
|
1352
|
+
- schemas/tlc/1.3.0/statuses/S0023.json
|
|
1353
|
+
- schemas/tlc/1.3.0/statuses/S0024.json
|
|
1354
|
+
- schemas/tlc/1.3.0/statuses/S0025.json
|
|
1355
|
+
- schemas/tlc/1.3.0/statuses/S0026.json
|
|
1356
|
+
- schemas/tlc/1.3.0/statuses/S0027.json
|
|
1357
|
+
- schemas/tlc/1.3.0/statuses/S0028.json
|
|
1358
|
+
- schemas/tlc/1.3.0/statuses/S0029.json
|
|
1359
|
+
- schemas/tlc/1.3.0/statuses/S0030.json
|
|
1360
|
+
- schemas/tlc/1.3.0/statuses/S0031.json
|
|
1361
|
+
- schemas/tlc/1.3.0/statuses/S0032.json
|
|
1362
|
+
- schemas/tlc/1.3.0/statuses/S0033.json
|
|
1363
|
+
- schemas/tlc/1.3.0/statuses/S0034.json
|
|
1364
|
+
- schemas/tlc/1.3.0/statuses/S0035.json
|
|
1365
|
+
- schemas/tlc/1.3.0/statuses/S0091.json
|
|
1366
|
+
- schemas/tlc/1.3.0/statuses/S0092.json
|
|
1367
|
+
- schemas/tlc/1.3.0/statuses/S0095.json
|
|
1368
|
+
- schemas/tlc/1.3.0/statuses/S0096.json
|
|
1369
|
+
- schemas/tlc/1.3.0/statuses/S0097.json
|
|
1370
|
+
- schemas/tlc/1.3.0/statuses/S0098.json
|
|
1371
|
+
- schemas/tlc/1.3.0/statuses/S0201.json
|
|
1372
|
+
- schemas/tlc/1.3.0/statuses/S0202.json
|
|
1373
|
+
- schemas/tlc/1.3.0/statuses/S0203.json
|
|
1374
|
+
- schemas/tlc/1.3.0/statuses/S0204.json
|
|
1375
|
+
- schemas/tlc/1.3.0/statuses/S0205.json
|
|
1376
|
+
- schemas/tlc/1.3.0/statuses/S0206.json
|
|
1377
|
+
- schemas/tlc/1.3.0/statuses/S0207.json
|
|
1378
|
+
- schemas/tlc/1.3.0/statuses/S0208.json
|
|
1379
|
+
- schemas/tlc/1.3.0/statuses/statuses.json
|
|
1380
|
+
- schemas/tlc/1.3.0/sxl.yaml
|
|
1381
|
+
- schemas/tlc/1.3.0/sxl_index.json
|
|
1240
1382
|
- schemas/tlc/defs/guards.json
|
|
1241
1383
|
homepage: https://github.com/rsmp-nordic/rsmp
|
|
1242
1384
|
licenses:
|
|
@@ -1254,14 +1396,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
1254
1396
|
requirements:
|
|
1255
1397
|
- - ">="
|
|
1256
1398
|
- !ruby/object:Gem::Version
|
|
1257
|
-
version: 3.4
|
|
1399
|
+
version: '3.4'
|
|
1258
1400
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1259
1401
|
requirements:
|
|
1260
1402
|
- - ">="
|
|
1261
1403
|
- !ruby/object:Gem::Version
|
|
1262
1404
|
version: '0'
|
|
1263
1405
|
requirements: []
|
|
1264
|
-
rubygems_version: 4.0.
|
|
1406
|
+
rubygems_version: 4.0.10
|
|
1265
1407
|
specification_version: 4
|
|
1266
1408
|
summary: RoadSide Message Protocol (RSMP) library.
|
|
1267
1409
|
test_files: []
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
# rsmp gem
|
|
2
|
-
This is a Ruby based repository contaning an implementation of RSMP (RoadSide Message Protocol), including:
|
|
3
|
-
|
|
4
|
-
- Ruby classes that can be used to build tests or other RSMP tools.
|
|
5
|
-
- Command-line tools for quickly running RSMP supervisors or sites and view messages exchanged.
|
|
6
|
-
|
|
7
|
-
It relies on the gem `rsmp_schema` to validate RSMP message using JSON schema.
|
|
8
|
-
|
|
9
|
-
Always reference these instructions first, and fall back to search or bash commands only when you encounter unexpected information that does not match the info here.
|
|
10
|
-
|
|
11
|
-
## Development Flow
|
|
12
|
-
- Ruby and required gems are already installed by the action .github/copilot-setup-steps.yml, do not install them again.
|
|
13
|
-
- All gem executables must be run from the bundle environment using `bundle exec ...`
|
|
14
|
-
- Before any commit, run `bundle exec rspec` to verify that all tests pass.
|
|
15
|
-
|
|
16
|
-
## Repository Structure
|
|
17
|
-
- `bin/`: Main service entry points and executables
|
|
18
|
-
- `lib/`: Ruby source code
|
|
19
|
-
- `spec/`: RSpec test files for validating Ruby code
|
|
20
|
-
- `features/`: Cucumber test files for validating the CLI component
|
|
21
|
-
- `config/`: Configuration files used when running the 'rsmp' command line
|
|
22
|
-
- `documentation/`: Documentation
|
|
23
|
-
|
|
24
|
-
## Guidelines
|
|
25
|
-
- Follow Ruby best practices and idiomatic patterns.
|
|
26
|
-
- Maintain existing code structure and organization.
|
|
27
|
-
- Always use existing async patterns to handle concurrency, also in tests.
|
|
28
|
-
- Code behaviour should adhere to the RSMP specifications defined at https://github.com/rsmp-nordic/rsmp_core.
|
|
29
|
-
- Write and verify rspec tests for new functionality.
|
|
30
|
-
- Document public APIs and complex logic. Suggest changes to the `documentation/` folder when appropriate.
|
|
31
|
-
- Don't commit example scripts.
|
|
32
|
-
- Prefer real classes over test doubles or mocks in tests and use async contexts to run sites and supervisors.
|
|
33
|
-
- When reporting on progress, claims should be supported by tests or other data.
|
data/.rspec
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
--require spec_helper
|
data/cucumber.yml
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
default: --publish-quiet
|