Sha256: 9fbe3e36fbc465efcd74667528d247f536137602246607c6a3ca2303430b0ce4

Contents?: true

Size: 1.61 KB

Versions: 5

Compression:

Stored size: 1.61 KB

Contents

# frozen_string_literal: true

require 'language_server-protocol'
require_relative 'logger'
require_relative 'routes'
require_relative 'runtime'

#
# This code is based on https://github.com/standardrb/standard.
#
# Copyright (c) 2023 Test Double, Inc.
#
# The MIT License (MIT)
#
# https://github.com/standardrb/standard/blob/main/LICENSE.txt
#
module RuboCop
  module Lsp
    # Language Server Protocol of RuboCop.
    # @api private
    class Server
      def initialize(config_store)
        @reader = LanguageServer::Protocol::Transport::Io::Reader.new($stdin)
        @writer = LanguageServer::Protocol::Transport::Io::Writer.new($stdout)
        @runtime = RuboCop::Lsp::Runtime.new(config_store)
        @routes = Routes.new(self)
      end

      def start
        @reader.read do |request|
          if !request.key?(:method)
            @routes.handle_method_missing(request)
          elsif (route = @routes.for(request[:method]))
            route.call(request)
          else
            @routes.handle_unsupported_method(request)
          end
        rescue StandardError => e
          Logger.log("Error #{e.class} #{e.message[0..100]}")
          Logger.log(e.backtrace.inspect)
        end
      end

      def write(response)
        @writer.write(response)
      end

      def format(path, text)
        @runtime.format(path, text)
      end

      def offenses(path, text)
        @runtime.offenses(path, text)
      end

      def configure(safe_autocorrect: true)
        @runtime.safe_autocorrect = safe_autocorrect
      end

      def stop(&block)
        at_exit(&block) if block
        exit
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
rubocop-1.54.2 lib/rubocop/lsp/server.rb
mlh-rubocop-config-1.0.2 vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/lsp/server.rb
fablicop-1.10.3 vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/lsp/server.rb
rubocop-1.54.1 lib/rubocop/lsp/server.rb
rubocop-1.54.0 lib/rubocop/lsp/server.rb