Sha256: 20c1ccbbd51e59b049743f54c05de916df72587bb6a73ba2084a092c73abde9e

Contents?: true

Size: 1.14 KB

Versions: 6776

Compression:

Stored size: 1.14 KB

Contents

# frozen_string_literal: true

require "socket"

module Byebug
  module Remote
    #
    # Client for remote debugging
    #
    class Client
      attr_reader :interface, :socket

      def initialize(interface)
        @interface = interface
        @socket = nil
      end

      #
      # Connects to the remote byebug
      #
      def start(host = "localhost", port = PORT)
        connect_at(host, port)

        while (line = socket.gets)
          case line
          when /^PROMPT (.*)$/
            input = interface.read_command(Regexp.last_match[1])
            break unless input

            socket.puts input
          when /^CONFIRM (.*)$/
            input = interface.readline(Regexp.last_match[1])
            break unless input

            socket.puts input
          else
            interface.puts line
          end
        end

        socket.close
      end

      def started?
        !socket.nil?
      end

      private

      def connect_at(host, port)
        interface.puts "Connecting to byebug server at #{host}:#{port}..."
        @socket = TCPSocket.new(host, port)
        interface.puts "Connected."
      end
    end
  end
end

Version data entries

6,776 entries across 6,772 versions & 31 rubygems

Version Path
passbase-1.0.1 vendor/bundle/ruby/2.7.0/gems/byebug-11.1.3/lib/byebug/remote/client.rb
passbase-1.0.0 vendor/bundle/ruby/2.7.0/gems/byebug-11.1.3/lib/byebug/remote/client.rb
files.com-1.0.1 vendor/bundle/ruby/2.5.0/gems/byebug-11.1.3/lib/byebug/remote/client.rb
byebug-11.1.3 lib/byebug/remote/client.rb
byebug-11.1.2 lib/byebug/remote/client.rb
talon_one-2.0.0 vendor/bundle/ruby/2.3.0/gems/byebug-11.0.1/lib/byebug/remote/client.rb
talon_one-2.0.0 vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/remote/client.rb
argon-1.3.1 vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/remote/client.rb
symbolic_enum-1.1.5 vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/remote/client.rb
byebug-11.1.1 lib/byebug/remote/client.rb
byebug-11.1.0 lib/byebug/remote/client.rb
honeybadger-4.5.3 vendor/bundle/ruby/2.6.0/gems/byebug-11.0.1/lib/byebug/remote/client.rb
chatops-rpc-0.0.2 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/byebug-11.0.1/lib/byebug/remote/client.rb
chatops-rpc-0.0.1 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/byebug-11.0.1/lib/byebug/remote/client.rb
byebug-11.0.1 lib/byebug/remote/client.rb
byebug-11.0.0 lib/byebug/remote/client.rb