Class: Solargraph::Shell
- Inherits:
-
Thor
- Object
- Thor
- Solargraph::Shell
- Includes:
- ServerMethods
- Defined in:
- lib/solargraph/shell.rb
Instance Method Summary collapse
- #available_cores ⇒ Object
- #clear_cores ⇒ Object
- #config(directory = '.') ⇒ Object
- #download_core(version = nil) ⇒ Object
- #list_cores ⇒ Object
- #reporters ⇒ Object
- #scan ⇒ Object
- #socket ⇒ Object
- #stdio ⇒ Object
- #typecheck(*files) ⇒ Object
- #version ⇒ Object
Methods included from ServerMethods
Instance Method Details
#available_cores ⇒ Object
89 90 91 |
# File 'lib/solargraph/shell.rb', line 89 def available_cores puts Solargraph::YardMap::CoreDocs.available.join("\n") end |
#clear_cores ⇒ Object
94 95 96 |
# File 'lib/solargraph/shell.rb', line 94 def clear_cores Solargraph::YardMap::CoreDocs.clear end |
#config(directory = '.') ⇒ Object
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
# File 'lib/solargraph/shell.rb', line 50 def config(directory = '.') matches = [] if [:extensions] Gem::Specification.each do |g| if g.name.match(/^solargraph\-[A-Za-z0-9_\-]*?\-ext/) require g.name matches.push g.name end end end conf = Solargraph::Workspace::Config.new.raw_data unless matches.empty? matches.each do |m| conf['extensions'].push m end end File.open(File.join(directory, '.solargraph.yml'), 'w') do |file| file.puts conf.to_yaml end STDOUT.puts "Configuration file initialized." end |
#download_core(version = nil) ⇒ Object
73 74 75 76 77 78 79 80 81 |
# File 'lib/solargraph/shell.rb', line 73 def download_core version = nil ver = version || Solargraph::YardMap::CoreDocs.best_download puts "Downloading docs for #{ver}..." Solargraph::YardMap::CoreDocs.download ver rescue ArgumentError => e STDERR.puts "ERROR: #{e.message}" STDERR.puts "Run `solargraph available-cores` for a list." exit 1 end |
#list_cores ⇒ Object
84 85 86 |
# File 'lib/solargraph/shell.rb', line 84 def list_cores puts Solargraph::YardMap::CoreDocs.versions.join("\n") end |
#reporters ⇒ Object
99 100 101 |
# File 'lib/solargraph/shell.rb', line 99 def reporters puts Solargraph::Diagnostics.reporters end |
#scan ⇒ Object
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
# File 'lib/solargraph/shell.rb', line 144 def scan directory = File.realpath([:directory]) api_map = nil time = Benchmark.measure { api_map = Solargraph::ApiMap.load(directory) api_map.pins.each do |pin| begin puts pin_description(pin) if [:verbose] pin.typify api_map pin.probe api_map rescue Exception => e STDERR.puts "Error testing #{pin_description(pin)} #{pin.location ? "at #{pin.location.filename}:#{pin.location.range.start.line + 1}" : ''}" STDERR.puts "[#{e.class}]: #{e.message}" STDERR.puts e.backtrace.join("\n") exit 1 end end } puts "Scanned #{directory} (#{api_map.pins.length} pins) in #{time.real} seconds." end |
#socket ⇒ Object
19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/solargraph/shell.rb', line 19 def socket port = [:port] port = available_port if port.zero? Backport.run do Signal.trap("INT") do Backport.stop end Signal.trap("TERM") do Backport.stop end Backport.prepare_tcp_server host: [:host], port: port, adapter: Solargraph::LanguageServer::Transport::Adapter STDERR.puts "Solargraph is listening PORT=#{port} PID=#{Process.pid}" end end |
#stdio ⇒ Object
35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/solargraph/shell.rb', line 35 def stdio Backport.run do Signal.trap("INT") do Backport.stop end Signal.trap("TERM") do Backport.stop end Backport.prepare_stdio_server adapter: Solargraph::LanguageServer::Transport::Adapter STDERR.puts "Solargraph is listening on stdio PID=#{Process.pid}" end end |
#typecheck(*files) ⇒ Object
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
# File 'lib/solargraph/shell.rb', line 112 def typecheck *files directory = File.realpath([:directory]) api_map = Solargraph::ApiMap.load(directory) if files.empty? files = api_map.source_maps.map(&:filename) else files.map! { |file| File.realpath(file) } end probcount = 0 filecount = 0 files.each do |file| checker = TypeChecker.new(file, api_map: api_map) problems = checker.param_type_problems + checker.return_type_problems problems.concat checker.strict_type_problems if [:strict] next if problems.empty? problems.sort! { |a, b| a.location.range.start.line <=> b.location.range.start.line } puts problems.map { |prob| "#{prob.location.filename}:#{prob.location.range.start.line + 1} - #{prob.message}" }.join("\n") filecount += 1 probcount += problems.length end puts "#{probcount} problem#{probcount != 1 ? 's' : ''} found#{files.length != 1 ? " in #{filecount} of #{files.length} files" : ''}." end |
#version ⇒ Object
12 13 14 |
# File 'lib/solargraph/shell.rb', line 12 def version puts Solargraph::VERSION end |