Class: CFoundry::V2::App::Instance

Inherits:
Object
  • Object
show all
Defined in:
lib/cfoundry/v2/app.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(app, id, client, manifest = {}) ⇒ Instance

Returns a new instance of Instance.



286
287
288
289
290
291
# File 'lib/cfoundry/v2/app.rb', line 286

def initialize(app, id, client, manifest = {})
  @app = app
  @id = id
  @client = client
  @manifest = manifest
end

Instance Attribute Details

#appObject (readonly)

Returns the value of attribute app.



284
285
286
# File 'lib/cfoundry/v2/app.rb', line 284

def app
  @app
end

#idObject (readonly)

Returns the value of attribute id.



284
285
286
# File 'lib/cfoundry/v2/app.rb', line 284

def id
  @id
end

Instance Method Details

#consoleObject



316
317
318
319
320
321
322
# File 'lib/cfoundry/v2/app.rb', line 316

def console
  return unless @manifest[:console_ip] and @manifest[:console_port]

  { :ip => @manifest[:console_ip],
    :port => @manifest[:console_port]
  }
end

#debuggerObject



308
309
310
311
312
313
314
# File 'lib/cfoundry/v2/app.rb', line 308

def debugger
  return unless @manifest[:debug_ip] and @manifest[:debug_port]

  { :ip => @manifest[:debug_ip],
    :port => @manifest[:debug_port]
  }
end

#file(*path) ⇒ Object



339
340
341
# File 'lib/cfoundry/v2/app.rb', line 339

def file(*path)
  @client.base.files(@app.guid, @id, *path)
end

#files(*path) ⇒ Object



333
334
335
336
337
# File 'lib/cfoundry/v2/app.rb', line 333

def files(*path)
  @client.base.files(@app.guid, @id, *path).split("\n").collect do |entry|
    path + [entry.split(/\s+/, 2)[0]]
  end
end

#healthy?Boolean

Returns:

  • (Boolean)


324
325
326
327
328
329
330
331
# File 'lib/cfoundry/v2/app.rb', line 324

def healthy?
  case state
  when "STARTING", "RUNNING"
    true
  when "DOWN", "FLAPPING"
    false
  end
end

#inspectObject



293
294
295
# File 'lib/cfoundry/v2/app.rb', line 293

def inspect
  "#<App::Instance '#{@app.name}' \##@id>"
end

#sinceObject



302
303
304
305
306
# File 'lib/cfoundry/v2/app.rb', line 302

def since
  if since = @manifest[:since]
    Time.at(@manifest[:since])
  end
end

#stateObject Also known as: status



297
298
299
# File 'lib/cfoundry/v2/app.rb', line 297

def state
  @manifest[:state]
end