Class: RubyLsp::BaseServer

Inherits:
Object
  • Object
show all
Extended by:
T::Helpers, T::Sig
Defined in:
lib/ruby_lsp/base_server.rb

Direct Known Subclasses

Server

Instance Method Summary collapse

Constructor Details

#initialize(test_mode: false) ⇒ BaseServer



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# File 'lib/ruby_lsp/base_server.rb', line 12

def initialize(test_mode: false)
  @test_mode = T.let(test_mode, T::Boolean)
  @writer = T.let(Transport::Stdio::Writer.new, Transport::Stdio::Writer)
  @reader = T.let(Transport::Stdio::Reader.new, Transport::Stdio::Reader)
  @incoming_queue = T.let(Thread::Queue.new, Thread::Queue)
  @outgoing_queue = T.let(Thread::Queue.new, Thread::Queue)
  @cancelled_requests = T.let([], T::Array[Integer])
  @mutex = T.let(Mutex.new, Mutex)
  @worker = T.let(new_worker, Thread)
  @current_request_id = T.let(1, Integer)
  @store = T.let(Store.new, Store)
  @outgoing_dispatcher = T.let(
    Thread.new do
      unless test_mode
        while (message = @outgoing_queue.pop)
          @mutex.synchronize { @writer.write(message.to_hash) }
        end
      end
    end,
    Thread,
  )

  Thread.main.priority = 1
end

Instance Method Details

#new_workerObject



114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# File 'lib/ruby_lsp/base_server.rb', line 114

def new_worker
  Thread.new do
    while (message = T.let(@incoming_queue.pop, T.nilable(T::Hash[Symbol, T.untyped])))
      id = message[:id]

      # Check if the request was cancelled before trying to process it
      @mutex.synchronize do
        if id && @cancelled_requests.include?(id)
          send_message(Result.new(id: id, response: nil))
          @cancelled_requests.delete(id)
          next
        end
      end

      process_message(message)
    end
  end
end

#pop_responseObject



103
104
105
# File 'lib/ruby_lsp/base_server.rb', line 103

def pop_response
  @outgoing_queue.pop
end

#process_message(message) ⇒ Object



108
# File 'lib/ruby_lsp/base_server.rb', line 108

def process_message(message); end

#run_shutdownObject



89
90
91
92
93
94
95
96
97
98
99
# File 'lib/ruby_lsp/base_server.rb', line 89

def run_shutdown
  @incoming_queue.clear
  @outgoing_queue.clear
  @incoming_queue.close
  @outgoing_queue.close
  @cancelled_requests.clear

  @worker.join
  @outgoing_dispatcher.join
  @store.clear
end

#send_empty_response(id) ⇒ Object



145
146
147
# File 'lib/ruby_lsp/base_server.rb', line 145

def send_empty_response(id)
  send_message(Result.new(id: id, response: nil))
end

#send_log_message(message, type: Constant::MessageType::LOG) ⇒ Object



150
151
152
# File 'lib/ruby_lsp/base_server.rb', line 150

def send_log_message(message, type: Constant::MessageType::LOG)
  send_message(Notification.window_log_message(message, type: Constant::MessageType::LOG))
end

#send_message(message) ⇒ Object



134
135
136
137
138
139
140
141
142
# File 'lib/ruby_lsp/base_server.rb', line 134

def send_message(message)
  # When we're shutting down the server, there's a small race condition between closing the thread queues and
  # finishing remaining requests. We may close the queue in the middle of processing a request, which will then fail
  # when trying to send a response back
  return if @outgoing_queue.closed?

  @outgoing_queue << message
  @current_request_id += 1 if message.is_a?(Request)
end

#shutdownObject



111
# File 'lib/ruby_lsp/base_server.rb', line 111

def shutdown; end

#startObject



38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# File 'lib/ruby_lsp/base_server.rb', line 38

def start
  @reader.read do |message|
    method = message[:method]

    # We must parse the document under a mutex lock or else we might switch threads and accept text edits in the
    # source. Altering the source reference during parsing will put the parser in an invalid internal state, since
    # it started parsing with one source but then it changed in the middle. We don't want to do this for text
    # synchronization notifications
    @mutex.synchronize do
      uri = message.dig(:params, :textDocument, :uri)

      if uri
        begin
          parsed_uri = URI(uri)
          message[:params][:textDocument][:uri] = parsed_uri

          # We don't want to try to parse documents on text synchronization notifications
          @store.get(parsed_uri).parse unless method.start_with?("textDocument/did")
        rescue Store::NonExistingDocumentError
          # If we receive a request for a file that no longer exists, we don't want to fail
        end
      end
    end

    # The following requests need to be executed in the main thread directly to avoid concurrency issues. Everything
    # else is pushed into the incoming queue
    case method
    when "initialize", "initialized", "textDocument/didOpen", "textDocument/didClose", "textDocument/didChange"
      process_message(message)
    when "shutdown"
      send_log_message("Shutting down Ruby LSP...")

      shutdown

      @mutex.synchronize do
        run_shutdown
        @writer.write(Result.new(id: message[:id], response: nil).to_hash)
      end
    when "exit"
      @mutex.synchronize do
        status = @incoming_queue.closed? ? 0 : 1
        send_log_message("Shutdown complete with status #{status}")
        exit(status)
      end
    else
      @incoming_queue << message
    end
  end
end