Class: Debugger::RemoteInterface

Inherits:
Interface show all
Defined in:
lib/ruby-debug/interface.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Attributes inherited from Interface

#have_readline

Instance Method Summary collapse

Methods inherited from Interface

#afmt, #aprint, #errmsg

Constructor Details

#initialize(socket) ⇒ RemoteInterface

Returns a new instance of RemoteInterface.



135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
# File 'lib/ruby-debug/interface.rb', line 135

def initialize(socket)
  @command_queue = []
  @socket = socket
  @history_save = false
  @history_length = 256
  @histfile = ''
  # Do we read the histfile?
#       open(@histfile, 'r') do |file|
#         file.each do |line|
#           line.chomp!
#           Readline::HISTORY << line
#         end
#       end if File.exist?(@histfile)
  @restart_file = nil
end

Instance Attribute Details

#command_queueObject

Returns the value of attribute command_queue.



129
130
131
# File 'lib/ruby-debug/interface.rb', line 129

def command_queue
  @command_queue
end

#histfileObject

Returns the value of attribute histfile.



130
131
132
# File 'lib/ruby-debug/interface.rb', line 130

def histfile
  @histfile
end

#history_lengthObject

Returns the value of attribute history_length.



132
133
134
# File 'lib/ruby-debug/interface.rb', line 132

def history_length
  @history_length
end

#history_saveObject

Returns the value of attribute history_save.



131
132
133
# File 'lib/ruby-debug/interface.rb', line 131

def history_save
  @history_save
end

#restart_fileObject

Returns the value of attribute restart_file.



133
134
135
# File 'lib/ruby-debug/interface.rb', line 133

def restart_file
  @restart_file
end

Instance Method Details

#closeObject



151
152
153
154
# File 'lib/ruby-debug/interface.rb', line 151

def close
  @socket.close
rescue Exception
end

#confirm(prompt) ⇒ Object



156
157
158
# File 'lib/ruby-debug/interface.rb', line 156

def confirm(prompt)
  send_command "CONFIRM #{prompt}"
end

#finalizeObject



160
161
# File 'lib/ruby-debug/interface.rb', line 160

def finalize
end


171
172
173
# File 'lib/ruby-debug/interface.rb', line 171

def print(*args)
  @socket.printf(*args)
end

#read_command(prompt) ⇒ Object



163
164
165
# File 'lib/ruby-debug/interface.rb', line 163

def read_command(prompt)
  send_command "PROMPT #{prompt}"
end

#readline_support?Boolean

Returns:

  • (Boolean)


167
168
169
# File 'lib/ruby-debug/interface.rb', line 167

def readline_support?
  false
end