diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-11-26 23:42:40 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-11-26 23:52:01 +0100 |
| commit | 6bafc6391061d4b589dea835705a08b25a4df9f8 (patch) | |
| tree | 4add85f17fc56da341acfb58a223ea20d80c280a /src | |
| parent | 0579fd4409375aaa9fd8e87a06fd59097b5fcd97 (diff) | |
Document metadata
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc.rs (renamed from src/frame.rs) | 20 | ||||
| -rw-r--r-- | src/export/pdf/mod.rs | 30 | ||||
| -rw-r--r-- | src/export/pdf/page.rs | 8 | ||||
| -rw-r--r-- | src/export/render.rs | 2 | ||||
| -rw-r--r-- | src/lib.rs | 22 | ||||
| -rw-r--r-- | src/model/cast.rs | 2 | ||||
| -rw-r--r-- | src/model/eval.rs | 6 | ||||
| -rw-r--r-- | src/model/library.rs | 4 | ||||
| -rw-r--r-- | src/model/styles.rs | 41 | ||||
| -rw-r--r-- | src/model/typeset.rs | 10 |
10 files changed, 85 insertions, 60 deletions
diff --git a/src/frame.rs b/src/doc.rs index f7d05a1d..f65d5ae6 100644 --- a/src/frame.rs +++ b/src/doc.rs @@ -1,4 +1,4 @@ -//! Finished layouts. +//! Finished documents. use std::fmt::{self, Debug, Formatter, Write}; use std::num::NonZeroUsize; @@ -13,6 +13,24 @@ use crate::image::Image; use crate::model::{dict, Dict, Value}; use crate::util::EcoString; +/// A finished document with metadata and page frames. +#[derive(Debug, Clone, Eq, PartialEq)] +pub struct Document { + /// The document's metadata. + pub metadata: Metadata, + /// The page frames. + pub pages: Vec<Frame>, +} + +/// Document metadata. +#[derive(Debug, Default, Clone, Eq, PartialEq)] +pub struct Metadata { + /// The document's title. + pub title: Option<EcoString>, + /// The document's author. + pub author: Option<EcoString>, +} + /// A finished layout with elements at fixed positions. #[derive(Default, Clone, Eq, PartialEq)] pub struct Frame { diff --git a/src/export/pdf/mod.rs b/src/export/pdf/mod.rs index 2547ddbf..7a530f04 100644 --- a/src/export/pdf/mod.rs +++ b/src/export/pdf/mod.rs @@ -14,21 +14,21 @@ use pdf_writer::{Finish, Name, PdfWriter, Ref, TextStr}; use self::outline::{Heading, HeadingNode}; use self::page::Page; +use crate::doc::{Document, Lang, Metadata}; use crate::font::Font; -use crate::frame::{Frame, Lang}; use crate::geom::{Abs, Dir, Em}; use crate::image::Image; -/// Export a collection of frames into a PDF file. +/// Export a document into a PDF file. /// /// This creates one page per frame. In addition to the frames, you need to pass /// in the context used during compilation so that fonts and images can be /// included in the PDF. /// /// Returns the raw bytes making up the PDF file. -pub fn pdf(frames: &[Frame]) -> Vec<u8> { - let mut ctx = PdfContext::new(); - page::construct_pages(&mut ctx, frames); +pub fn pdf(document: &Document) -> Vec<u8> { + let mut ctx = PdfContext::new(&document.metadata); + page::construct_pages(&mut ctx, &document.pages); font::write_fonts(&mut ctx); image::write_images(&mut ctx); page::write_page_tree(&mut ctx); @@ -41,7 +41,8 @@ const SRGB: Name<'static> = Name(b"srgb"); const D65_GRAY: Name<'static> = Name(b"d65gray"); /// Context for exporting a whole PDF document. -pub struct PdfContext { +pub struct PdfContext<'a> { + metadata: &'a Metadata, writer: PdfWriter, pages: Vec<Page>, page_heights: Vec<f32>, @@ -57,11 +58,12 @@ pub struct PdfContext { heading_tree: Vec<HeadingNode>, } -impl PdfContext { - fn new() -> Self { +impl<'a> PdfContext<'a> { + fn new(metadata: &'a Metadata) -> Self { let mut alloc = Ref::new(1); let page_tree_ref = alloc.bump(); Self { + metadata, writer: PdfWriter::new(), pages: vec![], page_heights: vec![], @@ -117,7 +119,15 @@ fn write_catalog(ctx: &mut PdfContext) { }; // Write the document information. - ctx.writer.document_info(ctx.alloc.bump()).creator(TextStr("Typst")); + let mut info = ctx.writer.document_info(ctx.alloc.bump()); + if let Some(title) = &ctx.metadata.title { + info.title(TextStr(title)); + } + if let Some(author) = &ctx.metadata.author { + info.author(TextStr(author)); + } + info.creator(TextStr("Typst")); + info.finish(); // Write the document catalog. let mut catalog = ctx.writer.catalog(ctx.alloc.bump()); @@ -131,8 +141,6 @@ fn write_catalog(ctx: &mut PdfContext) { if let Some(lang) = lang { catalog.lang(TextStr(lang.as_str())); } - - catalog.finish(); } /// Compress data with the DEFLATE algorithm. diff --git a/src/export/pdf/page.rs b/src/export/pdf/page.rs index 3167989c..7c479425 100644 --- a/src/export/pdf/page.rs +++ b/src/export/pdf/page.rs @@ -5,8 +5,8 @@ use pdf_writer::{Content, Filter, Finish, Name, Rect, Ref, Str}; use super::{ deflate, AbsExt, EmExt, Heading, HeadingNode, PdfContext, RefExt, D65_GRAY, SRGB, }; +use crate::doc::{Destination, Element, Frame, Group, Role, Text}; use crate::font::Font; -use crate::frame::{Destination, Element, Frame, Group, Role, Text}; use crate::geom::{ self, Abs, Color, Em, Geometry, Numeric, Paint, Point, Ratio, Shape, Size, Stroke, Transform, @@ -155,8 +155,8 @@ pub struct Page { } /// An exporter for the contents of a single PDF page. -struct PageContext<'a> { - parent: &'a mut PdfContext, +struct PageContext<'a, 'b> { + parent: &'a mut PdfContext<'b>, page_ref: Ref, content: Content, state: State, @@ -177,7 +177,7 @@ struct State { stroke_space: Option<Name<'static>>, } -impl<'a> PageContext<'a> { +impl PageContext<'_, '_> { fn save_state(&mut self) { self.saves.push(self.state.clone()); self.content.save_state(); diff --git a/src/export/render.rs b/src/export/render.rs index 7cff7ad8..14654b9b 100644 --- a/src/export/render.rs +++ b/src/export/render.rs @@ -8,7 +8,7 @@ use tiny_skia as sk; use ttf_parser::{GlyphId, OutlineBuilder}; use usvg::FitTo; -use crate::frame::{Element, Frame, Group, Text}; +use crate::doc::{Element, Frame, Group, Text}; use crate::geom::{ self, Abs, Geometry, Paint, PathElement, Shape, Size, Stroke, Transform, }; @@ -11,9 +11,8 @@ //! in the source file. The nodes of the content tree are well structured and //! order-independent and thus much better suited for further processing than //! the raw markup. -//! - **Typesetting:** Next, the content is [typeset] into a collection of -//! [`Frame`]s (one per page) with elements and fixed positions, ready for -//! exporting. +//! - **Typesetting:** Next, the content is [typeset] into a [document] +//! containing one [frame] per page with elements and fixed positions. //! - **Exporting:** These frames can finally be exported into an output format //! (currently supported are [PDF] and [raster images]). //! @@ -25,6 +24,8 @@ //! [module]: model::Module //! [content]: model::Content //! [typeset]: model::typeset +//! [document]: doc::Document +//! [frame]: doc::Frame //! [PDF]: export::pdf //! [raster images]: export::render @@ -38,9 +39,9 @@ pub mod geom; pub mod diag; #[macro_use] pub mod model; +pub mod doc; pub mod export; pub mod font; -pub mod frame; pub mod image; pub mod syntax; @@ -49,21 +50,14 @@ use std::path::Path; use comemo::{Prehashed, Track}; use crate::diag::{FileResult, SourceResult}; +use crate::doc::Document; use crate::font::{Font, FontBook}; -use crate::frame::Frame; use crate::model::{Library, Route}; use crate::syntax::{Source, SourceId}; use crate::util::Buffer; -/// Compile a source file into a collection of layouted frames. -/// -/// Returns either a vector of frames representing individual pages or -/// diagnostics in the form of a vector of error message with file and span -/// information. -pub fn compile( - world: &(dyn World + 'static), - source: &Source, -) -> SourceResult<Vec<Frame>> { +/// Compile a source file into a fully layouted document. +pub fn compile(world: &(dyn World + 'static), source: &Source) -> SourceResult<Document> { // Evaluate the source file into a module. let route = Route::default(); let module = model::eval(world.track(), route.track(), source)?; diff --git a/src/model/cast.rs b/src/model/cast.rs index d0a4650a..a4a3fe4e 100644 --- a/src/model/cast.rs +++ b/src/model/cast.rs @@ -3,8 +3,8 @@ use std::str::FromStr; use super::{Content, Regex, Selector, Transform, Value}; use crate::diag::{with_alternative, StrResult}; +use crate::doc::{Destination, Lang, Location, Region}; use crate::font::{FontStretch, FontStyle, FontWeight}; -use crate::frame::{Destination, Lang, Location, Region}; use crate::geom::{ Axes, Corners, Dir, GenAlign, Get, Length, Paint, PartialStroke, Point, Rel, Sides, }; diff --git a/src/model/eval.rs b/src/model/eval.rs index da7036b7..166dadde 100644 --- a/src/model/eval.rs +++ b/src/model/eval.rs @@ -21,10 +21,6 @@ use crate::util::{format_eco, EcoString, PathExt}; use crate::World; /// Evaluate a source file and return the resulting module. -/// -/// Returns either a module containing a scope with top-level bindings and -/// layoutable contents or diagnostics in the form of a vector of error -/// messages with file and span information. #[comemo::memoize] pub fn eval( world: Tracked<dyn World>, @@ -934,7 +930,7 @@ impl Eval for ast::SetRule { let target = self.target(); let target = target.eval(vm)?.cast::<Func>().at(target.span())?; let args = self.args().eval(vm)?; - target.set(args) + Ok(target.set(args)?.spanned(self.span())) } } diff --git a/src/model/library.rs b/src/model/library.rs index 2ee09b27..518caca1 100644 --- a/src/model/library.rs +++ b/src/model/library.rs @@ -7,7 +7,7 @@ use once_cell::sync::OnceCell; use super::{Content, NodeId, Scope, StyleChain, StyleMap}; use crate::diag::SourceResult; -use crate::frame::Frame; +use crate::doc::Document; use crate::geom::{Abs, Dir}; use crate::util::{hash128, EcoString}; use crate::World; @@ -31,7 +31,7 @@ pub struct LangItems { world: Tracked<dyn World>, content: &Content, styles: StyleChain, - ) -> SourceResult<Vec<Frame>>, + ) -> SourceResult<Document>, /// Access the em size. pub em: fn(StyleChain) -> Abs, /// Access the text direction. diff --git a/src/model/styles.rs b/src/model/styles.rs index f3cfb648..80ec0d1e 100644 --- a/src/model/styles.rs +++ b/src/model/styles.rs @@ -79,9 +79,25 @@ impl StyleMap { self } - /// Whether this map contains styles for the given `node.` - pub fn interrupts<T: 'static>(&self) -> bool { - self.0.iter().any(|entry| entry.is_of(NodeId::of::<T>())) + /// Add an origin span to all contained properties. + pub fn spanned(mut self, span: Span) -> Self { + for entry in &mut self.0 { + if let Style::Property(property) = entry { + property.origin = Some(span); + } + } + self + } + + /// Returns `Some(_)` with an optional span if this map contains styles for + /// the given `node`. + pub fn interruption<T: 'static>(&self) -> Option<Option<Span>> { + let node = NodeId::of::<T>(); + self.0.iter().find_map(|entry| match entry { + Style::Property(property) => property.is_of(node).then(|| property.origin), + Style::Recipe(recipe) => recipe.is_of(node).then(|| Some(recipe.span)), + _ => None, + }) } } @@ -127,15 +143,6 @@ impl Style { _ => None, } } - - /// Whether this entry contains styles for the given `node.` - pub fn is_of(&self, node: NodeId) -> bool { - match self { - Self::Property(property) => property.is_of(node), - Self::Recipe(recipe) => recipe.is_of(node), - _ => false, - } - } } impl Debug for Style { @@ -162,6 +169,8 @@ pub struct Property { scoped: bool, /// The property's value. value: Arc<Prehashed<dyn Bounds>>, + /// The span of the set rule the property stems from. + origin: Option<Span>, /// The name of the property. #[cfg(debug_assertions)] name: &'static str, @@ -175,6 +184,7 @@ impl Property { node: K::node(), value: Arc::new(Prehashed::new(value)), scoped: false, + origin: None, #[cfg(debug_assertions)] name: K::NAME, } @@ -330,8 +340,11 @@ impl Recipe { let args = Args::new(self.span, [Value::Content(content.clone())]); let mut result = func.call_detached(world, args); if let Some(span) = content.span() { - let point = || Tracepoint::Show(content.name().into()); - result = result.trace(world, point, span); + // For selector-less show rules, a tracepoint makes no sense. + if self.selector.is_some() { + let point = || Tracepoint::Show(content.name().into()); + result = result.trace(world, point, span); + } } Ok(result?.display()) } diff --git a/src/model/typeset.rs b/src/model/typeset.rs index ad2af3b2..451c6eb0 100644 --- a/src/model/typeset.rs +++ b/src/model/typeset.rs @@ -2,16 +2,12 @@ use comemo::Tracked; use super::{Content, StyleChain}; use crate::diag::SourceResult; -use crate::frame::Frame; +use crate::doc::Document; use crate::World; -/// Typeset content into a collection of layouted frames. -/// -/// Returns either a vector of frames representing individual pages or -/// diagnostics in the form of a vector of error message with file and span -/// information. +/// Typeset content into a fully layouted document. #[comemo::memoize] -pub fn typeset(world: Tracked<dyn World>, content: &Content) -> SourceResult<Vec<Frame>> { +pub fn typeset(world: Tracked<dyn World>, content: &Content) -> SourceResult<Document> { let library = world.library(); let styles = StyleChain::new(&library.styles); (library.items.layout)(world, content, styles) |
