Class: Nanite::State

Inherits:
Object show all
Includes:
Enumerable
Defined in:
lib/nanite/state.rb

Instance Method Summary collapse

Constructor Details

#initialize(redis) ⇒ State

this class encapsulates the state of a nanite system using redis as the data store. here is the schema, for each agent we store a number of items, for a nanite with the identity: nanite-foobar we store the following things:

nanite-foobar: 0.72 # load average or ‘status’ s-nanite-foobar: { /foo/bar, /foo/nik } # a SET of the provided services tg-nanite-foobar: { foo-42, customer-12 } # a SET of the tags for this agent t-nanite-foobar: 123456789 # unix timestamp of the last state update

also we do an inverted index for quick lookup of agents providing a certain service, so for each service the agent provides, we add the nanite to a SET of all the nanites that provide said service:

foo/bar: { nanite-foobar, nanite-nickelbag, nanite-another } # redis SET

we do that same thing for tags: some-tag: { nanite-foobar, nanite-nickelbag, nanite-another } # redis SET

This way we can do a lookup of what nanites provide a set of services and tags based on redis SET intersection:

nanites_for(‘/gems/list’, ‘some-tag’)

> returns a nested array of nanites and their state that provide the intersection

of these two service tags



32
33
34
35
36
37
38
# File 'lib/nanite/state.rb', line 32

def initialize(redis)
  Nanite::Log.info("[setup] initializing redis state: #{redis}")
  host, port = redis.split(':')
  host ||= '127.0.0.1'
  port ||= '6379'
  @redis = Redis.new :host => host, :port => port
end

Instance Method Details

#[](nanite) ⇒ Object



47
48
49
50
51
52
53
54
55
56
# File 'lib/nanite/state.rb', line 47

def [](nanite)
  log_redis_error("[]") do
    status = @redis[nanite]
    timestamp = @redis["t-#{nanite}"]
    services = @redis.set_members("s-#{nanite}")
    tags = @redis.set_members("tg-#{nanite}")
    return nil unless status && timestamp && services
    {:services => services, :status => status, :timestamp => timestamp.to_i, :tags => tags}
  end
end

#[]=(nanite, attributes) ⇒ Object



58
59
60
61
62
# File 'lib/nanite/state.rb', line 58

def []=(nanite, attributes)
  log_redis_error("[]=") do
    update_state(nanite, attributes[:status], attributes[:services], attributes[:tags])
  end
end

#all_servicesObject



87
88
89
90
91
# File 'lib/nanite/state.rb', line 87

def all_services
  log_redis_error("all_services") do
    @redis.set_members("naniteservices")
  end
end

#all_tagsObject



93
94
95
96
97
# File 'lib/nanite/state.rb', line 93

def all_tags
  log_redis_error("all_tags") do
    @redis.set_members("nanitetags")
  end
end

#clear_stateObject



145
146
147
148
149
# File 'lib/nanite/state.rb', line 145

def clear_state
  log_redis_error("clear_state") do
    @redis.keys("*").each {|k| @redis.delete k}
  end
end

#delete(nanite) ⇒ Object



64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# File 'lib/nanite/state.rb', line 64

def delete(nanite)
  log_redis_error("delete") do
    (@redis.set_members("s-#{nanite}")||[]).each do |srv|
      @redis.set_delete(srv, nanite)
      if @redis.set_count(srv) == 0
        @redis.delete(srv)
        @redis.set_delete("naniteservices", srv)
      end
    end
    (@redis.set_members("tg-#{nanite}")||[]).each do |tag|
      @redis.set_delete(tag, nanite)
      if @redis.set_count(tag) == 0
        @redis.delete(tag)
        @redis.set_delete("nanitetags", tag)
      end
    end
    @redis.delete nanite
    @redis.delete "s-#{nanite}"
    @redis.delete "t-#{nanite}"
    @redis.delete "tg-#{nanite}"
  end
end

#eachObject



151
152
153
154
155
# File 'lib/nanite/state.rb', line 151

def each
  list_nanites.each do |nan|
    yield nan, self[nan]
  end
end

#list_nanitesObject



135
136
137
138
139
# File 'lib/nanite/state.rb', line 135

def list_nanites
  log_redis_error("list_nanites") do
    @redis.keys("nanite-*")
  end
end

#log_redis_error(meth, &blk) ⇒ Object



40
41
42
43
44
45
# File 'lib/nanite/state.rb', line 40

def log_redis_error(meth,&blk)
  blk.call
rescue Exception => e
  Nanite::Log.info("redis error in method: #{meth}")
  raise e
end

#nanites_for(service, *tags) ⇒ Object



157
158
159
160
161
162
163
164
165
166
# File 'lib/nanite/state.rb', line 157

def nanites_for(service, *tags)
  keys = tags.dup << service
  log_redis_error("nanites_for") do
    res = []
    (@redis.set_intersect(keys)||[]).each do |nan|
      res << [nan, self[nan]]
    end
    res
  end
end

#sizeObject



141
142
143
# File 'lib/nanite/state.rb', line 141

def size
  list_nanites.size
end

#update_state(name, status, services, tags) ⇒ Object



99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# File 'lib/nanite/state.rb', line 99

def update_state(name, status, services, tags)
  old_services = @redis.set_members("s-#{name}")
  if old_services
    (old_services - services).each do |s|
      @redis.set_delete(s, name)
      @redis.set_delete("naniteservices", s)
    end
  end
  old_tags = @redis.set_members("tg-#{name}")
  if old_tags
    (old_tags - tags).each do |t|
      @redis.set_delete(t, name)
      @redis.set_delete("nanitetags", t)
    end
  end
  @redis.delete("s-#{name}")
  services.each do |srv|
    @redis.set_add(srv, name)
    @redis.set_add("s-#{name}", srv)
    @redis.set_add("naniteservices", srv)
  end
  @redis.delete("tg-#{name}")
  tags.each do |tag|
    next if tag.nil?
    @redis.set_add(tag, name)
    @redis.set_add("tg-#{name}", tag)
    @redis.set_add("nanitetags", tag)
  end
  update_status(name, status)
end

#update_status(name, status) ⇒ Object



130
131
132
133
# File 'lib/nanite/state.rb', line 130

def update_status(name, status)
  @redis[name] = status
  @redis["t-#{name}"] = Time.now.utc.to_i
end