104 lines
2.8 KiB
Rust
Raw Normal View History

//! An experimental implementation of [Rust RFC#2256 libsyntax2.0][rfc#2256].
//!
//! The intent is to be an IDE-ready parser, i.e. one that offers
//!
//! - easy and fast incremental re-parsing,
//! - graceful handling of errors, and
//! - maintains all information in the source file.
//!
//! For more information, see [the RFC][rfc#2265], or [the working draft][RFC.md].
//!
//! [rfc#2256]: <https://github.com/rust-lang/rfcs/pull/2256>
//! [RFC.md]: <https://github.com/matklad/libsyntax2/blob/master/docs/RFC.md>
2018-07-30 14:08:06 +03:00
#![forbid(
missing_debug_implementations,
unconditional_recursion,
future_incompatible
)]
2018-07-29 13:51:55 +03:00
#![deny(bad_style, missing_docs)]
#![allow(missing_docs)]
//#![warn(unreachable_pub)] // rust-lang/rust#47816
2018-07-31 15:40:40 +03:00
extern crate itertools;
2018-07-30 14:08:06 +03:00
extern crate unicode_xid;
2018-08-01 14:55:37 +03:00
extern crate drop_bomb;
2018-08-01 22:07:09 +03:00
extern crate parking_lot;
2018-10-02 17:07:12 +03:00
extern crate rowan;
2017-12-29 23:33:04 +03:00
2018-09-15 14:35:30 +02:00
#[cfg(test)]
#[macro_use]
extern crate test_utils;
2018-07-31 15:40:40 +03:00
pub mod algo;
pub mod ast;
2017-12-29 00:56:36 +03:00
mod lexer;
2018-07-31 23:38:19 +03:00
#[macro_use]
2018-09-06 21:54:54 +08:00
mod token_set;
2018-07-31 23:38:19 +03:00
mod parser_api;
mod grammar;
mod parser_impl;
mod reparsing;
2018-07-31 23:38:19 +03:00
2018-07-29 15:16:07 +03:00
mod syntax_kinds;
2018-08-08 19:44:16 +03:00
mod yellow;
2018-07-30 15:25:52 +03:00
/// Utilities for simple uses of the parser.
pub mod utils;
2018-08-24 13:41:25 +03:00
pub mod text_utils;
2018-07-29 15:16:07 +03:00
pub use {
2018-10-02 17:07:12 +03:00
rowan::{SmolStr, TextRange, TextUnit},
2018-08-25 11:40:17 +03:00
ast::AstNode,
2018-07-30 14:08:06 +03:00
lexer::{tokenize, Token},
2018-07-29 15:16:07 +03:00
syntax_kinds::SyntaxKind,
2018-10-02 18:14:33 +03:00
yellow::{SyntaxNode, SyntaxNodeRef, OwnedRoot, RefRoot, TreeRoot, SyntaxError, Direction},
reparsing::AtomEdit,
2018-07-29 15:16:07 +03:00
};
2018-08-25 13:17:54 +03:00
use {
2018-10-02 17:07:12 +03:00
yellow::{GreenNode},
2018-08-25 13:17:54 +03:00
};
2018-08-25 12:10:35 +03:00
2018-09-11 10:31:04 +03:00
#[derive(Clone, Debug, Hash)]
2018-08-25 11:44:58 +03:00
pub struct File {
2018-08-25 11:40:17 +03:00
root: SyntaxNode
}
2018-08-25 11:44:58 +03:00
impl File {
2018-08-25 13:57:13 +03:00
fn new(green: GreenNode, errors: Vec<SyntaxError>) -> File {
2018-10-02 17:07:12 +03:00
let root = SyntaxNode::new(green, errors);
2018-09-08 18:34:41 +03:00
if cfg!(debug_assertions) {
utils::validate_block_structure(root.borrowed());
}
2018-08-25 11:44:58 +03:00
File { root }
2018-08-25 11:40:17 +03:00
}
2018-08-25 12:44:26 +03:00
pub fn parse(text: &str) -> File {
2018-08-25 12:10:35 +03:00
let tokens = tokenize(&text);
2018-10-08 15:44:00 +03:00
let (green, errors) = parser_impl::parse_with(
yellow::GreenBuilder::new(),
2018-08-25 14:45:17 +03:00
text, &tokens, grammar::root,
);
2018-08-25 13:57:13 +03:00
File::new(green, errors)
2018-08-25 12:10:35 +03:00
}
2018-08-25 13:17:54 +03:00
pub fn reparse(&self, edit: &AtomEdit) -> File {
2018-08-25 13:42:40 +03:00
self.incremental_reparse(edit).unwrap_or_else(|| self.full_reparse(edit))
2018-08-25 13:17:54 +03:00
}
2018-08-25 14:45:17 +03:00
pub fn incremental_reparse(&self, edit: &AtomEdit) -> Option<File> {
reparsing::incremental_reparse(self.syntax(), edit, self.errors())
.map(|(green_node, errors)| File::new(green_node, errors))
2018-08-25 13:17:54 +03:00
}
fn full_reparse(&self, edit: &AtomEdit) -> File {
let text = text_utils::replace_range(self.syntax().text().to_string(), edit.delete, &edit.insert);
2018-08-25 13:17:54 +03:00
File::parse(&text)
}
2018-08-25 11:44:17 +03:00
pub fn ast(&self) -> ast::Root {
ast::Root::cast(self.syntax()).unwrap()
2018-08-25 11:40:17 +03:00
}
pub fn syntax(&self) -> SyntaxNodeRef {
self.root.borrowed()
}
pub fn errors(&self) -> Vec<SyntaxError> {
2018-10-02 17:07:12 +03:00
self.root.root_data().clone()
2018-08-25 11:40:17 +03:00
}
2018-08-24 19:27:30 +03:00
}