Class: Solargraph::LanguageServer::Message::Workspace::DidChangeWatchedFiles

Inherits:
Base
  • Object
show all
Includes:
UriHelpers
Defined in:
lib/solargraph/language_server/message/workspace/did_change_watched_files.rb

Constant Summary collapse

CREATED =
1
CHANGED =
2
DELETED =
3

Instance Attribute Summary

Attributes inherited from Base

#error, #host, #id, #method, #params, #request, #result

Instance Method Summary collapse

Methods included from UriHelpers

decode, encode, file_to_uri, uri_to_file

Methods inherited from Base

#initialize, #post_initialize, #send_response, #set_error, #set_result

Constructor Details

This class inherits a constructor from Solargraph::LanguageServer::Message::Base

Instance Method Details

#processObject



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/solargraph/language_server/message/workspace/did_change_watched_files.rb', line 11

def process
  need_catalog = false
  # @param change [Hash]
  params['changes'].each do |change|
    if change['type'] == CREATED
      host.create change['uri']
      need_catalog = true
    elsif change['type'] == CHANGED
      next if host.open?(change['uri'])
      host.create change['uri']
      need_catalog = true
    elsif change['type'] == DELETED
      host.delete change['uri']
      need_catalog = true
    else
      set_error Solargraph::LanguageServer::ErrorCodes::INVALID_PARAMS, "Unknown change type ##{change['type']} for #{uri_to_file(change['uri'])}"
    end
  end
  # Force host to catalog libraries after file changes (see castwide/solargraph#139)
  host.catalog if need_catalog
end