Sha256: 237ed28b2c8d87cdde775ae42ade281e3bbee8f9e4a7629d77c3c467e0b01f85

Contents?: true

Size: 1.81 KB

Versions: 2

Compression:

Stored size: 1.81 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/utilities/store'

module Cosmos
  class Topic
    if RUBY_VERSION < "3"
      # Delegate all unknown class methods to delegate to the EphemeralStore
      def self.method_missing(message, *args, &block)
        EphemeralStore.public_send(message, *args, &block)
      end
    else
      # Delegate all unknown class methods to delegate to the EphemeralStore
      def self.method_missing(message, *args, **kwargs, &block)
        EphemeralStore.public_send(message, *args, **kwargs, &block)
      end
    end

    def self.clear_topics(topics, maxlen = 0)
      topics.each { |topic| EphemeralStore.xtrim(topic, maxlen) }
    end

    def self.topics(scope, key)
      EphemeralStore
        .scan_each(match: "#{scope}__#{key}__*", type: 'stream', count: 100)
        .to_a # Change the enumerator into an array
        .uniq # Scan can return duplicates so ensure unique
        .sort # Sort not entirely necessary but nice
    end

    def self.get_cnt(topic)
      _, packet = EphemeralStore.get_newest_message(topic)
      packet ? packet["received_count"].to_i : 0
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cosmos-5.0.5 lib/cosmos/topics/topic.rb
cosmos-5.0.4 lib/cosmos/topics/topic.rb