Sha256: 5fdbc73084faeb1dca3ab6ff16a30f274350557063fc00a9bce55923ac39393b

Contents?: true

Size: 1.42 KB

Versions: 64

Compression:

Stored size: 1.42 KB

Contents

# encoding: ascii-8bit

# Copyright 2014 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/conversions/unix_time_conversion'

module Cosmos

  # Converts a unix format time: Epoch Jan 1 1970, seconds and microseconds,
  # into a floating point number.
  class UnixTimeSecondsConversion < UnixTimeConversion

    # Initializes converted_type to :FLOAT and converted_bit_size to 64
    #
    # @param seconds_item_name [String] The telemetry item in the packet which
    #   represents the number of seconds since the UNIX time epoch
    # @param microseconds_item_name [String] The telemetry item in the packet
    #   which represents microseconds
    def initialize(seconds_item_name, microseconds_item_name = nil)
      super(seconds_item_name, microseconds_item_name)
      @converted_type = :FLOAT
      @converted_bit_size = 64
    end

    # @param (see Conversion#call)
    # @return [Float] Packet time in seconds since UNIX epoch
    def call(value, packet, buffer)
      super.to_f
    end

    # @return [String] The name of the class followed by the time conversion
    def to_s
      super << ".to_f"
    end

  end # class UnixTimeSecondsConversion

end # module Cosmos

Version data entries

64 entries across 64 versions & 1 rubygems

Version Path
cosmos-4.5.2-java lib/cosmos/conversions/unix_time_seconds_conversion.rb
cosmos-4.5.2 lib/cosmos/conversions/unix_time_seconds_conversion.rb
cosmos-4.5.1-java lib/cosmos/conversions/unix_time_seconds_conversion.rb
cosmos-4.5.1 lib/cosmos/conversions/unix_time_seconds_conversion.rb
cosmos-4.5.0-java lib/cosmos/conversions/unix_time_seconds_conversion.rb
cosmos-4.5.0 lib/cosmos/conversions/unix_time_seconds_conversion.rb
cosmos-4.4.2-java lib/cosmos/conversions/unix_time_seconds_conversion.rb
cosmos-4.4.2 lib/cosmos/conversions/unix_time_seconds_conversion.rb
cosmos-4.4.1-java lib/cosmos/conversions/unix_time_seconds_conversion.rb
cosmos-4.4.1 lib/cosmos/conversions/unix_time_seconds_conversion.rb
cosmos-4.4.0-java lib/cosmos/conversions/unix_time_seconds_conversion.rb
cosmos-4.4.0 lib/cosmos/conversions/unix_time_seconds_conversion.rb
cosmos-4.3.0-java lib/cosmos/conversions/unix_time_seconds_conversion.rb
cosmos-4.3.0 lib/cosmos/conversions/unix_time_seconds_conversion.rb
cosmos-4.2.4-java lib/cosmos/conversions/unix_time_seconds_conversion.rb
cosmos-4.2.4 lib/cosmos/conversions/unix_time_seconds_conversion.rb
cosmos-4.2.3-java lib/cosmos/conversions/unix_time_seconds_conversion.rb
cosmos-4.2.3 lib/cosmos/conversions/unix_time_seconds_conversion.rb
cosmos-4.2.2-java lib/cosmos/conversions/unix_time_seconds_conversion.rb
cosmos-4.2.2 lib/cosmos/conversions/unix_time_seconds_conversion.rb