cosmos 4.1.1-java → 4.2.0-java
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/.gitignore +0 -2
- data/.travis.yml +2 -0
- data/.yardopts +1 -0
- data/Gemfile +1 -0
- data/Manifest.txt +130 -0
- data/autohotkey/tools/ConfigEditorAHK +19 -0
- data/autohotkey/tools/cmd_extractor.ahk +4 -4
- data/autohotkey/tools/cmd_sequence.ahk +9 -5
- data/autohotkey/tools/config_editor.ahk +197 -0
- data/autohotkey/tools/packet_viewer.ahk +12 -6
- data/autohotkey/tools/replay.ahk +29 -29
- data/autohotkey/tools/script_runner.ahk +10 -2
- data/autohotkey/tools/tlm_extractor.ahk +7 -8
- data/autohotkey/tools/tlm_grapher.ahk +21 -9
- data/bin/dart_import +2 -0
- data/cosmos.gemspec +18 -16
- data/data/config/cmd_tlm_server.yaml +9 -0
- data/data/config/interface_modifiers.yaml +17 -0
- data/data/config/item_modifiers.yaml +3 -3
- data/data/crc.txt +184 -90
- data/data/dart.png +0 -0
- data/demo/Gemfile +1 -0
- data/demo/Rakefile +4 -0
- data/demo/config/dart/Gemfile +54 -0
- data/demo/config/data/crc.txt +28 -21
- data/demo/config/system/system.txt +3 -0
- data/demo/config/system/system2.txt +3 -0
- data/demo/config/targets/INST/cmd_tlm/inst_cmds.txt +3 -3
- data/demo/config/targets/INST/cmd_tlm/inst_tlm.txt +1 -1
- data/demo/config/targets/INST/lib/sim_inst.rb +1 -1
- data/demo/config/targets/INST/screens/adcs.txt +2 -1
- data/demo/config/targets/INST/screens/array.txt +1 -1
- data/demo/config/targets/INST/screens/block.txt +1 -1
- data/demo/config/targets/INST/screens/commanding.txt +7 -2
- data/demo/config/targets/INST/screens/graphs.txt +1 -1
- data/demo/config/targets/INST/screens/ground.txt +1 -1
- data/demo/config/targets/INST/screens/hs.txt +2 -1
- data/demo/config/targets/INST/screens/latest.txt +1 -1
- data/demo/config/targets/INST/screens/limits.txt +1 -1
- data/demo/config/targets/INST/screens/other.txt +1 -1
- data/demo/config/targets/INST/screens/tabs.txt +1 -1
- data/demo/config/tools/cmd_tlm_server/cmd_tlm_server.txt +2 -2
- data/demo/config/tools/cmd_tlm_server/cmd_tlm_server2.txt +3 -1
- data/demo/config/tools/launcher/launcher.txt +3 -2
- data/demo/tools/Dart +16 -0
- data/demo/tools/Dart.bat +9 -0
- data/demo/tools/mac/CmdSequence.app/Contents/MacOS/main.sh +0 -0
- data/demo/tools/mac/ConfigEditor.app/Contents/MacOS/main.sh +0 -0
- data/install/Gemfile +1 -0
- data/install/Rakefile +4 -0
- data/install/config/dart/Gemfile +54 -0
- data/install/config/data/crc.txt +6 -3
- data/install/config/system/system.txt +3 -0
- data/install/config/tools/launcher/launcher.txt +3 -2
- data/install/tools/Dart +16 -0
- data/install/tools/Dart.bat +9 -0
- data/install/tools/mac/CmdSequence.app/Contents/MacOS/main.sh +0 -0
- data/install/tools/mac/ConfigEditor.app/Contents/MacOS/main.sh +0 -0
- data/lib/cosmos/core_ext/time.rb +8 -8
- data/lib/cosmos/dart/.rspec +1 -0
- data/lib/cosmos/dart/Gemfile +69 -0
- data/lib/cosmos/dart/Rakefile +7 -0
- data/lib/cosmos/dart/app/assets/config/manifest.js +4 -0
- data/lib/cosmos/dart/app/assets/images/.keep +0 -0
- data/lib/cosmos/dart/app/assets/javascripts/application.js +13 -0
- data/lib/cosmos/dart/app/assets/javascripts/cable.js +13 -0
- data/lib/cosmos/dart/app/assets/stylesheets/application.css.scss +15 -0
- data/lib/cosmos/dart/app/channels/application_cable/channel.rb +4 -0
- data/lib/cosmos/dart/app/channels/application_cable/connection.rb +4 -0
- data/lib/cosmos/dart/app/controllers/application_controller.rb +3 -0
- data/lib/cosmos/dart/app/helpers/application_helper.rb +2 -0
- data/lib/cosmos/dart/app/jobs/application_job.rb +2 -0
- data/lib/cosmos/dart/app/mailers/application_mailer.rb +4 -0
- data/lib/cosmos/dart/app/models/application_record.rb +3 -0
- data/lib/cosmos/dart/app/models/item.rb +6 -0
- data/lib/cosmos/dart/app/models/item_to_decom_table_mapping.rb +9 -0
- data/lib/cosmos/dart/app/models/packet.rb +4 -0
- data/lib/cosmos/dart/app/models/packet_config.rb +7 -0
- data/lib/cosmos/dart/app/models/packet_log.rb +3 -0
- data/lib/cosmos/dart/app/models/packet_log_entry.rb +41 -0
- data/lib/cosmos/dart/app/models/system_config.rb +2 -0
- data/lib/cosmos/dart/app/models/target.rb +4 -0
- data/lib/cosmos/dart/app/views/layouts/application.html.erb +14 -0
- data/lib/cosmos/dart/app/views/layouts/mailer.html.erb +13 -0
- data/lib/cosmos/dart/app/views/layouts/mailer.text.erb +1 -0
- data/lib/cosmos/dart/bin/bundle +3 -0
- data/lib/cosmos/dart/bin/rails +4 -0
- data/lib/cosmos/dart/bin/rake +4 -0
- data/lib/cosmos/dart/bin/setup +34 -0
- data/lib/cosmos/dart/bin/update +29 -0
- data/lib/cosmos/dart/config.ru +5 -0
- data/lib/cosmos/dart/config/application.rb +29 -0
- data/lib/cosmos/dart/config/boot.rb +3 -0
- data/lib/cosmos/dart/config/cable.yml +9 -0
- data/lib/cosmos/dart/config/database.yml +23 -0
- data/lib/cosmos/dart/config/environment.rb +5 -0
- data/lib/cosmos/dart/config/environments/development.rb +62 -0
- data/lib/cosmos/dart/config/environments/production.rb +84 -0
- data/lib/cosmos/dart/config/environments/test.rb +42 -0
- data/lib/cosmos/dart/config/initializers/application_controller_renderer.rb +6 -0
- data/lib/cosmos/dart/config/initializers/assets.rb +12 -0
- data/lib/cosmos/dart/config/initializers/backtrace_silencers.rb +7 -0
- data/lib/cosmos/dart/config/initializers/cookies_serializer.rb +5 -0
- data/lib/cosmos/dart/config/initializers/filter_parameter_logging.rb +4 -0
- data/lib/cosmos/dart/config/initializers/inflections.rb +16 -0
- data/lib/cosmos/dart/config/initializers/mime_types.rb +4 -0
- data/lib/cosmos/dart/config/initializers/new_framework_defaults.rb +25 -0
- data/lib/cosmos/dart/config/initializers/session_store.rb +3 -0
- data/lib/cosmos/dart/config/initializers/wrap_parameters.rb +14 -0
- data/lib/cosmos/dart/config/locales/en.yml +23 -0
- data/lib/cosmos/dart/config/puma.rb +47 -0
- data/lib/cosmos/dart/config/routes.rb +3 -0
- data/lib/cosmos/dart/config/secrets.yml +22 -0
- data/lib/cosmos/dart/db/migrate/20170406172907_create_targets.rb +8 -0
- data/lib/cosmos/dart/db/migrate/20170406172927_create_packets.rb +10 -0
- data/lib/cosmos/dart/db/migrate/20170406172937_create_packet_logs.rb +9 -0
- data/lib/cosmos/dart/db/migrate/20170406172943_create_packet_log_entries.rb +16 -0
- data/lib/cosmos/dart/db/migrate/20170406183500_change_packet_log_entries_primary_key.rb +5 -0
- data/lib/cosmos/dart/db/migrate/20170407153618_add_unique_requirements.rb +7 -0
- data/lib/cosmos/dart/db/migrate/20170511155447_add_meta_id_to_packet_log_entries.rb +6 -0
- data/lib/cosmos/dart/db/migrate/20170523185056_rename_received_time_and_add_is_tlm_to_packet_log_entries.rb +7 -0
- data/lib/cosmos/dart/db/migrate/20170525201157_create_items.rb +10 -0
- data/lib/cosmos/dart/db/migrate/20170525201315_create_system_configs.rb +9 -0
- data/lib/cosmos/dart/db/migrate/20170525201624_create_packet_configs.rb +11 -0
- data/lib/cosmos/dart/db/migrate/20170525201745_create_item_to_decom_table_mappings.rb +12 -0
- data/lib/cosmos/dart/db/migrate/20170525201939_create_decom_tables.rb +12 -0
- data/lib/cosmos/dart/db/migrate/20170525202051_add_decom_state_to_packet_log_entry.rb +5 -0
- data/lib/cosmos/dart/db/migrate/20170913160409_update_items.rb +6 -0
- data/lib/cosmos/dart/db/migrate/20170913160558_update_item_to_decom_table_mapping.rb +11 -0
- data/lib/cosmos/dart/db/migrate/20170913160916_udpate_decom_table.rb +6 -0
- data/lib/cosmos/dart/db/migrate/20170913212026_add_ready_to_packet_configs.rb +5 -0
- data/lib/cosmos/dart/db/migrate/20170913223556_modify_tables.rb +9 -0
- data/lib/cosmos/dart/db/migrate/20170914215744_modify_mapping_table.rb +6 -0
- data/lib/cosmos/dart/db/migrate/20170919201433_add_system_config_id_to_packet_config.rb +11 -0
- data/lib/cosmos/dart/db/migrate/20170919210307_add_max_table_index_to_packet_configs.rb +5 -0
- data/lib/cosmos/dart/db/migrate/20171215225546_add_ready_to_packet_log_entries.rb +5 -0
- data/lib/cosmos/dart/db/migrate/20180116214338_add_index_for_ple_ready_to_packet_log_entries.rb +5 -0
- data/lib/cosmos/dart/db/schema.rb +103 -0
- data/lib/cosmos/dart/db/seeds.rb +7 -0
- data/lib/cosmos/dart/examples/dart_decom_client.rb +45 -0
- data/lib/cosmos/dart/examples/dart_stream_client.rb +93 -0
- data/lib/cosmos/dart/lib/dart_common.rb +749 -0
- data/lib/cosmos/dart/lib/dart_database_cleaner.rb +172 -0
- data/lib/cosmos/dart/lib/dart_decom_query.rb +184 -0
- data/lib/cosmos/dart/lib/dart_decommutator.rb +235 -0
- data/lib/cosmos/dart/lib/dart_importer.rb +154 -0
- data/lib/cosmos/dart/lib/dart_logging.rb +50 -0
- data/lib/cosmos/dart/lib/dart_packet_log_writer.rb +139 -0
- data/lib/cosmos/dart/lib/dart_reducer_manager.rb +85 -0
- data/lib/cosmos/dart/lib/dart_reducer_worker_thread.rb +263 -0
- data/lib/cosmos/dart/lib/dart_tcpip_server_interface.rb +142 -0
- data/lib/cosmos/dart/processes/dart.rb +145 -0
- data/lib/cosmos/dart/processes/dart_decom_server.rb +39 -0
- data/lib/cosmos/dart/processes/dart_import.rb +63 -0
- data/lib/cosmos/dart/processes/dart_ingester.rb +92 -0
- data/lib/cosmos/dart/processes/dart_reducer.rb +27 -0
- data/lib/cosmos/dart/processes/dart_stream_server.rb +31 -0
- data/lib/cosmos/dart/processes/dart_worker.rb +37 -0
- data/lib/cosmos/dart/spec/dart/dart_common_spec.rb +333 -0
- data/lib/cosmos/dart/spec/dart/dart_database_cleaner_spec.rb +455 -0
- data/lib/cosmos/dart/spec/dart/dart_decom_query_spec.rb +153 -0
- data/lib/cosmos/dart/spec/dart/dart_decommutator_spec.rb +336 -0
- data/lib/cosmos/dart/spec/dart/dart_importer_spec.rb +83 -0
- data/lib/cosmos/dart/spec/dart/dart_logging_spec.rb +30 -0
- data/lib/cosmos/dart/spec/dart/dart_packet_log_writer_spec.rb +149 -0
- data/lib/cosmos/dart/spec/dart/dart_reducer_manager_spec.rb +289 -0
- data/lib/cosmos/dart/spec/dart/dart_tcpip_server_interface_spec.rb +241 -0
- data/lib/cosmos/dart/spec/rails_helper.rb +60 -0
- data/lib/cosmos/dart/spec/spec_helper.rb +139 -0
- data/lib/cosmos/gui/dialogs/about_dialog.rb +1 -1
- data/lib/cosmos/gui/dialogs/dart_dialog.rb +60 -0
- data/lib/cosmos/gui/dialogs/legal_dialog.rb +1 -0
- data/lib/cosmos/gui/dialogs/scroll_text_dialog.rb +0 -3
- data/lib/cosmos/gui/qt.rb +10 -1
- data/lib/cosmos/gui/text/completion.rb +10 -9
- data/lib/cosmos/gui/text/completion_text_edit.rb +16 -14
- data/lib/cosmos/gui/text/ruby_editor.rb +2 -2
- data/lib/cosmos/gui/widgets/dart_frame.rb +142 -0
- data/lib/cosmos/gui/widgets/dart_meta_frame.rb +119 -0
- data/lib/cosmos/gui/widgets/packet_log_frame.rb +42 -12
- data/lib/cosmos/interfaces/interface.rb +1 -2
- data/lib/cosmos/interfaces/protocols/crc_protocol.rb +26 -8
- data/lib/cosmos/interfaces/protocols/fixed_protocol.rb +8 -2
- data/lib/cosmos/interfaces/protocols/protocol.rb +2 -1
- data/lib/cosmos/interfaces/protocols/template_protocol.rb +1 -1
- data/lib/cosmos/interfaces/stream_interface.rb +1 -0
- data/lib/cosmos/interfaces/tcpip_server_interface.rb +2 -3
- data/lib/cosmos/io/json_drb_object.rb +1 -1
- data/lib/cosmos/io/json_rpc.rb +2 -1
- data/lib/cosmos/io/win32_serial_driver.rb +2 -9
- data/lib/cosmos/packet_logs/packet_log_writer.rb +1 -1
- data/lib/cosmos/packets/packet.rb +22 -12
- data/lib/cosmos/packets/packet_config.rb +2 -1
- data/lib/cosmos/packets/packet_item.rb +26 -24
- data/lib/cosmos/packets/parsers/macro_parser.rb +5 -2
- data/lib/cosmos/packets/parsers/packet_item_parser.rb +35 -17
- data/lib/cosmos/packets/parsers/packet_parser.rb +3 -10
- data/lib/cosmos/packets/parsers/xtce_converter.rb +21 -35
- data/lib/cosmos/packets/parsers/xtce_parser.rb +54 -46
- data/lib/cosmos/packets/structure.rb +10 -2
- data/lib/cosmos/packets/structure_item.rb +22 -8
- data/lib/cosmos/processors/statistics_processor.rb +2 -0
- data/lib/cosmos/script/api_shared.rb +13 -12
- data/lib/cosmos/script/cmd_tlm_server.rb +4 -0
- data/lib/cosmos/script/commands.rb +3 -15
- data/lib/cosmos/script/script.rb +69 -23
- data/lib/cosmos/streams/tcpip_client_stream.rb +2 -2
- data/lib/cosmos/system/system.rb +42 -25
- data/lib/cosmos/system/target.rb +6 -2
- data/lib/cosmos/tools/cmd_extractor/cmd_extractor.rb +177 -36
- data/lib/cosmos/tools/cmd_sender/cmd_param_table_item_delegate.rb +3 -2
- data/lib/cosmos/tools/cmd_sender/cmd_sender.rb +34 -8
- data/lib/cosmos/tools/cmd_sequence/cmd_sequence.rb +80 -25
- data/lib/cosmos/tools/cmd_tlm_server/api.rb +19 -4
- data/lib/cosmos/tools/cmd_tlm_server/cmd_tlm_server.rb +15 -14
- data/lib/cosmos/tools/cmd_tlm_server/cmd_tlm_server_gui.rb +15 -9
- data/lib/cosmos/tools/cmd_tlm_server/gui/interfaces_tab.rb +1 -9
- data/lib/cosmos/tools/cmd_tlm_server/gui/logging_tab.rb +1 -6
- data/lib/cosmos/tools/cmd_tlm_server/gui/packets_tab.rb +1 -3
- data/lib/cosmos/tools/cmd_tlm_server/gui/replay_tab.rb +84 -7
- data/lib/cosmos/tools/cmd_tlm_server/gui/status_tab.rb +0 -1
- data/lib/cosmos/tools/cmd_tlm_server/gui/targets_tab.rb +1 -5
- data/lib/cosmos/tools/cmd_tlm_server/limits_groups_background_task.rb +3 -2
- data/lib/cosmos/tools/cmd_tlm_server/replay_backend.rb +159 -27
- data/lib/cosmos/tools/cmd_tlm_server/routers.rb +1 -1
- data/lib/cosmos/tools/config_editor/config_editor.rb +17 -52
- data/lib/cosmos/tools/config_editor/config_editor_frame.rb +0 -5
- data/lib/cosmos/tools/data_viewer/data_viewer.rb +111 -0
- data/lib/cosmos/tools/limits_monitor/limits_monitor.rb +31 -18
- data/lib/cosmos/tools/packet_viewer/packet_viewer.rb +12 -3
- data/lib/cosmos/tools/script_runner/script_runner.rb +27 -14
- data/lib/cosmos/tools/script_runner/script_runner_frame.rb +104 -37
- data/lib/cosmos/tools/table_manager/table_config.rb +1 -1
- data/lib/cosmos/tools/table_manager/table_item_parser.rb +4 -2
- data/lib/cosmos/tools/table_manager/table_manager.rb +0 -5
- data/lib/cosmos/tools/table_manager/table_manager_core.rb +0 -1
- data/lib/cosmos/tools/test_runner/test.rb +1 -3
- data/lib/cosmos/tools/test_runner/test_runner.rb +26 -15
- data/lib/cosmos/tools/tlm_extractor/tlm_extractor.rb +290 -137
- data/lib/cosmos/tools/tlm_extractor/tlm_extractor_config.rb +122 -25
- data/lib/cosmos/tools/tlm_extractor/tlm_extractor_processor.rb +67 -0
- data/lib/cosmos/tools/tlm_grapher/data_object_editors/housekeeping_data_object_editor.rb +28 -0
- data/lib/cosmos/tools/tlm_grapher/data_object_editors/xy_data_object_editor.rb +36 -0
- data/lib/cosmos/tools/tlm_grapher/data_objects/data_object.rb +42 -3
- data/lib/cosmos/tools/tlm_grapher/data_objects/housekeeping_data_object.rb +88 -14
- data/lib/cosmos/tools/tlm_grapher/data_objects/linegraph_data_object.rb +2 -5
- data/lib/cosmos/tools/tlm_grapher/data_objects/singlexy_data_object.rb +2 -6
- data/lib/cosmos/tools/tlm_grapher/data_objects/xy_data_object.rb +74 -18
- data/lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_config.rb +3 -7
- data/lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_dart_thread.rb +159 -0
- data/lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_tool.rb +49 -2
- data/lib/cosmos/tools/tlm_viewer/screen.rb +3 -0
- data/lib/cosmos/tools/tlm_viewer/tlm_viewer_config.rb +0 -2
- data/lib/cosmos/tools/tlm_viewer/widgets.rb +1 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/backgroundbutton_widget.rb +54 -0
- data/lib/cosmos/tools/tlm_viewer/widgets/button_widget.rb +5 -5
- data/lib/cosmos/top_level.rb +1 -0
- data/lib/cosmos/utilities/crc.rb +3 -0
- data/lib/cosmos/utilities/csv.rb +1 -0
- data/lib/cosmos/utilities/message_log.rb +2 -1
- data/lib/cosmos/utilities/simulated_target.rb +8 -8
- data/lib/cosmos/version.rb +5 -5
- data/lib/cosmos/win32/win32.rb +4 -10
- data/run_gui_tests.bat +2 -1
- data/spec/config/config_parser_spec.rb +4 -4
- data/spec/core_ext/array_spec.rb +1 -1
- data/spec/core_ext/exception_spec.rb +12 -12
- data/spec/core_ext/file_spec.rb +6 -6
- data/spec/core_ext/hash_spec.rb +1 -1
- data/spec/core_ext/socket_spec.rb +2 -2
- data/spec/core_ext/string_spec.rb +13 -13
- data/spec/core_ext/time_spec.rb +0 -2
- data/spec/gui/utilities/script_module_gui_spec.rb +3 -3
- data/spec/install/config/targets/INST/cmd_tlm/inst_tlm.txt +6 -6
- data/spec/install/config/tools/cmd_tlm_server/cmd_tlm_server.txt +4 -0
- data/spec/interfaces/cmd_tlm_server_interface_spec.rb +6 -2
- data/spec/interfaces/interface_spec.rb +0 -1
- data/spec/interfaces/linc_interface_spec.rb +0 -5
- data/spec/interfaces/protocols/crc_protocol_spec.rb +201 -85
- data/spec/interfaces/protocols/fixed_protocol_spec.rb +33 -9
- data/spec/interfaces/protocols/length_protocol_spec.rb +1 -1
- data/spec/interfaces/protocols/override_protocol_spec.rb +6 -2
- data/spec/interfaces/protocols/preidentified_protocol_spec.rb +1 -5
- data/spec/interfaces/protocols/template_protocol_spec.rb +0 -1
- data/spec/interfaces/simulated_target_interface_spec.rb +5 -5
- data/spec/interfaces/udp_interface_spec.rb +2 -4
- data/spec/io/buffered_file_spec.rb +8 -12
- data/spec/io/json_drb_spec.rb +9 -9
- data/spec/io/json_rpc_spec.rb +4 -4
- data/spec/io/raw_logger_spec.rb +4 -3
- data/spec/packet_logs/packet_log_reader_spec.rb +3 -6
- data/spec/packet_logs/packet_log_writer_spec.rb +4 -4
- data/spec/packets/binary_accessor_spec.rb +5 -8
- data/spec/packets/commands_spec.rb +2 -2
- data/spec/packets/limits_spec.rb +2 -2
- data/spec/packets/packet_config_spec.rb +12 -0
- data/spec/packets/packet_item_limits_spec.rb +1 -1
- data/spec/packets/packet_item_spec.rb +9 -9
- data/spec/packets/packet_spec.rb +15 -5
- data/spec/packets/parsers/packet_item_parser_spec.rb +27 -0
- data/spec/packets/parsers/xtce_parser_spec.rb +27 -30
- data/spec/packets/structure_spec.rb +2 -1
- data/spec/packets/telemetry_spec.rb +3 -5
- data/spec/processors/statistics_processor_spec.rb +35 -0
- data/spec/script/cmd_tlm_server_spec.rb +4 -21
- data/spec/script/commands_disconnect_spec.rb +46 -58
- data/spec/script/commands_spec.rb +40 -61
- data/spec/script/limits_spec.rb +1 -21
- data/spec/script/script_spec.rb +32 -41
- data/spec/script/scripting_spec.rb +166 -185
- data/spec/script/telemetry_spec.rb +10 -5
- data/spec/script/tools_spec.rb +2 -24
- data/spec/spec_helper.rb +11 -5
- data/spec/system/system_spec.rb +17 -12
- data/spec/tools/cmd_tlm_server/api_spec.rb +21 -10
- data/spec/tools/cmd_tlm_server/background_tasks_spec.rb +15 -16
- data/spec/tools/cmd_tlm_server/cmd_tlm_server_config_spec.rb +0 -1
- data/spec/tools/cmd_tlm_server/cmd_tlm_server_spec.rb +16 -27
- data/spec/tools/cmd_tlm_server/commanding_spec.rb +2 -6
- data/spec/tools/cmd_tlm_server/connections_spec.rb +0 -4
- data/spec/tools/cmd_tlm_server/interface_thread_spec.rb +13 -13
- data/spec/tools/cmd_tlm_server/interfaces_spec.rb +5 -9
- data/spec/tools/cmd_tlm_server/limits_groups_background_task_spec.rb +11 -3
- data/spec/tools/cmd_tlm_server/packet_logging_spec.rb +0 -4
- data/spec/tools/cmd_tlm_server/router_thread_spec.rb +5 -5
- data/spec/tools/cmd_tlm_server/routers_spec.rb +5 -9
- data/spec/tools/table_manager/table_config_spec.rb +0 -1
- data/spec/tools/table_manager/tablemanager_core_spec.rb +23 -23
- data/spec/tools/tlm_viewer/tlm_viewer_config_spec.rb +6 -4
- data/spec/top_level/top_level_spec.rb +9 -9
- data/spec/utilities/csv_spec.rb +2 -12
- data/spec/utilities/logger_spec.rb +6 -6
- data/spec/utilities/message_log_spec.rb +3 -11
- data/tasks/gemfile_stats.rake +2 -2
- metadata +167 -60
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f067f1f2236e497eff142d8264a56f0e456a3a3701c08da83a18b4b64a929f3a
|
|
4
|
+
data.tar.gz: a3b0ead0536f9348d33265913e9338ae6990b5149b479866c731d88c37700e6a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 87ab540414be1d9e655f87a4665ca1f5ef2d93cf4a5ec4cc5cb659154d8bd78f1a695155c32692b497a396eaf1a4e204d6b4979227dff330fe1f703af75e0e41
|
|
7
|
+
data.tar.gz: 97b1893a1da00305a7bcfc09d354286fd8d54c85b28219e4a345ead7f4464743f627a876cd32be5a19829677121e8415c5e20fe2a28dbad48a99fe6e6fa42bd9
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
data/.yardopts
CHANGED
data/Gemfile
CHANGED
data/Manifest.txt
CHANGED
|
@@ -133,6 +133,7 @@ autohotkey/tools/CmdTlmServer
|
|
|
133
133
|
autohotkey/tools/CmdTlmServerAHK
|
|
134
134
|
autohotkey/tools/CmdTlmServerAHK2
|
|
135
135
|
autohotkey/tools/ConfigEditor
|
|
136
|
+
autohotkey/tools/ConfigEditorAHK
|
|
136
137
|
autohotkey/tools/DataViewer
|
|
137
138
|
autohotkey/tools/DataViewerAHK
|
|
138
139
|
autohotkey/tools/HandbookCreatorAHK
|
|
@@ -181,6 +182,7 @@ autohotkey/tools/cmd_sequence.ahk
|
|
|
181
182
|
autohotkey/tools/cmd_sequence2.ahk
|
|
182
183
|
autohotkey/tools/cmd_tlm_server.ahk
|
|
183
184
|
autohotkey/tools/cmd_tlm_server2.ahk
|
|
185
|
+
autohotkey/tools/config_editor.ahk
|
|
184
186
|
autohotkey/tools/data_viewer.ahk
|
|
185
187
|
autohotkey/tools/handbook_creator.ahk
|
|
186
188
|
autohotkey/tools/launcher.ahk
|
|
@@ -208,6 +210,7 @@ autohotkey/tools/tlm_viewer5.ahk
|
|
|
208
210
|
autohotkey/tools/tool_launch.rb
|
|
209
211
|
bin/cosmos
|
|
210
212
|
bin/cstol_converter
|
|
213
|
+
bin/dart_import
|
|
211
214
|
bin/exchndl20-x64.dll
|
|
212
215
|
bin/exchndl20.dll
|
|
213
216
|
bin/exchndl21-x64.dll
|
|
@@ -284,6 +287,7 @@ data/crc.txt
|
|
|
284
287
|
data/critical.wav
|
|
285
288
|
data/cts.png
|
|
286
289
|
data/cut.png
|
|
290
|
+
data/dart.png
|
|
287
291
|
data/data_viewer.png
|
|
288
292
|
data/delete.png
|
|
289
293
|
data/delete_database.png
|
|
@@ -344,6 +348,7 @@ demo/Gemfile
|
|
|
344
348
|
demo/Launcher
|
|
345
349
|
demo/Launcher.bat
|
|
346
350
|
demo/Rakefile
|
|
351
|
+
demo/config/dart/Gemfile
|
|
347
352
|
demo/config/data/attitude.bin
|
|
348
353
|
demo/config/data/crc.txt
|
|
349
354
|
demo/config/data/diamond.STL
|
|
@@ -469,6 +474,8 @@ demo/lib/example_background_task.rb
|
|
|
469
474
|
demo/lib/example_target.rb
|
|
470
475
|
demo/lib/scpi_target.rb
|
|
471
476
|
demo/lib/user_version.rb
|
|
477
|
+
demo/outputs/dart/data/README.txt
|
|
478
|
+
demo/outputs/dart/logs/README.txt
|
|
472
479
|
demo/outputs/handbooks/assets/css/bootstrap-theme.css
|
|
473
480
|
demo/outputs/handbooks/assets/css/bootstrap-theme.min.css
|
|
474
481
|
demo/outputs/handbooks/assets/css/bootstrap.css
|
|
@@ -506,6 +513,8 @@ demo/tools/CmdTlmServer
|
|
|
506
513
|
demo/tools/CmdTlmServer.bat
|
|
507
514
|
demo/tools/ConfigEditor
|
|
508
515
|
demo/tools/ConfigEditor.bat
|
|
516
|
+
demo/tools/Dart
|
|
517
|
+
demo/tools/Dart.bat
|
|
509
518
|
demo/tools/DataViewer
|
|
510
519
|
demo/tools/DataViewer.bat
|
|
511
520
|
demo/tools/ExampleTarget
|
|
@@ -660,6 +669,7 @@ install/Gemfile
|
|
|
660
669
|
install/Launcher
|
|
661
670
|
install/Launcher.bat
|
|
662
671
|
install/Rakefile
|
|
672
|
+
install/config/dart/Gemfile
|
|
663
673
|
install/config/data/README.txt
|
|
664
674
|
install/config/data/crc.txt
|
|
665
675
|
install/config/system/system.txt
|
|
@@ -692,6 +702,8 @@ install/config/tools/tlm_extractor/README.txt
|
|
|
692
702
|
install/config/tools/tlm_grapher/README.txt
|
|
693
703
|
install/config/tools/tlm_viewer/tlm_viewer.txt
|
|
694
704
|
install/lib/user_version.rb
|
|
705
|
+
install/outputs/dart/data/README.txt
|
|
706
|
+
install/outputs/dart/logs/README.txt
|
|
695
707
|
install/outputs/handbooks/assets/css/bootstrap-theme.css
|
|
696
708
|
install/outputs/handbooks/assets/css/bootstrap-theme.min.css
|
|
697
709
|
install/outputs/handbooks/assets/css/bootstrap.css
|
|
@@ -723,6 +735,8 @@ install/tools/CmdTlmServer
|
|
|
723
735
|
install/tools/CmdTlmServer.bat
|
|
724
736
|
install/tools/ConfigEditor
|
|
725
737
|
install/tools/ConfigEditor.bat
|
|
738
|
+
install/tools/Dart
|
|
739
|
+
install/tools/Dart.bat
|
|
726
740
|
install/tools/DataViewer
|
|
727
741
|
install/tools/DataViewer.bat
|
|
728
742
|
install/tools/HandbookCreator
|
|
@@ -876,6 +890,116 @@ lib/cosmos/core_ext/socket.rb
|
|
|
876
890
|
lib/cosmos/core_ext/string.rb
|
|
877
891
|
lib/cosmos/core_ext/stringio.rb
|
|
878
892
|
lib/cosmos/core_ext/time.rb
|
|
893
|
+
lib/cosmos/dart/.rspec
|
|
894
|
+
lib/cosmos/dart/Gemfile
|
|
895
|
+
lib/cosmos/dart/Rakefile
|
|
896
|
+
lib/cosmos/dart/app/assets/config/manifest.js
|
|
897
|
+
lib/cosmos/dart/app/assets/images/.keep
|
|
898
|
+
lib/cosmos/dart/app/assets/javascripts/application.js
|
|
899
|
+
lib/cosmos/dart/app/assets/javascripts/cable.js
|
|
900
|
+
lib/cosmos/dart/app/assets/stylesheets/application.css.scss
|
|
901
|
+
lib/cosmos/dart/app/channels/application_cable/channel.rb
|
|
902
|
+
lib/cosmos/dart/app/channels/application_cable/connection.rb
|
|
903
|
+
lib/cosmos/dart/app/controllers/application_controller.rb
|
|
904
|
+
lib/cosmos/dart/app/helpers/application_helper.rb
|
|
905
|
+
lib/cosmos/dart/app/jobs/application_job.rb
|
|
906
|
+
lib/cosmos/dart/app/mailers/application_mailer.rb
|
|
907
|
+
lib/cosmos/dart/app/models/application_record.rb
|
|
908
|
+
lib/cosmos/dart/app/models/item.rb
|
|
909
|
+
lib/cosmos/dart/app/models/item_to_decom_table_mapping.rb
|
|
910
|
+
lib/cosmos/dart/app/models/packet.rb
|
|
911
|
+
lib/cosmos/dart/app/models/packet_config.rb
|
|
912
|
+
lib/cosmos/dart/app/models/packet_log.rb
|
|
913
|
+
lib/cosmos/dart/app/models/packet_log_entry.rb
|
|
914
|
+
lib/cosmos/dart/app/models/system_config.rb
|
|
915
|
+
lib/cosmos/dart/app/models/target.rb
|
|
916
|
+
lib/cosmos/dart/app/views/layouts/application.html.erb
|
|
917
|
+
lib/cosmos/dart/app/views/layouts/mailer.html.erb
|
|
918
|
+
lib/cosmos/dart/app/views/layouts/mailer.text.erb
|
|
919
|
+
lib/cosmos/dart/bin/bundle
|
|
920
|
+
lib/cosmos/dart/bin/rails
|
|
921
|
+
lib/cosmos/dart/bin/rake
|
|
922
|
+
lib/cosmos/dart/bin/setup
|
|
923
|
+
lib/cosmos/dart/bin/update
|
|
924
|
+
lib/cosmos/dart/config.ru
|
|
925
|
+
lib/cosmos/dart/config/application.rb
|
|
926
|
+
lib/cosmos/dart/config/boot.rb
|
|
927
|
+
lib/cosmos/dart/config/cable.yml
|
|
928
|
+
lib/cosmos/dart/config/database.yml
|
|
929
|
+
lib/cosmos/dart/config/environment.rb
|
|
930
|
+
lib/cosmos/dart/config/environments/development.rb
|
|
931
|
+
lib/cosmos/dart/config/environments/production.rb
|
|
932
|
+
lib/cosmos/dart/config/environments/test.rb
|
|
933
|
+
lib/cosmos/dart/config/initializers/application_controller_renderer.rb
|
|
934
|
+
lib/cosmos/dart/config/initializers/assets.rb
|
|
935
|
+
lib/cosmos/dart/config/initializers/backtrace_silencers.rb
|
|
936
|
+
lib/cosmos/dart/config/initializers/cookies_serializer.rb
|
|
937
|
+
lib/cosmos/dart/config/initializers/filter_parameter_logging.rb
|
|
938
|
+
lib/cosmos/dart/config/initializers/inflections.rb
|
|
939
|
+
lib/cosmos/dart/config/initializers/mime_types.rb
|
|
940
|
+
lib/cosmos/dart/config/initializers/new_framework_defaults.rb
|
|
941
|
+
lib/cosmos/dart/config/initializers/session_store.rb
|
|
942
|
+
lib/cosmos/dart/config/initializers/wrap_parameters.rb
|
|
943
|
+
lib/cosmos/dart/config/locales/en.yml
|
|
944
|
+
lib/cosmos/dart/config/puma.rb
|
|
945
|
+
lib/cosmos/dart/config/routes.rb
|
|
946
|
+
lib/cosmos/dart/config/secrets.yml
|
|
947
|
+
lib/cosmos/dart/db/migrate/20170406172907_create_targets.rb
|
|
948
|
+
lib/cosmos/dart/db/migrate/20170406172927_create_packets.rb
|
|
949
|
+
lib/cosmos/dart/db/migrate/20170406172937_create_packet_logs.rb
|
|
950
|
+
lib/cosmos/dart/db/migrate/20170406172943_create_packet_log_entries.rb
|
|
951
|
+
lib/cosmos/dart/db/migrate/20170406183500_change_packet_log_entries_primary_key.rb
|
|
952
|
+
lib/cosmos/dart/db/migrate/20170407153618_add_unique_requirements.rb
|
|
953
|
+
lib/cosmos/dart/db/migrate/20170511155447_add_meta_id_to_packet_log_entries.rb
|
|
954
|
+
lib/cosmos/dart/db/migrate/20170523185056_rename_received_time_and_add_is_tlm_to_packet_log_entries.rb
|
|
955
|
+
lib/cosmos/dart/db/migrate/20170525201157_create_items.rb
|
|
956
|
+
lib/cosmos/dart/db/migrate/20170525201315_create_system_configs.rb
|
|
957
|
+
lib/cosmos/dart/db/migrate/20170525201624_create_packet_configs.rb
|
|
958
|
+
lib/cosmos/dart/db/migrate/20170525201745_create_item_to_decom_table_mappings.rb
|
|
959
|
+
lib/cosmos/dart/db/migrate/20170525201939_create_decom_tables.rb
|
|
960
|
+
lib/cosmos/dart/db/migrate/20170525202051_add_decom_state_to_packet_log_entry.rb
|
|
961
|
+
lib/cosmos/dart/db/migrate/20170913160409_update_items.rb
|
|
962
|
+
lib/cosmos/dart/db/migrate/20170913160558_update_item_to_decom_table_mapping.rb
|
|
963
|
+
lib/cosmos/dart/db/migrate/20170913160916_udpate_decom_table.rb
|
|
964
|
+
lib/cosmos/dart/db/migrate/20170913212026_add_ready_to_packet_configs.rb
|
|
965
|
+
lib/cosmos/dart/db/migrate/20170913223556_modify_tables.rb
|
|
966
|
+
lib/cosmos/dart/db/migrate/20170914215744_modify_mapping_table.rb
|
|
967
|
+
lib/cosmos/dart/db/migrate/20170919201433_add_system_config_id_to_packet_config.rb
|
|
968
|
+
lib/cosmos/dart/db/migrate/20170919210307_add_max_table_index_to_packet_configs.rb
|
|
969
|
+
lib/cosmos/dart/db/migrate/20171215225546_add_ready_to_packet_log_entries.rb
|
|
970
|
+
lib/cosmos/dart/db/migrate/20180116214338_add_index_for_ple_ready_to_packet_log_entries.rb
|
|
971
|
+
lib/cosmos/dart/db/schema.rb
|
|
972
|
+
lib/cosmos/dart/db/seeds.rb
|
|
973
|
+
lib/cosmos/dart/examples/dart_decom_client.rb
|
|
974
|
+
lib/cosmos/dart/examples/dart_stream_client.rb
|
|
975
|
+
lib/cosmos/dart/lib/dart_common.rb
|
|
976
|
+
lib/cosmos/dart/lib/dart_database_cleaner.rb
|
|
977
|
+
lib/cosmos/dart/lib/dart_decom_query.rb
|
|
978
|
+
lib/cosmos/dart/lib/dart_decommutator.rb
|
|
979
|
+
lib/cosmos/dart/lib/dart_importer.rb
|
|
980
|
+
lib/cosmos/dart/lib/dart_logging.rb
|
|
981
|
+
lib/cosmos/dart/lib/dart_packet_log_writer.rb
|
|
982
|
+
lib/cosmos/dart/lib/dart_reducer_manager.rb
|
|
983
|
+
lib/cosmos/dart/lib/dart_reducer_worker_thread.rb
|
|
984
|
+
lib/cosmos/dart/lib/dart_tcpip_server_interface.rb
|
|
985
|
+
lib/cosmos/dart/processes/dart.rb
|
|
986
|
+
lib/cosmos/dart/processes/dart_decom_server.rb
|
|
987
|
+
lib/cosmos/dart/processes/dart_import.rb
|
|
988
|
+
lib/cosmos/dart/processes/dart_ingester.rb
|
|
989
|
+
lib/cosmos/dart/processes/dart_reducer.rb
|
|
990
|
+
lib/cosmos/dart/processes/dart_stream_server.rb
|
|
991
|
+
lib/cosmos/dart/processes/dart_worker.rb
|
|
992
|
+
lib/cosmos/dart/spec/dart/dart_common_spec.rb
|
|
993
|
+
lib/cosmos/dart/spec/dart/dart_database_cleaner_spec.rb
|
|
994
|
+
lib/cosmos/dart/spec/dart/dart_decom_query_spec.rb
|
|
995
|
+
lib/cosmos/dart/spec/dart/dart_decommutator_spec.rb
|
|
996
|
+
lib/cosmos/dart/spec/dart/dart_importer_spec.rb
|
|
997
|
+
lib/cosmos/dart/spec/dart/dart_logging_spec.rb
|
|
998
|
+
lib/cosmos/dart/spec/dart/dart_packet_log_writer_spec.rb
|
|
999
|
+
lib/cosmos/dart/spec/dart/dart_reducer_manager_spec.rb
|
|
1000
|
+
lib/cosmos/dart/spec/dart/dart_tcpip_server_interface_spec.rb
|
|
1001
|
+
lib/cosmos/dart/spec/rails_helper.rb
|
|
1002
|
+
lib/cosmos/dart/spec/spec_helper.rb
|
|
879
1003
|
lib/cosmos/ext/.keep
|
|
880
1004
|
lib/cosmos/gui/choosers/combobox_chooser.rb
|
|
881
1005
|
lib/cosmos/gui/choosers/file_chooser.rb
|
|
@@ -888,6 +1012,7 @@ lib/cosmos/gui/dialogs/about_dialog.rb
|
|
|
888
1012
|
lib/cosmos/gui/dialogs/calendar_dialog.rb
|
|
889
1013
|
lib/cosmos/gui/dialogs/cmd_details_dialog.rb
|
|
890
1014
|
lib/cosmos/gui/dialogs/cmd_tlm_raw_dialog.rb
|
|
1015
|
+
lib/cosmos/gui/dialogs/dart_dialog.rb
|
|
891
1016
|
lib/cosmos/gui/dialogs/details_dialog.rb
|
|
892
1017
|
lib/cosmos/gui/dialogs/exception_dialog.rb
|
|
893
1018
|
lib/cosmos/gui/dialogs/exception_list_dialog.rb
|
|
@@ -934,6 +1059,8 @@ lib/cosmos/gui/text/ruby_editor.rb
|
|
|
934
1059
|
lib/cosmos/gui/utilities/analyze_log.rb
|
|
935
1060
|
lib/cosmos/gui/utilities/screenshot.rb
|
|
936
1061
|
lib/cosmos/gui/utilities/script_module_gui.rb
|
|
1062
|
+
lib/cosmos/gui/widgets/dart_frame.rb
|
|
1063
|
+
lib/cosmos/gui/widgets/dart_meta_frame.rb
|
|
937
1064
|
lib/cosmos/gui/widgets/full_text_search_line_edit.rb
|
|
938
1065
|
lib/cosmos/gui/widgets/packet_log_frame.rb
|
|
939
1066
|
lib/cosmos/gui/widgets/realtime_button_bar.rb
|
|
@@ -1109,6 +1236,7 @@ lib/cosmos/tools/tlm_grapher/plots/singlexy_plot.rb
|
|
|
1109
1236
|
lib/cosmos/tools/tlm_grapher/plots/xy_plot.rb
|
|
1110
1237
|
lib/cosmos/tools/tlm_grapher/tabbed_plots/overview_tabbed_plots.rb
|
|
1111
1238
|
lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_config.rb
|
|
1239
|
+
lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_dart_thread.rb
|
|
1112
1240
|
lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_data_object_editor.rb
|
|
1113
1241
|
lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_logfile_thread.rb
|
|
1114
1242
|
lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_plot_editor.rb
|
|
@@ -1122,6 +1250,7 @@ lib/cosmos/tools/tlm_viewer/tlm_viewer_config.rb
|
|
|
1122
1250
|
lib/cosmos/tools/tlm_viewer/widgets.rb
|
|
1123
1251
|
lib/cosmos/tools/tlm_viewer/widgets/aging_widget.rb
|
|
1124
1252
|
lib/cosmos/tools/tlm_viewer/widgets/array_widget.rb
|
|
1253
|
+
lib/cosmos/tools/tlm_viewer/widgets/backgroundbutton_widget.rb
|
|
1125
1254
|
lib/cosmos/tools/tlm_viewer/widgets/block_widget.rb
|
|
1126
1255
|
lib/cosmos/tools/tlm_viewer/widgets/button_widget.rb
|
|
1127
1256
|
lib/cosmos/tools/tlm_viewer/widgets/canvas_clickable.rb
|
|
@@ -1250,6 +1379,7 @@ spec/install/config/targets/SYSTEM/cmd_tlm/system_tlm.txt
|
|
|
1250
1379
|
spec/install/config/targets/SYSTEM/cmd_tlm_server.txt
|
|
1251
1380
|
spec/install/config/targets/SYSTEM/screens/status.txt
|
|
1252
1381
|
spec/install/config/targets/SYSTEM/target.txt
|
|
1382
|
+
spec/install/config/tools/cmd_tlm_server/cmd_tlm_server.txt
|
|
1253
1383
|
spec/install/lib/README.txt
|
|
1254
1384
|
spec/interfaces/cmd_tlm_server_interface_spec.rb
|
|
1255
1385
|
spec/interfaces/interface_spec.rb
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# encoding: ascii-8bit
|
|
3
|
+
|
|
4
|
+
# Copyright 2015 Ball Aerospace & Technologies Corp.
|
|
5
|
+
# All Rights Reserved.
|
|
6
|
+
#
|
|
7
|
+
# This program is free software; you can modify and/or redistribute it
|
|
8
|
+
# under the terms of the GNU General Public License
|
|
9
|
+
# as published by the Free Software Foundation; version 3 with
|
|
10
|
+
# attribution addendums as found in the LICENSE.txt
|
|
11
|
+
|
|
12
|
+
require_relative 'autohotkey.rb'
|
|
13
|
+
autohotkey('ConfigEditor', 'config_editor.ahk') do
|
|
14
|
+
require 'cosmos/tools/config_editor/config_editor'
|
|
15
|
+
Cosmos::ConfigEditor.run
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
# Remove generated target
|
|
19
|
+
FileUtils.rm_rf File.join("autohotkey", "config", "targets", "AHK_TEST")
|
|
@@ -3,11 +3,11 @@ WinWaitActive Command Extractor
|
|
|
3
3
|
Sleep 500
|
|
4
4
|
Send ^r ; Mode->Include Raw Data CE-3
|
|
5
5
|
Sleep 500
|
|
6
|
-
Click 500
|
|
6
|
+
Click 500 95 ; Browse
|
|
7
7
|
Sleep 1000
|
|
8
8
|
Send cmd.bin{Enter}
|
|
9
9
|
WinWaitActive Command Extractor
|
|
10
|
-
Click 200
|
|
10
|
+
Click 200 446 ; Process Files
|
|
11
11
|
WinWaitActive Warning
|
|
12
12
|
Sleep 500
|
|
13
13
|
Send {Enter} ;
|
|
@@ -15,7 +15,7 @@ WinWaitActive Log File
|
|
|
15
15
|
Click 450 305 ; Cancel
|
|
16
16
|
WinWaitActive Command Extractor
|
|
17
17
|
sleep 500
|
|
18
|
-
Click 200
|
|
18
|
+
Click 200 446 ; Process Files
|
|
19
19
|
WinWaitActive Warning
|
|
20
20
|
Sleep 500
|
|
21
21
|
Send {Enter} ;
|
|
@@ -24,7 +24,7 @@ Send {Enter} ; Overwrite Yes
|
|
|
24
24
|
Sleep 5000 ; Allow the file to be processed CE-1
|
|
25
25
|
Send {Enter}
|
|
26
26
|
WinWaitActive Command Extractor
|
|
27
|
-
Click 460
|
|
27
|
+
Click 460 446 ; Open in Text Editor CE-2
|
|
28
28
|
Sleep 5000
|
|
29
29
|
Send !f{x} ; Exit text editor
|
|
30
30
|
WinActivate Command Extractor
|
|
@@ -86,16 +86,16 @@ Send {Up}{Enter} ; Choose SPECIAL collect
|
|
|
86
86
|
Sleep 1000
|
|
87
87
|
|
|
88
88
|
Send ^t ; Disconnect mode
|
|
89
|
-
WinWaitActive
|
|
89
|
+
WinWaitActive Disconnect
|
|
90
90
|
Send +{Tab}{Enter} ; Cancel
|
|
91
91
|
WinWaitActive Command Sequence
|
|
92
92
|
|
|
93
93
|
Send ^t ; Disconnect mode
|
|
94
|
-
WinWaitActive
|
|
95
|
-
|
|
94
|
+
WinWaitActive Disconnect
|
|
95
|
+
Click 253 195 ; Select
|
|
96
96
|
WinWaitActive Select
|
|
97
97
|
Send cmd_tlm_server.txt{Enter}
|
|
98
|
-
WinWaitActive
|
|
98
|
+
WinWaitActive Disconnect
|
|
99
99
|
Send {Tab}{Enter} ; Confirm dialog
|
|
100
100
|
WinWaitActive Command Sequence
|
|
101
101
|
|
|
@@ -106,7 +106,11 @@ Send {Tab 2}{Enter} ; No
|
|
|
106
106
|
WinWaitActive Command Sequence
|
|
107
107
|
|
|
108
108
|
Send ^t ; Toggle off disconnect mode
|
|
109
|
-
|
|
109
|
+
WinWaitActive Disconnect
|
|
110
|
+
Click 253 73 ; Clear All
|
|
111
|
+
Send {Tab}{Enter} ; Confirm dialog
|
|
112
|
+
WinWaitActive Command Sequence
|
|
113
|
+
|
|
110
114
|
Send ^n ; New sequence
|
|
111
115
|
WinWaitActive Save
|
|
112
116
|
Send {Tab}{Enter} ; Yes
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
WinWaitActive, Config Editor
|
|
2
|
+
Sleep 1000
|
|
3
|
+
|
|
4
|
+
Click right 288 62 ; Right click on the tab
|
|
5
|
+
Sleep 500
|
|
6
|
+
Click 335 75 ; New window
|
|
7
|
+
Sleep 500
|
|
8
|
+
Click 335 96 ; Close window
|
|
9
|
+
Sleep 500
|
|
10
|
+
Send ^w ; Close
|
|
11
|
+
Sleep 500
|
|
12
|
+
Send ^w ; Close
|
|
13
|
+
|
|
14
|
+
Send !t ; alt T
|
|
15
|
+
sleep 500
|
|
16
|
+
Send {ENTER} ; Change file type
|
|
17
|
+
|
|
18
|
+
Send ^s ; File Save
|
|
19
|
+
WinWaitActive Save As
|
|
20
|
+
Send {Esc}
|
|
21
|
+
Sleep 500
|
|
22
|
+
|
|
23
|
+
Send ^n ; File New
|
|
24
|
+
Sleep 500
|
|
25
|
+
Send puts "Hello World"{ENTER}
|
|
26
|
+
Sleep 500
|
|
27
|
+
Send ^q ; Quit
|
|
28
|
+
WinWaitActive Save
|
|
29
|
+
Send {Enter} ; Cancel
|
|
30
|
+
WinWaitActive Config Editor
|
|
31
|
+
Send ^r ; Reload
|
|
32
|
+
WinWaitActive Discard Changes?
|
|
33
|
+
Send y
|
|
34
|
+
WinWaitActive Config Editor
|
|
35
|
+
Sleep 500
|
|
36
|
+
Send asdfasdf
|
|
37
|
+
Sleep 500
|
|
38
|
+
Send ^w ; File Close
|
|
39
|
+
WinWaitActive Save
|
|
40
|
+
Send n
|
|
41
|
+
WinWaitActive Config Editor
|
|
42
|
+
|
|
43
|
+
Send ^o ; File Open
|
|
44
|
+
WinWaitActive Select
|
|
45
|
+
Send +{Tab}+{Tab}{DOWN}{UP}{ENTER}
|
|
46
|
+
Sleep 500
|
|
47
|
+
Send {DOWN}{DOWN}{ENTER}
|
|
48
|
+
Sleep 500
|
|
49
|
+
Send {DOWN}{UP}{ENTER}
|
|
50
|
+
Sleep 500
|
|
51
|
+
Send target.txt{ENTER}
|
|
52
|
+
|
|
53
|
+
WinWaitActive Config Editor
|
|
54
|
+
Send ^w ; File Close
|
|
55
|
+
Sleep 500
|
|
56
|
+
Send ^o ; File Open
|
|
57
|
+
WinWaitActive, Select
|
|
58
|
+
Send target.txt{ENTER}
|
|
59
|
+
WinWaitActive Config Editor
|
|
60
|
+
Send ^o ; File Open
|
|
61
|
+
WinWaitActive, Select
|
|
62
|
+
Send, cmd_tlm_server.txt{ENTER}
|
|
63
|
+
WinWaitActive Config Editor
|
|
64
|
+
Send ^o ; File Open
|
|
65
|
+
WinWaitActive, Select
|
|
66
|
+
Send, target.txt{ENTER}
|
|
67
|
+
WinWaitActive Config Editor
|
|
68
|
+
Send ^o ; File Open
|
|
69
|
+
WinWaitActive, Select
|
|
70
|
+
Send +{Tab}+{Tab}{DOWN}{UP}{ENTER}
|
|
71
|
+
Sleep 500
|
|
72
|
+
Send inst_cmds.txt{ENTER}
|
|
73
|
+
Send ^o ; File Open
|
|
74
|
+
WinWaitActive, Select
|
|
75
|
+
Sleep 2000
|
|
76
|
+
Send inst_tlm.txt{ENTER}
|
|
77
|
+
WinWaitActive Config Editor
|
|
78
|
+
Sleep 1000
|
|
79
|
+
|
|
80
|
+
Send ^{Tab} ; Ctrl-Tab through the tabs
|
|
81
|
+
Sleep 500
|
|
82
|
+
Send ^{Tab}
|
|
83
|
+
Sleep 500
|
|
84
|
+
Send ^{Tab}
|
|
85
|
+
Sleep 500
|
|
86
|
+
Send ^+{Tab} ; Ctrl-Shift-Tab through the tabs
|
|
87
|
+
Sleep 500
|
|
88
|
+
Send ^+{Tab}
|
|
89
|
+
Sleep 500
|
|
90
|
+
Send ^+{Tab}
|
|
91
|
+
Sleep 500
|
|
92
|
+
|
|
93
|
+
Click 550 250
|
|
94
|
+
Sleep 500
|
|
95
|
+
Send ^{Home} ; Go to the first line
|
|
96
|
+
Sleep 1000
|
|
97
|
+
|
|
98
|
+
Click 1000 250 ; Change the target dropdown
|
|
99
|
+
Sleep 500
|
|
100
|
+
Click 1000 280
|
|
101
|
+
Sleep 1000
|
|
102
|
+
; Tab through the fields and change stuff
|
|
103
|
+
Send {Tab}PACKET{ENTER}
|
|
104
|
+
Sleep 1000
|
|
105
|
+
Send {Tab}{Down}
|
|
106
|
+
Sleep 1000
|
|
107
|
+
|
|
108
|
+
Click 390 105 ; Click on the second line
|
|
109
|
+
Loop 29 {
|
|
110
|
+
Send {DOWN}
|
|
111
|
+
Sleep 1000
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
Send ^r ; Reload
|
|
115
|
+
WinWaitActive Discard
|
|
116
|
+
Send {Enter} ; No
|
|
117
|
+
WinWaitActive Config Editor
|
|
118
|
+
Send ^r ; Reload
|
|
119
|
+
WinWaitActive Discard
|
|
120
|
+
Send +{Tab}{Enter} ; Yes
|
|
121
|
+
WinWaitActive Config Editor
|
|
122
|
+
|
|
123
|
+
Send ^+{Tab} ; inst_cmds.txt
|
|
124
|
+
Sleep 500
|
|
125
|
+
Click 550 250
|
|
126
|
+
Sleep 500
|
|
127
|
+
Send ^{Home} ; Go to the first line
|
|
128
|
+
Sleep 1000
|
|
129
|
+
Loop 20 {
|
|
130
|
+
Send {DOWN}
|
|
131
|
+
Sleep 1000
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
Send ^+{Tab} ; cmd_tlm_server.txt
|
|
135
|
+
Sleep 1000
|
|
136
|
+
Loop 5 {
|
|
137
|
+
Send {DOWN}
|
|
138
|
+
Sleep 1000
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
Send ^+{Tab} ; target.txt
|
|
142
|
+
Sleep 1000
|
|
143
|
+
Loop 6 {
|
|
144
|
+
Send {DOWN}
|
|
145
|
+
Sleep 1000
|
|
146
|
+
}
|
|
147
|
+
Click 377 377 ; Click on IGNORE_ITEM
|
|
148
|
+
Sleep 1000
|
|
149
|
+
|
|
150
|
+
Send !a ; alt A
|
|
151
|
+
sleep 500
|
|
152
|
+
Send c ; Create target
|
|
153
|
+
WinWaitActive Target
|
|
154
|
+
Send {Esc}
|
|
155
|
+
|
|
156
|
+
Send !a ; alt A
|
|
157
|
+
sleep 500
|
|
158
|
+
Send c ; Create target
|
|
159
|
+
WinWaitActive Target
|
|
160
|
+
Send AHK_TEST{ENTER}
|
|
161
|
+
Sleep 2000
|
|
162
|
+
|
|
163
|
+
Click 550 300
|
|
164
|
+
Sleep 500
|
|
165
|
+
Send ^{End}{Enter}{Enter} ; Go to end of file
|
|
166
|
+
Sleep 500
|
|
167
|
+
Click 1045 220 ; Add Keyword
|
|
168
|
+
Sleep 500
|
|
169
|
+
Send ^s ; Save
|
|
170
|
+
|
|
171
|
+
Click 1050 400 ; Click over in the help pane
|
|
172
|
+
Sleep 500
|
|
173
|
+
Send {Tab}{Tab} ; Tab over to the file browser
|
|
174
|
+
Sleep 500
|
|
175
|
+
Send {Delete}
|
|
176
|
+
WinWaitActive Delete
|
|
177
|
+
Send {Esc}
|
|
178
|
+
WinWaitActive Config Editor
|
|
179
|
+
Send {Delete}
|
|
180
|
+
WinWaitActive Delete
|
|
181
|
+
Send {Enter}
|
|
182
|
+
WinWaitActive Config Editor
|
|
183
|
+
|
|
184
|
+
Send {up}{up}{Delete}
|
|
185
|
+
WinWaitActive Delete
|
|
186
|
+
Send {Enter}
|
|
187
|
+
WinWaitActive Config Editor
|
|
188
|
+
|
|
189
|
+
Click right 120 230 ; Right click a folder in the tree
|
|
190
|
+
Sleep 500
|
|
191
|
+
Send Click 175 215
|
|
192
|
+
WinWaitActive Delete
|
|
193
|
+
Send {Enter}
|
|
194
|
+
WinWaitActive Config Editor
|
|
195
|
+
Sleep 1000
|
|
196
|
+
|
|
197
|
+
Send ^q ; Quit
|