Class: OpenC3::Model

Inherits:
Object show all
Defined in:
lib/openc3/models/model.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(primary_key, **kw_args) ⇒ Model

Store the primary key and keyword arguments



131
132
133
134
135
136
137
138
# File 'lib/openc3/models/model.rb', line 131

def initialize(primary_key, **kw_args)
  @primary_key = primary_key
  @name = kw_args[:name]
  @updated_at = kw_args[:updated_at]
  @plugin = kw_args[:plugin]
  @scope = kw_args[:scope]
  @destroyed = false
end

Instance Attribute Details

#nameObject

Returns the value of attribute name.



29
30
31
# File 'lib/openc3/models/model.rb', line 29

def name
  @name
end

#pluginObject

Returns the value of attribute plugin.



31
32
33
# File 'lib/openc3/models/model.rb', line 31

def plugin
  @plugin
end

#scopeObject

Returns the value of attribute scope.



32
33
34
# File 'lib/openc3/models/model.rb', line 32

def scope
  @scope
end

#updated_atObject

Returns the value of attribute updated_at.



30
31
32
# File 'lib/openc3/models/model.rb', line 30

def updated_at
  @updated_at
end

Class Method Details

.all(primary_key) ⇒ Array<Hash>

Returns All the models (as Hash objects) stored under the primary key.

Returns:

  • (Array<Hash>)

    All the models (as Hash objects) stored under the primary key



61
62
63
64
65
66
67
# File 'lib/openc3/models/model.rb', line 61

def self.all(primary_key)
  hash = store.hgetall(primary_key)
  hash.each do |key, value|
    hash[key] = JSON.parse(value, :allow_nan => true, :create_additions => true)
  end
  hash
end

.filter(key, value, scope:, substr: false) ⇒ Object

Loops over all items and returns objects that match a key value pair



71
72
73
74
75
76
77
78
79
80
# File 'lib/openc3/models/model.rb', line 71

def self.filter(key, value, scope:, substr: false)
  filtered = {}
  results = all(scope: scope)
  results.each do |name, result|
    if result[key] == value || (substr && result[key].include?(value))
      filtered[name] = result
    end
  end
  return filtered
end

.find_all_by_plugin(plugin:, scope:) ⇒ Array<Object>

Returns All the models (as Model objects) stored under the primary key which have the plugin attribute.

Returns:

  • (Array<Object>)

    All the models (as Model objects) stored under the primary key which have the plugin attribute



117
118
119
120
121
122
123
124
# File 'lib/openc3/models/model.rb', line 117

def self.find_all_by_plugin(plugin:, scope:)
  result = {}
  models = get_all_models(scope: scope)
  models.each do |name, model|
    result[name] = model if model.plugin == plugin
  end
  result
end

.from_json(json, scope:) ⇒ Model

Returns Model generated from the passed JSON.

Returns:

  • (Model)

    Model generated from the passed JSON



90
91
92
93
94
95
# File 'lib/openc3/models/model.rb', line 90

def self.from_json(json, scope:)
  json = JSON.parse(json, :allow_nan => true, :create_additions => true) if String === json
  raise "json data is nil" if json.nil?
  json[:scope] = scope
  self.new(**json.transform_keys(&:to_sym), scope: scope)
end

.get(primary_key, name:) ⇒ Hash|nil

Returns Hash of this model or nil if name not found under primary_key.

Returns:

  • (Hash|nil)

    Hash of this model or nil if name not found under primary_key



46
47
48
49
50
51
52
53
# File 'lib/openc3/models/model.rb', line 46

def self.get(primary_key, name:)
  json = store.hget(primary_key, name)
  if json
    return JSON.parse(json, :allow_nan => true, :create_additions => true)
  else
    return nil
  end
end

.get_all_models(scope:) ⇒ Array<Object>

Returns All the models (as Model objects) stored under the primary key.

Returns:

  • (Array<Object>)

    All the models (as Model objects) stored under the primary key



109
110
111
112
113
# File 'lib/openc3/models/model.rb', line 109

def self.get_all_models(scope:)
  models = {}
  all(scope: scope).each { |name, json| models[name] = from_json(json, scope: scope) }
  models
end

.get_model(name:, scope:) ⇒ Object|nil

Calls self.get and then from_json to turn the Hash configuration into a Ruby Model object.

Returns:

  • (Object|nil)

    Model object or nil if name not found under primary_key



99
100
101
102
103
104
105
106
# File 'lib/openc3/models/model.rb', line 99

def self.get_model(name:, scope:)
  json = get(name: name, scope: scope)
  if json
    return from_json(json, scope: scope)
  else
    return nil
  end
end

.handle_config(parser, keyword, parameters) ⇒ Object



126
127
128
# File 'lib/openc3/models/model.rb', line 126

def self.handle_config(parser, keyword, parameters)
  raise "must be implemented by subclass"
end

.names(primary_key) ⇒ Array<String>

Returns All the names stored under the primary key.

Returns:

  • (Array<String>)

    All the names stored under the primary key



56
57
58
# File 'lib/openc3/models/model.rb', line 56

def self.names(primary_key)
  store.hkeys(primary_key).sort
end

.set(json, scope:, queued: false) ⇒ Object

Sets (updates) the redis hash of this model



83
84
85
86
87
# File 'lib/openc3/models/model.rb', line 83

def self.set(json, scope:, queued: false)
  json[:scope] = scope
  json.transform_keys!(&:to_sym)
  self.new(**json).create(force: true, queued: queued)
end

.storeObject



34
35
36
# File 'lib/openc3/models/model.rb', line 34

def self.store
  Store
end

.store_queuedObject



38
39
40
# File 'lib/openc3/models/model.rb', line 38

def self.store_queued
  StoreQueued
end

Instance Method Details

#as_json(*a) ⇒ Hash

Returns JSON encoding of this model.

Returns:

  • (Hash)

    JSON encoding of this model



190
191
192
193
194
195
# File 'lib/openc3/models/model.rb', line 190

def as_json(*a)
  { 'name' => @name,
    'updated_at' => @updated_at,
    'plugin' => @plugin,
    'scope' => @scope }
end

#check_disable_erb(filename) ⇒ Object



197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
# File 'lib/openc3/models/model.rb', line 197

def check_disable_erb(filename)
  erb_disabled = false
  if @disable_erb
    if @disable_erb.length == 0
      # Disable all ERB
      erb_disabled = true
    else
      @disable_erb.each do |pattern|
        if filename =~ Regexp.new(pattern)
          erb_disabled = true
          break
        end
      end
    end
  end
  return erb_disabled
end

#create(update: false, force: false, queued: false) ⇒ Object

Update the Redis hash at primary_key and set the field “name” to the JSON generated via calling as_json



142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'lib/openc3/models/model.rb', line 142

def create(update: false, force: false, queued: false)
  unless force
    existing = self.class.store.hget(@primary_key, @name)
    if existing
      raise "#{@primary_key}:#{@name} already exists at create" unless update
    else
      raise "#{@primary_key}:#{@name} doesn't exist at update" if update
    end
  end
  @updated_at = Time.now.to_nsec_from_epoch

  if queued
    write_store = self.class.store_queued
  else
    write_store = self.class.store
  end
  write_store.hset(@primary_key, @name, JSON.generate(self.as_json(:allow_nan => true), :allow_nan => true))
end

#deploy(gem_path, variables) ⇒ Object

Deploy the model into the OpenC3 system. Subclasses must implement this and typically create MicroserviceModels to implement.



168
169
170
# File 'lib/openc3/models/model.rb', line 168

def deploy(gem_path, variables)
  raise "must be implemented by subclass"
end

#destroyObject

Delete the model from the Store



178
179
180
181
182
# File 'lib/openc3/models/model.rb', line 178

def destroy
  @destroyed = true
  undeploy()
  self.class.store.hdel(@primary_key, @name)
end

#destroyed?Boolean

Indicate if destroy has been called

Returns:

  • (Boolean)


185
186
187
# File 'lib/openc3/models/model.rb', line 185

def destroyed?
  @destroyed
end

#undeployObject

Undo the actions of deploy and remove the model from OpenC3. Subclasses must implement this as by default it is a noop.



174
175
# File 'lib/openc3/models/model.rb', line 174

def undeploy
end

#update(force: false, queued: false) ⇒ Object

Alias for create(update: true)



162
163
164
# File 'lib/openc3/models/model.rb', line 162

def update(force: false, queued: false)
  create(update: true, force: force, queued: queued)
end