Class: OpenC3::System
- Defined in:
- lib/openc3/system/system.rb,
ext/openc3/ext/telemetry/telemetry.c
Constant Summary collapse
- @@instance =
Variable that holds the singleton instance
nil
- @@instance_mutex =
Mutex used to ensure that only one instance of System is created
Mutex.new
- @@limits_set =
The current limits set
nil
- @@post_instance_callbacks =
Callbacks to call once @@instance is created
[]
Class Method Summary collapse
- .add_post_instance_callback(callback) ⇒ Object
-
.dynamic_update(dynamic_packets, cmd_or_tlm = :TELEMETRY, affect_ids: false) ⇒ Object
Dynamically add packets to the system instance.
-
.instance(target_names = nil, target_config_dir = nil) ⇒ System
Get the singleton instance of System.
-
.limits_set ⇒ Symbol
The current limits_set of the system returned from Redis.
- .limits_set=(value) ⇒ Object
- .setup_targets(target_names, base_dir, scope:) ⇒ Object
Instance Method Summary collapse
- #add_target(target_name, target_config_dir) ⇒ Object
-
#commands ⇒ Commands
Access to the command definition.
-
#initialize(target_names, target_config_dir) ⇒ System
constructor
Create a new System object.
-
#limits ⇒ Limits
Access to the limits definition.
-
#packet_config ⇒ PacketConfig
Access to the packet configuration.
-
#targets ⇒ Hash<String,Target>
Hash of all the known targets.
-
#telemetry ⇒ Telemetry
Access to the telemetry definition.
Constructor Details
#initialize(target_names, target_config_dir) ⇒ System
Create a new System object.
162 163 164 165 166 167 168 169 170 |
# File 'lib/openc3/system/system.rb', line 162 def initialize(target_names, target_config_dir) OpenC3.add_to_search_path(target_config_dir, true) if target_config_dir @targets = {} @packet_config = PacketConfig.new @commands = Commands.new(@packet_config) @telemetry = Telemetry.new(@packet_config) @limits = Limits.new(@packet_config) target_names.each { |target_name| add_target(target_name, target_config_dir) } end |
Class Method Details
.add_post_instance_callback(callback) ⇒ Object
77 78 79 80 81 82 83 |
# File 'lib/openc3/system/system.rb', line 77 def self.add_post_instance_callback(callback) if @@instance callback.call() else @@post_instance_callbacks << callback end end |
.dynamic_update(dynamic_packets, cmd_or_tlm = :TELEMETRY, affect_ids: false) ⇒ Object
Dynamically add packets to the system instance
148 149 150 151 152 153 154 155 156 |
# File 'lib/openc3/system/system.rb', line 148 def self.dynamic_update(dynamic_packets, cmd_or_tlm = :TELEMETRY, affect_ids: false) dynamic_packets.each do |packet| if cmd_or_tlm == :TELEMETRY @@instance.telemetry.dynamic_add_packet(packet, affect_ids: affect_ids) else @@instance.commands.dynamic_add_packet(packet, affect_ids: affect_ids) end end end |
.instance(target_names = nil, target_config_dir = nil) ⇒ System
Get the singleton instance of System
129 130 131 132 133 134 135 136 137 138 139 140 141 |
# File 'lib/openc3/system/system.rb', line 129 def self.instance(target_names = nil, target_config_dir = nil) return @@instance if @@instance raise "System.instance parameters are required on first call" unless target_names and target_config_dir @@instance_mutex.synchronize do return @@instance if @@instance @@instance ||= self.new(target_names, target_config_dir) @@post_instance_callbacks.each do |callback| callback.call end return @@instance end end |
.limits_set ⇒ Symbol
Returns The current limits_set of the system returned from Redis.
66 67 68 69 70 71 |
# File 'lib/openc3/system/system.rb', line 66 def self.limits_set unless @@limits_set @@limits_set = LimitsEventTopic.current_set(scope: $openc3_scope).to_s.intern end @@limits_set end |
.limits_set=(value) ⇒ Object
73 74 75 |
# File 'lib/openc3/system/system.rb', line 73 def self.limits_set=(value) @@limits_set = value.to_s.intern end |
.setup_targets(target_names, base_dir, scope:) ⇒ Object
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
# File 'lib/openc3/system/system.rb', line 85 def self.setup_targets(target_names, base_dir, scope:) # Nothing to do if there are no targets return if target_names.nil? or target_names.length == 0 if @@instance.nil? FileUtils.mkdir_p("#{base_dir}/targets") bucket = Bucket.getClient() target_names.each do |target_name| # Retrieve bucket/targets/target_name/target_id.zip zip_path = "#{base_dir}/targets/#{target_name}_current.zip" FileUtils.mkdir_p(File.dirname(zip_path)) bucket_key = "#{scope}/target_archives/#{target_name}/#{target_name}_current.zip" Logger.info("Retrieving #{bucket_key} from targets bucket") bucket.get_object(bucket: ENV['OPENC3_CONFIG_BUCKET'], key: bucket_key, path: zip_path) Zip::File.open(zip_path) do |zip_file| zip_file.each do |entry| path = File.join("#{base_dir}/targets", entry.name) FileUtils.mkdir_p(File.dirname(path)) zip_file.extract(entry, path) unless File.exist?(path) end end # Now add any modifications in targets_modified/TARGET/cmd_tlm # This adds support for remembering dynamically created packets # target.txt must be configured to either use all files in cmd_tlm folder (default) # or have a predetermined empty file like dynamic_tlm.txt bucket_path = "#{scope}/targets_modified/#{target_name}/cmd_tlm" _, files = bucket.list_files(bucket: ENV['OPENC3_CONFIG_BUCKET'], path: bucket_path) files.each do |file| bucket_key = File.join(bucket_path, file['name']) local_path = "#{base_dir}/targets/#{target_name}/cmd_tlm/#{file['name']}" bucket.get_object(bucket: ENV['OPENC3_CONFIG_BUCKET'], key: bucket_key, path: local_path) end end # Build System from targets System.instance(target_names, "#{base_dir}/targets") end end |
Instance Method Details
#add_target(target_name, target_config_dir) ⇒ Object
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
# File 'lib/openc3/system/system.rb', line 172 def add_target(target_name, target_config_dir) parser = ConfigParser.new folder_name = File.join(target_config_dir, target_name) raise parser.error("Target folder must exist '#{folder_name}'.") unless Dir.exist?(folder_name) target = Target.new(target_name, target_config_dir) @targets[target.name] = target errors = [] # Store all errors processing the cmd_tlm files target.cmd_tlm_files.each do |cmd_tlm_file| @packet_config.process_file(cmd_tlm_file, target.name, target.language) rescue Exception => e errors << "Error processing #{cmd_tlm_file}:\n#{e.}" end unless errors.empty? raise parser.error(errors.join("\n")) end end |
#commands ⇒ Commands
Returns Access to the command definition.
45 |
# File 'lib/openc3/system/system.rb', line 45 instance_attr_reader :commands |
#limits ⇒ Limits
Returns Access to the limits definition.
51 |
# File 'lib/openc3/system/system.rb', line 51 instance_attr_reader :limits |
#packet_config ⇒ PacketConfig
Returns Access to the packet configuration.
42 |
# File 'lib/openc3/system/system.rb', line 42 instance_attr_reader :packet_config |
#targets ⇒ Hash<String,Target>
Returns Hash of all the known targets.
39 |
# File 'lib/openc3/system/system.rb', line 39 instance_attr_reader :targets |
#telemetry ⇒ Telemetry
Returns Access to the telemetry definition.
48 |
# File 'lib/openc3/system/system.rb', line 48 instance_attr_reader :telemetry |