Sha256: 27f815206f8b655894b687439ed2d9082e96a0bc761fa77ec7c844a372fbaa73

Contents?: true

Size: 1.9 KB

Versions: 11

Compression:

Stored size: 1.9 KB

Contents

# encoding: ascii-8bit

# Copyright 2017 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 General Public License
# as published by the Free Software Foundation; version 3 with
# attribution addendums as found in the LICENSE.txt

require 'cosmos/interfaces/protocols/protocol'

module Cosmos
  # Protocol which permanently overrides an item value such that reading the
  # item returns the overriden value. Methods are prefixed with underscores
  # so the API can include the original name which calls out to these
  # methods. Clearing the override requires calling normalize_tlm.
  class OverrideProtocol < Protocol

    # @param allow_empty_data [true/false] Whether STOP should be returned on empty data
    def initialize(allow_empty_data = false)
      super(allow_empty_data)
    end

    # Called to perform modifications on a read packet before it is given to the user
    #
    # @param packet [Packet] Original packet
    # @return [Packet] Potentially modified packet
    def read_packet(packet)
      if @interface.override_tlm && !@interface.override_tlm.empty?
        # Need to make sure packet is identified and defined
        target_names = nil
        target_names = @interface.target_names if @interface
        identified_packet = System.telemetry.identify_and_define_packet(packet, target_names)
        if identified_packet
          packet = identified_packet
          packets = @interface.override_tlm[packet.target_name]
          if packets
            items = packets[packet.packet_name]
            if items
              items.each do |item_name, value|
                # This should be safe because we check at the API level it exists
                packet.write(item_name, value[0], value[1])
              end
            end
          end
        end
      end
      return packet
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
cosmos-4.1.0-java lib/cosmos/interfaces/protocols/override_protocol.rb
cosmos-4.1.0 lib/cosmos/interfaces/protocols/override_protocol.rb
cosmos-4.0.3-java lib/cosmos/interfaces/protocols/override_protocol.rb
cosmos-4.0.3-universal-java-1.8 lib/cosmos/interfaces/protocols/override_protocol.rb
cosmos-4.0.3 lib/cosmos/interfaces/protocols/override_protocol.rb
cosmos-4.0.2-universal-java-1.8 lib/cosmos/interfaces/protocols/override_protocol.rb
cosmos-4.0.2 lib/cosmos/interfaces/protocols/override_protocol.rb
cosmos-4.0.1-universal-java-1.8 lib/cosmos/interfaces/protocols/override_protocol.rb
cosmos-4.0.1 lib/cosmos/interfaces/protocols/override_protocol.rb
cosmos-4.0.0-universal-java-1.8 lib/cosmos/interfaces/protocols/override_protocol.rb
cosmos-4.0.0 lib/cosmos/interfaces/protocols/override_protocol.rb