Sha256: 95ff4dda554f63e4868c79e8bc1f8b42b465470d4ed1a548e8b8c03cb104afd5
Contents?: true
Size: 1.94 KB
Versions: 2
Compression:
Stored size: 1.94 KB
Contents
# encoding: ascii-8bit # Copyright 2022 Ball Aerospace & Technologies Corp. # All Rights Reserved. # # This program is free software; you can modify and/or redistribute it # under the terms of the GNU Affero General Public License # as published by the Free Software Foundation; version 3 with # attribution addendums as found in the LICENSE.txt # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # This program may also be used under the terms of a commercial or # enterprise edition license of COSMOS if purchased from the # copyright holder require 'cosmos/topics/topic' module Cosmos class TelemetryDecomTopic < Topic def self.topics(scope:) super(scope, 'DECOM') end def self.write_packet(packet, id: nil, scope:) # Need to build a JSON hash of the decommutated data # Support "downward typing" # everything base name is RAW (including DERIVED) # Request for WITH_UNITS, etc will look down until it finds something # If nothing - item does not exist - nil # __ as seperators ITEM1, ITEM1__C, ITEM1__F, ITEM1__U json_hash = CvtModel.build_json_from_packet(packet) # Write to stream msg_hash = { :time => packet.packet_time.to_nsec_from_epoch, :stored => packet.stored, :target_name => packet.target_name, :packet_name => packet.packet_name, :received_count => packet.received_count, :json_data => JSON.generate(json_hash.as_json), } Topic.write_topic("#{scope}__DECOM__{#{packet.target_name}}__#{packet.packet_name}", msg_hash, id) # Also update the current value table with the latest decommutated data CvtModel.set(json_hash, target_name: packet.target_name, packet_name: packet.packet_name, scope: scope) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cosmos-5.0.5 | lib/cosmos/topics/telemetry_decom_topic.rb |
cosmos-5.0.4 | lib/cosmos/topics/telemetry_decom_topic.rb |