Class: AppProfiler::Server::ProfileServer::TCP

Inherits:
Transport
  • Object
show all
Defined in:
lib/app_profiler/server.rb

Constant Summary collapse

SERVER_ADDRESS =

it is ONLY safe to run this bound to localhost

"127.0.0.1"

Instance Attribute Summary

Attributes inherited from Transport

#socket

Instance Method Summary collapse

Constructor Details

#initialize(port = 0) ⇒ TCP

Returns a new instance of TCP.



215
216
217
218
219
220
221
# File 'lib/app_profiler/server.rb', line 215

def initialize(port = 0)
  super()
  FileUtils.mkdir_p(PROFILER_TEMPFILE_PATH)
  @socket = TCPServer.new(SERVER_ADDRESS, port)
  @port = @socket.addr[1]
  @port_file = Tempfile.new("profileserver-#{Process.pid}-port-#{@port}-", PROFILER_TEMPFILE_PATH)
end

Instance Method Details

#clientObject



223
224
225
# File 'lib/app_profiler/server.rb', line 223

def client
  TCPSocket.new(SERVER_ADDRESS, @port)
end

#stopObject



227
228
229
230
# File 'lib/app_profiler/server.rb', line 227

def stop
  @port_file.unlink
  @socket.close
end