rune/build.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
use core::fmt;
use core::marker::PhantomData;
use core::mem::take;
use crate::alloc::{self, Vec};
use crate::ast::{Span, Spanned};
#[cfg(feature = "std")]
use crate::compile::FileSourceLoader as DefaultSourceLoader;
#[cfg(not(feature = "std"))]
use crate::compile::NoopSourceLoader as DefaultSourceLoader;
use crate::compile::{
self, CompileVisitor, Located, MetaError, Options, ParseOptionError, Pool, SourceLoader,
};
use crate::runtime::unit::{DefaultStorage, UnitEncoder};
use crate::runtime::Unit;
use crate::{Context, Diagnostics, Item, SourceId, Sources};
/// Error raised when we failed to load sources.
///
/// Look at the passed in [Diagnostics] instance for details.
#[derive(Default, Debug)]
#[non_exhaustive]
pub struct BuildError {
kind: BuildErrorKind,
}
impl From<ParseOptionError> for BuildError {
fn from(error: ParseOptionError) -> Self {
Self {
kind: BuildErrorKind::ParseOptionError(error),
}
}
}
impl From<alloc::Error> for BuildError {
fn from(error: alloc::Error) -> Self {
Self {
kind: BuildErrorKind::Alloc(error),
}
}
}
#[derive(Default, Debug)]
enum BuildErrorKind {
#[default]
Default,
ParseOptionError(ParseOptionError),
Alloc(alloc::Error),
}
impl fmt::Display for BuildError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match &self.kind {
BuildErrorKind::Default => write!(
f,
"Failed to build rune sources (see diagnostics for details)"
),
BuildErrorKind::ParseOptionError(error) => error.fmt(f),
BuildErrorKind::Alloc(error) => error.fmt(f),
}
}
}
impl core::error::Error for BuildError {
fn source(&self) -> Option<&(dyn core::error::Error + 'static)> {
match &self.kind {
BuildErrorKind::Alloc(error) => Some(error),
_ => None,
}
}
}
/// Entry point to building a collection [`Sources`] of Rune into a default
/// executable [`Unit`].
///
/// This returns a [`Build`] instance using a default configuration for a build
/// that can be customized.
///
/// By default, if any error is encountered during compilation the error type
/// [`BuildError`] doesn't provide any diagnostics on what went wrong. To get
/// rich diagnostics you should instead associated a [`Diagnostics`] type
/// through [`Build::with_diagnostics`] and examine it before handling any
/// [`Err(BuildError)`] produced.
///
/// Uses the [Source::name] when generating diagnostics to reference the file.
///
/// [Source::name]: crate::Source::name
///
/// # Examples
///
/// Note: these must be built with the `emit` feature enabled (default) to give
/// access to `rune::termcolor`.
///
/// ```no_run
/// use rune::termcolor::{ColorChoice, StandardStream};
/// use rune::{Context, Source, Vm};
/// use std::sync::Arc;
///
/// let context = Context::with_default_modules()?;
/// let runtime = Arc::new(context.runtime()?);
///
/// let mut sources = rune::Sources::new();
///
/// sources.insert(Source::memory(r#"
/// pub fn main() {
/// println!("Hello World");
/// }
/// "#)?)?;
///
/// let mut diagnostics = rune::Diagnostics::new();
///
/// let result = rune::prepare(&mut sources)
/// .with_context(&context)
/// .with_diagnostics(&mut diagnostics)
/// .build();
///
/// if !diagnostics.is_empty() {
/// let mut writer = StandardStream::stderr(ColorChoice::Always);
/// diagnostics.emit(&mut writer, &sources)?;
/// }
///
/// let unit = result?;
/// let unit = Arc::new(unit);
/// let vm = Vm::new(runtime, unit);
/// # Ok::<_, rune::support::Error>(())
/// ```
pub fn prepare(sources: &mut Sources) -> Build<'_, DefaultStorage> {
prepare_with(sources)
}
/// Prepare with a custom unit storage.
pub fn prepare_with<S>(sources: &mut Sources) -> Build<'_, S>
where
S: UnitEncoder,
{
Build {
sources,
context: None,
diagnostics: None,
options: None,
visitors: Vec::new(),
source_loader: None,
_unit_storage: PhantomData,
}
}
/// A builder for a [Unit].
///
/// See [`rune::prepare`] for more.
///
/// [`rune::prepare`]: prepare
pub struct Build<'a, S> {
sources: &'a mut Sources,
context: Option<&'a Context>,
diagnostics: Option<&'a mut Diagnostics>,
options: Option<&'a Options>,
visitors: Vec<&'a mut dyn compile::CompileVisitor>,
source_loader: Option<&'a mut dyn SourceLoader>,
_unit_storage: PhantomData<S>,
}
/// Wraps a collection of CompileVisitor
struct CompileVisitorGroup<'a> {
visitors: Vec<&'a mut dyn compile::CompileVisitor>,
}
impl<'a> compile::CompileVisitor for CompileVisitorGroup<'a> {
fn register_meta(&mut self, meta: compile::MetaRef<'_>) -> Result<(), MetaError> {
for v in self.visitors.iter_mut() {
v.register_meta(meta)?;
}
Ok(())
}
fn visit_meta(
&mut self,
location: &dyn Located,
meta: compile::MetaRef<'_>,
) -> Result<(), MetaError> {
for v in self.visitors.iter_mut() {
v.visit_meta(location, meta)?;
}
Ok(())
}
fn visit_variable_use(
&mut self,
source_id: SourceId,
var_span: &dyn Spanned,
span: &dyn Spanned,
) -> Result<(), MetaError> {
for v in self.visitors.iter_mut() {
v.visit_variable_use(source_id, var_span, span)?;
}
Ok(())
}
fn visit_mod(&mut self, location: &dyn Located) -> Result<(), MetaError> {
for v in self.visitors.iter_mut() {
v.visit_mod(location)?;
}
Ok(())
}
fn visit_doc_comment(
&mut self,
location: &dyn Located,
item: &Item,
hash: crate::Hash,
doc: &str,
) -> Result<(), MetaError> {
for v in self.visitors.iter_mut() {
v.visit_doc_comment(location, item, hash, doc)?;
}
Ok(())
}
fn visit_field_doc_comment(
&mut self,
location: &dyn Located,
item: &Item,
hash: crate::Hash,
field: &str,
doc: &str,
) -> Result<(), MetaError> {
for v in self.visitors.iter_mut() {
v.visit_field_doc_comment(location, item, hash, field, doc)?;
}
Ok(())
}
}
impl<'a, S> Build<'a, S> {
/// Modify the current [`Build`] to use the given [`Context`] while
/// building.
///
/// If unspecified the empty context constructed with [`Context::new`] will
/// be used. Since this counts as building without a context,
/// [`Vm::without_runtime`] can be used when running the produced [`Unit`].
///
/// [`Vm::without_runtime`]: crate::Vm::without_runtime
#[inline]
pub fn with_context(mut self, context: &'a Context) -> Self {
self.context = Some(context);
self
}
/// Modify the current [Build] to use the given [Diagnostics] collection.
#[inline]
pub fn with_diagnostics(mut self, diagnostics: &'a mut Diagnostics) -> Self {
self.diagnostics = Some(diagnostics);
self
}
/// Modify the current [Build] to use the given [Options].
#[inline]
pub fn with_options(mut self, options: &'a Options) -> Self {
self.options = Some(options);
self
}
/// Modify the current [Build] to configure the given [CompileVisitor].
///
/// A compile visitor allows for custom collecting of compile-time metadata.
/// Like if you want to collect every function that is discovered in the
/// project.
#[inline]
pub fn with_visitor(mut self, visitor: &'a mut dyn CompileVisitor) -> alloc::Result<Self> {
self.visitors.try_push(visitor)?;
Ok(self)
}
/// Modify the current [Build] to configure the given [SourceLoader].
///
/// Source loaders are used to determine how sources are loaded externally
/// from the current file (as is neede when a module is imported).
#[inline]
pub fn with_source_loader(mut self, source_loader: &'a mut dyn SourceLoader) -> Self {
self.source_loader = Some(source_loader);
self
}
/// Build a [`Unit`] with the current configuration.
///
/// See [`rune::prepare`] for more.
///
/// [`rune::prepare`]: prepare
pub fn build(mut self) -> Result<Unit<S>, BuildError>
where
S: Default + UnitEncoder,
{
let default_context;
let context = match self.context.take() {
Some(context) => context,
None => {
default_context = Context::new();
&default_context
}
};
let mut unit = compile::UnitBuilder::default();
let prelude = if context.has_default_modules() {
compile::Prelude::with_default_prelude()?
} else {
compile::Prelude::default()
};
let mut default_diagnostics;
let diagnostics = match self.diagnostics {
Some(diagnostics) => diagnostics,
None => {
default_diagnostics = Diagnostics::new();
&mut default_diagnostics
}
};
let default_options;
let options = match self.options {
Some(options) => options,
None => {
default_options = Options::from_default_env()?;
&default_options
}
};
let mut default_visitors;
let visitors = match self.visitors.is_empty() {
true => {
default_visitors = CompileVisitorGroup {
visitors: Vec::new(),
};
&mut default_visitors
}
false => {
let v = take(&mut self.visitors);
default_visitors = CompileVisitorGroup { visitors: v };
&mut default_visitors
}
};
let mut default_source_loader;
let source_loader = match self.source_loader.take() {
Some(source_loader) => source_loader,
None => {
default_source_loader = DefaultSourceLoader::default();
&mut default_source_loader
}
};
let mut pool = Pool::new()?;
let mut unit_storage = S::default();
compile::compile(
&mut unit,
&prelude,
self.sources,
&mut pool,
context,
visitors,
diagnostics,
source_loader,
options,
&mut unit_storage,
)?;
if diagnostics.has_error() {
return Err(BuildError::default());
}
if options.link_checks {
unit.link(context, diagnostics)?;
}
if diagnostics.has_error() {
return Err(BuildError::default());
}
match unit.build(Span::empty(), unit_storage) {
Ok(unit) => Ok(unit),
Err(error) => {
diagnostics.error(SourceId::empty(), error)?;
Err(BuildError::default())
}
}
}
}