nml/src/server.rs

186 lines
5.1 KiB
Rust
Raw Normal View History

2024-10-16 23:42:49 +02:00
mod cache;
2024-07-19 11:52:12 +02:00
mod compiler;
2024-10-16 23:42:49 +02:00
mod document;
2024-07-19 11:52:12 +02:00
mod elements;
mod lsp;
2024-10-16 23:42:49 +02:00
mod lua;
mod parser;
2024-07-19 11:52:12 +02:00
use std::collections::HashMap;
use std::rc::Rc;
use std::sync::Arc;
use dashmap::DashMap;
2024-07-21 15:56:56 +02:00
use document::document::Document;
use document::element::Element;
2024-10-16 23:42:49 +02:00
use lsp::semantic::semantic_token_from_document;
2024-07-21 15:56:56 +02:00
use parser::langparser::LangParser;
use parser::parser::Parser;
2024-10-16 23:42:49 +02:00
use parser::parser::ParserState;
2024-10-17 21:25:20 +02:00
use parser::semantics::Semantics;
2024-07-21 15:56:56 +02:00
use parser::source::SourceFile;
2024-07-19 11:52:12 +02:00
use tower_lsp::jsonrpc::Result;
use tower_lsp::lsp_types::*;
2024-10-16 23:42:49 +02:00
use tower_lsp::Client;
use tower_lsp::LanguageServer;
use tower_lsp::LspService;
use tower_lsp::Server;
2024-07-19 11:52:12 +02:00
#[derive(Debug)]
struct Backend {
2024-10-16 23:42:49 +02:00
client: Client,
2024-07-19 11:52:12 +02:00
document_map: DashMap<String, String>,
2024-07-21 15:56:56 +02:00
//ast_map: DashMap<String, Vec<Box<dyn Element>>>,
2024-07-19 11:52:12 +02:00
//variables: DashMap<String, HashMap<String, Arc<dyn Variable + Send + Sync + 'static>>>,
2024-10-16 23:42:49 +02:00
semantic_token_map: DashMap<String, Vec<SemanticToken>>,
2024-07-19 11:52:12 +02:00
}
#[derive(Debug)]
struct TextDocumentItem {
uri: Url,
text: String,
}
impl Backend {
async fn on_change(&self, params: TextDocumentItem) {
self.document_map
.insert(params.uri.to_string(), params.text.clone());
2024-07-21 15:56:56 +02:00
// TODO: Create a custom parser for the lsp
// Which will require a dyn Document to work
2024-10-16 23:42:49 +02:00
let source = Rc::new(SourceFile::with_content(params.uri.to_string(), params.text.clone(), None));
2024-07-21 15:56:56 +02:00
let parser = LangParser::default();
2024-10-16 23:42:49 +02:00
let (doc, state) = parser.parse(ParserState::new_with_semantics(&parser, None), source.clone(), None);
2024-10-17 21:25:20 +02:00
if let Some(sems) = state.shared.semantics.as_ref().map(|sems| {
std::cell::RefMut::filter_map(sems.borrow_mut(), |sems| sems.get_mut(&(source as Rc<dyn parser::source::Source>)))
.ok()
.unwrap()
}) {
self.semantic_token_map
.insert(params.uri.to_string(), sems.tokens.to_owned());
};
2024-07-21 15:56:56 +02:00
}
2024-07-19 11:52:12 +02:00
}
#[tower_lsp::async_trait]
impl LanguageServer for Backend {
2024-10-16 23:42:49 +02:00
async fn initialize(&self, _: InitializeParams) -> Result<InitializeResult> {
2024-07-19 11:52:12 +02:00
Ok(InitializeResult {
server_info: None,
capabilities: ServerCapabilities {
text_document_sync: Some(TextDocumentSyncCapability::Kind(
2024-10-16 23:42:49 +02:00
TextDocumentSyncKind::FULL,
2024-07-19 11:52:12 +02:00
)),
completion_provider: Some(CompletionOptions {
resolve_provider: Some(false),
trigger_characters: Some(vec!["%".to_string()]),
work_done_progress_options: Default::default(),
all_commit_characters: None,
completion_item: None,
}),
semantic_tokens_provider: Some(
2024-10-16 23:42:49 +02:00
SemanticTokensServerCapabilities::SemanticTokensRegistrationOptions(
SemanticTokensRegistrationOptions {
text_document_registration_options: {
TextDocumentRegistrationOptions {
document_selector: Some(vec![DocumentFilter {
language: Some("nml".to_string()),
scheme: Some("file".to_string()),
pattern: None,
}]),
}
},
semantic_tokens_options: SemanticTokensOptions {
work_done_progress_options: WorkDoneProgressOptions::default(),
legend: SemanticTokensLegend {
token_types: lsp::semantic::LEGEND_TYPE.into(),
token_modifiers: vec![],
},
range: None, //Some(true),
full: Some(SemanticTokensFullOptions::Bool(true)),
},
static_registration_options: StaticRegistrationOptions::default(),
},
),
),
2024-07-19 11:52:12 +02:00
..ServerCapabilities::default()
},
})
2024-10-16 23:42:49 +02:00
}
2024-07-19 11:52:12 +02:00
2024-10-16 23:42:49 +02:00
async fn initialized(&self, _: InitializedParams) {
self.client
.log_message(MessageType::INFO, "server initialized!")
.await;
}
2024-07-19 11:52:12 +02:00
2024-10-16 23:42:49 +02:00
async fn shutdown(&self) -> Result<()> { Ok(()) }
2024-07-19 11:52:12 +02:00
async fn did_open(&self, params: DidOpenTextDocumentParams) {
self.client
.log_message(MessageType::INFO, "file opened!")
.await;
self.on_change(TextDocumentItem {
uri: params.text_document.uri,
text: params.text_document.text,
})
.await
}
async fn did_change(&self, mut params: DidChangeTextDocumentParams) {
self.on_change(TextDocumentItem {
uri: params.text_document.uri,
text: std::mem::take(&mut params.content_changes[0].text),
})
.await
}
2024-10-16 23:42:49 +02:00
async fn completion(&self, params: CompletionParams) -> Result<Option<CompletionResponse>> {
let uri = params.text_document_position.text_document.uri;
let position = params.text_document_position.position;
let completions = || -> Option<Vec<CompletionItem>> {
let mut ret = Vec::with_capacity(0);
2024-07-19 11:52:12 +02:00
2024-10-16 23:42:49 +02:00
Some(ret)
}();
Ok(completions.map(CompletionResponse::Array))
}
2024-07-19 11:52:12 +02:00
async fn semantic_tokens_full(
&self,
params: SemanticTokensParams,
) -> Result<Option<SemanticTokensResult>> {
let uri = params.text_document.uri.to_string();
self.client
.log_message(MessageType::LOG, "semantic_token_full")
.await;
2024-07-21 15:56:56 +02:00
if let Some(semantic_tokens) = self.semantic_token_map.get(&uri) {
2024-10-16 23:42:49 +02:00
let data = semantic_tokens
.iter()
.filter_map(|token| Some(token.clone()))
2024-07-21 15:56:56 +02:00
.collect::<Vec<_>>();
2024-07-19 11:52:12 +02:00
return Ok(Some(SemanticTokensResult::Tokens(SemanticTokens {
result_id: None,
2024-07-21 15:56:56 +02:00
data: data,
2024-07-19 11:52:12 +02:00
})));
}
Ok(None)
}
}
#[tokio::main]
async fn main() {
2024-10-16 23:42:49 +02:00
let stdin = tokio::io::stdin();
let stdout = tokio::io::stdout();
let (service, socket) = LspService::new(|client| Backend {
client,
document_map: DashMap::new(),
semantic_token_map: DashMap::new(),
});
Server::new(stdin, stdout, socket).serve(service).await;
2024-07-19 11:52:12 +02:00
}