summaryrefslogtreecommitdiff
path: root/crates/typst-library/src/foundations/module.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/typst-library/src/foundations/module.rs')
-rw-r--r--crates/typst-library/src/foundations/module.rs142
1 files changed, 142 insertions, 0 deletions
diff --git a/crates/typst-library/src/foundations/module.rs b/crates/typst-library/src/foundations/module.rs
new file mode 100644
index 00000000..a476d6af
--- /dev/null
+++ b/crates/typst-library/src/foundations/module.rs
@@ -0,0 +1,142 @@
+use std::fmt::{self, Debug, Formatter};
+use std::sync::Arc;
+
+use ecow::{eco_format, EcoString};
+use typst_syntax::FileId;
+
+use crate::diag::StrResult;
+use crate::foundations::{repr, ty, Content, Scope, Value};
+
+/// An evaluated module, either built-in or resulting from a file.
+///
+/// You can access definitions from the module using
+/// [field access notation]($scripting/#fields) and interact with it using the
+/// [import and include syntaxes]($scripting/#modules). Alternatively, it is
+/// possible to convert a module to a dictionary, and therefore access its
+/// contents dynamically, using the
+/// [dictionary constructor]($dictionary/#constructor).
+///
+/// # Example
+/// ```example
+/// <<< #import "utils.typ"
+/// <<< #utils.add(2, 5)
+///
+/// <<< #import utils: sub
+/// <<< #sub(1, 4)
+/// >>> #7
+/// >>>
+/// >>> #(-3)
+/// ```
+#[ty(cast)]
+#[derive(Clone, Hash)]
+#[allow(clippy::derived_hash_with_manual_eq)]
+pub struct Module {
+ /// The module's name.
+ name: EcoString,
+ /// The reference-counted inner fields.
+ inner: Arc<Repr>,
+}
+
+/// The internal representation.
+#[derive(Debug, Clone, Hash)]
+struct Repr {
+ /// The top-level definitions that were bound in this module.
+ scope: Scope,
+ /// The module's layoutable contents.
+ content: Content,
+ /// The id of the file which defines the module, if any.
+ file_id: Option<FileId>,
+}
+
+impl Module {
+ /// Create a new module.
+ pub fn new(name: impl Into<EcoString>, scope: Scope) -> Self {
+ Self {
+ name: name.into(),
+ inner: Arc::new(Repr { scope, content: Content::empty(), file_id: None }),
+ }
+ }
+
+ /// Update the module's name.
+ pub fn with_name(mut self, name: impl Into<EcoString>) -> Self {
+ self.name = name.into();
+ self
+ }
+
+ /// Update the module's scope.
+ pub fn with_scope(mut self, scope: Scope) -> Self {
+ Arc::make_mut(&mut self.inner).scope = scope;
+ self
+ }
+
+ /// Update the module's content.
+ pub fn with_content(mut self, content: Content) -> Self {
+ Arc::make_mut(&mut self.inner).content = content;
+ self
+ }
+
+ /// Update the module's file id.
+ pub fn with_file_id(mut self, file_id: FileId) -> Self {
+ Arc::make_mut(&mut self.inner).file_id = Some(file_id);
+ self
+ }
+
+ /// Get the module's name.
+ pub fn name(&self) -> &EcoString {
+ &self.name
+ }
+
+ /// Access the module's scope.
+ pub fn scope(&self) -> &Scope {
+ &self.inner.scope
+ }
+
+ /// Access the module's file id.
+ ///
+ /// Some modules are not associated with a file, like the built-in modules.
+ pub fn file_id(&self) -> Option<FileId> {
+ self.inner.file_id
+ }
+
+ /// Access the module's scope, mutably.
+ pub fn scope_mut(&mut self) -> &mut Scope {
+ &mut Arc::make_mut(&mut self.inner).scope
+ }
+
+ /// Try to access a definition in the module.
+ pub fn field(&self, name: &str) -> StrResult<&Value> {
+ self.scope().get(name).ok_or_else(|| {
+ eco_format!("module `{}` does not contain `{name}`", self.name())
+ })
+ }
+
+ /// Extract the module's content.
+ pub fn content(self) -> Content {
+ match Arc::try_unwrap(self.inner) {
+ Ok(repr) => repr.content,
+ Err(arc) => arc.content.clone(),
+ }
+ }
+}
+
+impl Debug for Module {
+ fn fmt(&self, f: &mut Formatter) -> fmt::Result {
+ f.debug_struct("Module")
+ .field("name", &self.name)
+ .field("scope", &self.inner.scope)
+ .field("content", &self.inner.content)
+ .finish()
+ }
+}
+
+impl repr::Repr for Module {
+ fn repr(&self) -> EcoString {
+ eco_format!("<module {}>", self.name())
+ }
+}
+
+impl PartialEq for Module {
+ fn eq(&self, other: &Self) -> bool {
+ self.name == other.name && Arc::ptr_eq(&self.inner, &other.inner)
+ }
+}