Documentation
¶
Overview ¶
Package xfa reads Adobe's XML Forms Architecture — the form description carried inside a PDF whose pages are a placeholder.
Why this exists ¶
A PDF form comes in two kinds, and only one of them is a PDF form. Measured over 2 240 real government forms: 560 carry an XFA package, and 546 of those are STATIC — a second, proprietary description of a form that is already drawn on the pages, which go-pdfkit/forms reads and fills without help.
The other fourteen are DYNAMIC. Their pages hold a panel reading "Please wait... your PDF viewer may not be able to display this type of document", and the form exists only as XML, laid out when the document is opened. Adobe removed the format from PDF 2.0; no browser and no other reader lays one out. A person handed such a file has a document that looks blank and is not.
What it does, and what it will not ¶
This reads the template — the description of the form — into a typed tree, and the datasets, which hold what has been filled in. It does not run the forms' scripts, and that is a measured decision rather than a shortcut: of 5 744 scripts across those fourteen forms, 5 131 are handlers for enter, exit, change and click. They fire when somebody types. Only 188 run at load, so the form a reader first sees does not depend on them.
FormCalc, XFA's other scripting language, is not read either: every script in the corpus declares itself as JavaScript.
Joining a field to its value ¶
Bind does that, and it is not a matter of matching names. A form binds its fields to its data explicitly, through <bind> elements — 26 573 of them across the 560 XFA packages in the corpus — and where it does not, each container consumes the next unclaimed data node of its own name, in document order. The two trees are named differently on purpose: the template names a field for the layout and the data names it for the record.
Taking the fourteen dynamic forms and asking how many template paths the data happens to answer:
cerfa_12064 212 fields, 220 values, 0 paths in common t657-fill-25e 459 fields, 459 values, 0 paths in common cerfa_12818 72 fields, 72 values, 47 paths in common CA-27_sample 136 fields, 99 values, 69 paths in common
The same count of each and not one path in common is what settles it: two of these forms name every field twice over, and only the binding says which goes with which. Guessing by name would answer confidently and wrongly.
Measured over all 560 packages:
560 templates read, 560 with a data tree
26 573 <bind> elements: 11 875 match="none"
11 544 match="global"
2 589 with no match, which means "once"
565 match="dataRef", every one with a ref
80 482 fields placed, 60 865 of them bound to a data node
0 <bind> expressions holding a construct this does not read
Where a field goes ¶
Expand joins the two trees and returns the form as a document holds it — one node per occurrence, so a table row written once in the template and filled three times by the data is three nodes. Layout runs over that and never over the template, which is what pdf.js's binder does too and for the same reason (bind.js:61).
Place then lays a form out on paper. Under a POSITIONED layout a box's place is its own x and y added to those of every container above it, down from the content area's origin, with anchorType and rotate resolved. Under a FLOW layout the coordinates are thrown away and the children are stacked instead, and this follows two of the six: tb and table stack downwards, each child beginning where the one above it ends, and row cuts its cells from the table's columnWidths. A container's height is the taller of what it holds and what the template writes for it, so the heights are arrived at from the leaves upwards.
A leaf's own height is often not written either, and then it is its TEXT: broken into lines at the width it has, a line count times a line height. Where the text is the XHTML of a rich value it is walked in the order the markup writes it, since half of the corpus's paragraphs hold text both before and after a span.
The fonts are the caller's ¶
A template names typefaces and carries none; the PDF it travelled in carries them, and this package reads neither. So the font set is an argument. PlaceWithFonts takes one, FontSet is how a caller builds it out of Face implementations of its own, and [FontSet.find] is pdf.js's own fuzzy lookup from the name a template writes to a family the caller supplied. No font file is read here and none should be: glyph advances and vertical metrics belong to a font parser, and go-opentype/opentype has both.
Place passes none, and that is a regime of the reference's rather than a shortfall: pdf.js measures a form whose fonts it cannot resolve at one em per character, a first line one em tall and every line after it 1.2 ems, at ten points whatever the template asks for — because the size written beside a typeface nobody has is discarded along with it. Its numbers and these are the same numbers. See the note at the top of text.go.
How much it decides, measured over the 559 forms pdfium lays out, with the 6 960 leaves whose height comes from their text and which pair unambiguously with pdfium's. The question asked is how many LINES the text came to, which pdfium's probe now reports per leaf; comparing heights would not answer it, because pdfium measures with its own font files and no implementation reproduces another's advances in points:
no fonts with fifteen families off one machine same number of lines as pdfium 23.2% 76.3% one line more 35.2% 20.2% two or more 41.5% 2.4% FEWER lines 0.1% 1.1% body leaves off the paper 1000 10, of which 9 pdfium puts off too agreeing on sheet+y 91.29% 92.64%
v0.19.0 published 25.9% and 82.5% in the first row. Those were a PROXY for it — (our height less pdfium's) over OUR line height, bucketed — and the proxy flatters: where the two disagree on the number of lines AND on how tall a line is, the errors can cancel to a height that matches. 1 002 leaves scored as agreeing under the proxy take a different number of lines, fw9's Page4.Col2.F among them: four lines of 9 pt here against pdfium's three of 12, which is 36 pt either way.
Where the line counts DO agree the heights still differ, and the whole of that difference is the FIRST line: on 5 372 of 5 373 such leaves the residue is exactly our first line height less pdfium's, and our line height for every line after the first is pdfium's to a hundredth of a point on 1 177 of 1 178. pdfium makes the first line the font size (CXFA_TextParser:: GetLineHeight, its bFirst branch); pdf.js makes it the face's line height less its line gap, which for Arial is 1.1172 ems, and this follows pdf.js. The gap is therefore 0.1172 of the size — 1.172 pt at ten points — and it is a disagreement with pdfium rather than a defect against the reference.
Where the stack runs off the bottom, the page turns. Which page comes next is a state machine rather than "another of the same" — the page set's relation, each page area's occur, the parity of the page number, and the explicit breaks the template writes — and Place follows pdf.js's (template.js:4064-4236, 5418-5657).
A container that MAY be split is broken across the boundary: what it placed before the break stays where it is, and the rest of it begins again at the top of the next content area. Whether it may is a property of the whole CHAIN above it and not of the container alone, which is pdf.js's rule and the reason [placer.splittable] recurses upward. One that may not — a positioned layout, a row, anything with keep intact, anything inside an <area> — moves whole.
Except a positioned container whose author wrote keep intact="none" on it. That is a permission pdf.js's clause order makes unreachable and pdfium reads, and such a container is laid out whole and then CUT across the boundary, its children keeping their written y. See [placer.cuttable].
What moves whole is still put on the paper. The first such container of each sheet is not measured against anything: pdf.js's checkDimensions returns true while the sheet has had none (layout.js:266-268) and the one that claims that pass cannot fail either, nor can anything inside it. Everything after it on that sheet is checked, and what does not fit turns the page — where it is first in its turn. So a container taller than a whole content area comes out one per sheet, hanging over the bottom, which is what pdf.js draws.
A page set says which sheet comes after this one, and its <occur> is what bounds a form: a page AREA's max caps how many sheets it makes in one run of the set holding it, and starting the set again offers it afresh. Both references say so and neither can quite carry it out — see [pager.cleanKids].
WHICH page area each sheet is opened on agrees with pdfium everywhere. Nine of the 559 forms disagree with it on how many sheets there are, and on every one of those nine one side's sequence of page areas is a SUBSEQUENCE of the other's: no sheet of the corpus is opened on a page area pdfium does not choose at that point in the order. Lining the two up by INDEX instead reports ten sheets across three forms as being on the wrong page area, and that number measures the sheet COUNT rather than the choice — a sheet missed in the middle of a run shifts every sheet after it. See [TestSheetsAgainstPdfium], which now asks both.
Everything it does not reach — rl-row, which fills a row from the right, a form that runs out of pages, an element with no room inside a container that moves whole — comes back in Layout.Unplaced with the reason written out, one element at a time. Nothing of the body is dropped. A page area's own furniture is drawn once on every sheet that page area makes, which is the one thing not in one-to-one correspondence with the boxes on the paper.
Measured over the same 560 packages:
81 750 fields in the body of the expanded forms
81 750 placed, 151 323 draws with them, on 3 088 sheets
0 left over: every field and every draw of the body reaches the paper
12 elements of the page areas' own furniture are drawn on no sheet,
because no sheet of the form is that page area
What checks it ¶
pdf.js emits no coordinates for a child of a flow layout — it writes them into a flexbox column and lets the browser stack them — so for exactly the layouts this computes, its output says where the CONTAINER is and nothing about where the second child went. It does emit the accumulation itself, as a number: a subform's style.height is Math.max(extra.height + marginV, this.h || 0) (template.js:5222).
It also emits one div per SHEET, with every element inside the one it belongs to — which is a thing it says outright, so the page a box landed on can be compared even where its coordinates cannot:
7 764 container heights this package computes, all agreeing with pdf.js's
to within 1/100 pt
176 boxes placed where pdf.js also emits a place: all agreeing
152 446 more that pdf.js placed by flexbox, of which 149 488 came out at
the container's own origin, 2 958 below or to the right of it, and
NONE above or to the left, which would be outside the container
431 forms where every element of the body was placed, so that the two
are laying out the same thing
428 of those agreeing with pdf.js on the NUMBER of sheets
117 378 boxes paired on them, every one on the same sheet as pdf.js put it,
and none on another
Where a box goes ACROSS a line ¶
pdf.js says nothing about that either — an lr-tb container's children go in a flexbox div of class xfaLr and a table row's cells in one of class xfaRow, and the browser places them — so it was unjudged in both directions until pdfium was asked. pdfium is a renderer rather than a DOM emitter and computes the answer outright (CalculateRowChildPosition, cxfa_contentlayoutprocessor.cpp:2028-2160), though nothing in public/ returns it and its own suite asserts no coordinate anywhere; the dump comes from a probe added to its embedder tests. It lays out 559 of the 560 forms, against pdf.js's 483.
959 leaves under a container that wraps its children onto lines, all
agreeing with pdfium on x
19 516 leaves under a table row, 19 448 agreeing on x
167 632 leaves under neither — the control — 160 022 agreeing
64 of the 68 row disagreements are on ca-cra__rc1-fill-11-25e, where 552 of 804 CONTROL leaves disagree too, so x on that form is not comparable at all. The other four are on fr-cerfa__cerfa_12818, whose control agrees entirely: the row puts the cell where pdfium does, and pdfium then places the positioned children two levels inside it 3.6 pt further right than their written x. That one is open.
pdfium runs the form's scripts and measures text with real fonts, neither of which this does, so y and the sheet a box landed on are informative rather than a verdict there. X survives: a positioned box's x is its written attribute, and a line member's is arithmetic over written widths.
A box is compared as the same box on both sides. Four draws of us-ssa__ss-5-ar-inst are written w="-0.106in", and a negative extent is not a box reaching left of where it was put: pdfium normalises a widget's rectangle before using it (CFX_RectF::Normalize, cxfa_fffield.cpp:293) and so does this, where pdf.js cannot because CSS ignores a negative width. Until both sides were normalised the check called those four boxes defects.
A box is paired by its whole chain of names and not by its own. Six subforms of us-irs__fw9 are called Bullet1, in three lists on three sheets; once each of them has a height they are six entries of one list, and nothing makes the two lists line up. Pairing on the chain turns a mispairing into an unpaired box rather than into a disagreement.
Text measurement was the wall three counts in a row failed to see. A count over the templates said 446 fields — half of one per cent — need their text measured; only 8 466 draws and 598 fields of the corpus's 234 000 leaves lack a height. But a stack is a chain, and one unmeasurable height leaves every sibling below it with nowhere to begin: those leaves held up 44 246 fields, more than half the corpus. Measuring them places 25 585 more.
A length may be written as a CALCULATION, with a leading "=", and the corpus writes one shape of it: h="=0mm", on 955 draws of 101 forms, holding up 16 936 fields. pdfium's CXFA_Measurement strips the "=" deliberately and parses the rest leniently (cxfa_measurement.cpp, SetString), so it is nought; pdf.js reaches the same answer only because its pattern is unanchored and finds the "0mm" inside the string (utils.js:83-87). An expression is NOT evaluated: ="Foo.h * 2" is nought under the same rule, which is the reference's answer rather than a shortfall standing in for one. See ParseMeasure. It places 16 522 more fields, and reports 189 that were placed before: their containers now measure, and measure taller than a whole content area.
Two things inside the measurement turned out to decide it, and neither is about fonts. The last no-break space of a run becomes an ORDINARY one (parser.js:61-63), which is where "Form\u00a0AB428" comes apart at the end of a column; without it 31 container heights disagreed. And a leaf whose text gives no height is not left unmeasured: computeBbox fills it in from minH (html_utils.js:290-324) and the stack above adds that.
Values and FieldNames remain what they were — what the data says, and what the template says, each on its own — for a caller that wants one side without the other. Values names a repeated sibling the way a binding does, "Row[1]", because a form's table is repeated siblings and naming them alike was losing 10 125 of the corpus's 71 346 values.
Index ¶
- func FieldNames(template *Node) []string
- func Value(data *Node, path string) (string, bool)
- func Values(data *Node) map[string]string
- type Binding
- type Box
- type Face
- type FaceMetrics
- type FontSet
- type Form
- type FormNode
- type Layout
- type Measure
- type Node
- type Page
- type Rect
- type Result
- type Typeface
- type Unplaced
- type Unsupported
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func FieldNames ¶ added in v0.2.0
FieldNames are the paths the TEMPLATE gives its fields, in the order it places them.
The path is the template's, and it is NOT necessarily the path the data uses. XFA binds a field to its data explicitly, through <bind> elements — one real form here carries 222 of them — and a form may name its root subform one thing while its data calls it another. Joining the two by path is right for a form that binds implicitly and wrong for one that does not, which is why this does not try: Bind does the joining properly, and hands back each field with the value actually bound to it.
Fields are looked for inside page areas as well as inside subforms. That is not a nicety: of the 212 fields in one real form, every one sits under a pageArea, and a walk that followed only subforms found none of them.
func Value ¶ added in v0.2.0
Value is one field's value, by its whole name. The second and later of repeated siblings are addressed by index — "form1.Row[1].Cell".
func Values ¶ added in v0.2.0
Values are what a form has been filled with, by the whole name of each field: "form1.Page1.Line101".
The names are joined with dots, as XFA's own scripting language names them, and the root of the data tree is included because a package may hold more than one form.
Repeated siblings are numbered the way Bind numbers them and the way a SOM expression addresses them: the first of a name plain, the rest "Row[1]", "Row[2]", counting from zero. Without the numbers they collide, and a table of six rows comes back as one — 10 125 of the 71 346 values the corpus carries, across 216 of its 560 forms, were lost that way before this counted them.
A field a person has not filled in has an empty value rather than no entry. The difference matters: "this field exists and is empty" and "there is no such field" are different answers, and a caller checking whether a form is complete needs the first.
Every value the data carries comes back. There is one entry per leaf and one per group that carries text of its own, and no two share a key.
Types ¶
type Binding ¶ added in v0.3.0
type Binding struct {
// Name is the field's own name, as the template writes it.
Name string
// Path is where the FORM puts it: dotted names from the root, with an
// index — "Row[2]" — on the second and later of repeated siblings. A
// nameless container contributes nothing to it.
Path string
// Kind is "field" or "exclGroup".
Kind string
// Node is the template element.
Node *Node
// Data is the data element it was bound to, or nil.
Data *Node
// DataPath is where that element sits in the DATA, which is a different
// tree and often a differently named one. Empty when nothing was bound.
DataPath string
// Value is what the data says, trimmed. Empty when nothing was bound.
Value string
// Bound says a data node was found. A false here with a non-empty form is
// the ordinary state of a blank document, not an error.
Bound bool
}
A Binding is one value-carrying container of a form — a field, or the exclusion group a set of radio buttons shares — joined to the data node it draws its value from.
Every such container appears, filled or not. Bound says which: a field the form places but the data never mentions has Bound false and an empty Value, and that is a different answer from a field bound to an empty string. A caller checking whether a form is complete needs the difference.
type Box ¶ added in v0.5.0
type Box struct {
// Node is the occurrence this box was placed for.
Node *FormNode
// Kind is "field" or "draw".
Kind string
// Path is [FormNode.Path], repeated here so a box can be reported on its
// own.
Path string
// Rect is where it goes, absolute on the page, with anchorType and rotate
// already resolved.
Rect
// Rotate is what the template says, in degrees clockwise: 0, 90, 180 or
// 270. Rect is the box the rotated element occupies; this says how the
// content inside it is turned.
Rotate int
// Value is what the data put in it, for a bound field. Empty otherwise.
Value string
// Hidden says the template asks for it not to be drawn: presence
// "hidden" or "inactive". pdf.js emits display:none for both
// (html_utils.js:133-141) and a flow layout gives them no room, so the
// element after one begins where it does. It is reported rather than left
// out, because a caller counting what is on a page needs to know that
// something is there and asked not to be seen.
Hidden bool
}
A Box is one element of the form, placed.
type Face ¶ added in v0.19.0
type Face interface {
// Advance is how far the pen moves for r, in thousandths of an em.
//
// Nought means the face has no advance for it, and
// [FaceMetrics.DefaultWidth] stands in — which is pdf.js's
// `glyph.width || fallbackWidth` (text.js:190), a test that cannot tell a
// missing glyph from one of zero width and does not need to.
Advance(r rune) float64
// Metrics are the face's vertical metrics and its fallback advance. It is
// read once per run of text, so it may be computed rather than stored.
Metrics() FaceMetrics
}
A Face is one concrete typeface at one weight and one posture: the whole of what a measurement asks of a font.
The unit is the font's, not the page's. pdf.js measures with a PDF font, whose advances are in PDF glyph space — thousandths of an em — and scales them by the size divided by a thousand (text.js:181, 192). A face reading a TrueType file gets there by dividing the glyph's advance by the head table's units per em and multiplying by a thousand.
type FaceMetrics ¶ added in v0.19.0
type FaceMetrics struct {
// LineHeight is how tall a line is, in ems. Nought means the face gives
// none and 1.2 stands in (text.js:174).
LineHeight float64
// LineGap is the space between lines, in ems.
LineGap float64
// HasLineGap says the face gives one. A gap of NOUGHT and a gap the face
// does not give are different: pdf.js tests `lineGap === undefined` and
// falls back to 0.2 only for the second (text.js:176), so a face that
// really has no gap must say so with HasLineGap and a LineGap of nought.
HasLineGap bool
// DefaultWidth is what stands in for a rune the face gives no advance
// for, in thousandths of an em. Nought means the face's own space stands
// in instead: `pdfFont.defaultWidth || pdfFont.charsToGlyphs(" ")[0].width`
// (text.js:179).
DefaultWidth float64
}
FaceMetrics is what a face says about itself beyond its advances.
The two vertical numbers are in EMS, and pdf.js says where a real font's come from: the line gap is hhea's, divided by the head table's units per em, and the line height is the ascent less the descent plus that gap, each of them scaled the same way (fonts.js:3005-3017). A face over an AFM metric file, which has no hhea, leaves both unwritten and takes the constants below.
type FontSet ¶ added in v0.19.0
type FontSet struct {
// contains filtered or unexported fields
}
A FontSet is the fonts a form may be measured with, in the order they were added.
The order is not decoration. find's prefix passes push every family whose name starts with what was asked for and then take the FIRST of them (fonts.js:143-149), so which font a template naming "Helvetica" gets is decided by insertion order where a set holds two that would answer. pdf.js iterates a Map, which is insertion ordered; this keeps the order explicitly because Go's map does not have one.
The zero value is not usable; see NewFontSet. A nil *FontSet is, and is what Place measures with: it finds nothing, so every leaf falls to the regime described at [defaultSize].
func NewFontSet ¶ added in v0.19.0
func NewFontSet() *FontSet
NewFontSet is an empty set, ready to be filled with FontSet.Add.
func (*FontSet) Add ¶ added in v0.19.0
Add registers a family under the name a template would call it by.
The first family added becomes the set's default, and a family whose regular face the caller did not give takes one from its other three. Adding a family twice replaces it. Add before measuring: it clears find's cache, but a Layout already computed is not recomputed.
type Form ¶ added in v0.5.0
type Form struct {
// Root is the <template> element's node. Under it sit the form's
// outermost subform and, inside that, the page set.
Root *FormNode
// Unsupported are the <bind> expressions that were not followed, as
// [Bind] reports them.
Unsupported []Unsupported
// Truncated says expansion stopped early. See [Result.Truncated].
Truncated bool
}
A Form is a template and the data that fills it, joined and expanded: the tree layout runs over.
func Expand ¶ added in v0.5.0
Expand joins a template to its data and returns the form tree, with every container repeated once per record that fills it.
Why this exists beside [Bind] ¶
Bind answers "what is in this form", and a flat list of fields answers it well. Layout asks a different question — where does each one go — and the answer is in the shape: a field's place is its own x and y added to those of every container above it, and a container repeated eleven times is in eleven different places. A list of bindings has nowhere to put the eleven.
This follows pdf.js, whose binder does the same thing and for the same reason: Binder.bind returns a clone of the template (bind.js:61) into which _bindOccurrences (bind.js:385-417) inserts one copy of the container per matched data node. Layout there never sees the template either.
Where it goes further than [Bind] ¶
It descends into an exclGroup. A group of radio buttons carries one value between them, so binding stops at the group; but each button is drawn in its own place inside the group's box, so layout needs them. They appear with Bound false, which is what they are: the value belongs to the group.
It carries <draw> — the static text, lines and boxes a form is mostly made of. A draw holds no data, so Bind has nothing to say about it and does not report it. It is half of what is on the paper.
Where it stops, as [Bind] does ¶
It does not clone a container to satisfy occur's initial count when the data is empty, which pdf.js's _createOccurrences (bind.js:421-462) does. Those clones carry no data; they are blank rows on a blank form.
type FormNode ¶ added in v0.5.0
type FormNode struct {
// Template is the element this was made from. Everything the template
// says that this struct does not carry — x, y, w, h, layout, border,
// caption — is read from there.
Template *Node
// Kind is the element's name: "subform", "field", "draw", "pageArea".
Kind string
// Name is what the template calls it, which may be empty.
Name string
// Path is where this occurrence sits in the form: dotted names from the
// root, with an index — "Row[2]" — on the second and later of repeated
// siblings. It is the same path [Binding] carries, for the containers
// that carry one.
Path string
// Kids are the containers inside it, in the order the form places them.
Kids []*FormNode
// Data is the data element this occurrence was bound to, or nil.
Data *Node
// Value is what that element says. Empty when nothing was bound.
Value string
// Bound says a data node was found for this occurrence.
Bound bool
}
A FormNode is one container of the expanded form: one subform, one field, one draw, as the document actually holds it rather than as the template writes it.
The difference is repetition. A template writes a table row once and says, in its <occur>, that there may be many; the document has one row per record. Expand does that expansion, so a FormNode tree has one node per occurrence and a template tree has one per element. Two nodes cloned from the same template element share their Template and differ in their Path and their value.
type Layout ¶ added in v0.5.0
type Layout struct {
// Pages is the sheets the form came to, in order.
Pages []Page
// Unplaced is everything it did not place, with a reason each.
Unplaced []Unplaced
}
A Layout is a form placed on paper.
func Place ¶ added in v0.5.0
Place lays a form out on paper.
What it does ¶
Under a POSITIONED layout every container has an x and a y that mean what they say, so a box's place on the page is its own x and y added to those of every container above it, down from the content area's origin, with anchorType and rotate resolved on the way (pdf.js layout.js:202-259). That is what pdf.js computes too — under "position" it emits style.left and style.top from the node's own x and y (html_utils.js:112-123).
Under a FLOW layout the coordinates are thrown away (html_utils.js:347-350) and the children are stacked instead. This follows five of the six:
- tb and table stack downwards. The first child sits at the container's own origin, and each one after it begins where the one above it ends (layout.js:144-158, extra.height += h). A container's own height is the taller of what it holds and what the template writes for it (template.js:5221-5223), so the heights are arrived at from the bottom of the tree upwards, out of the literal w and h of the fields and draws at the leaves.
- row cuts its cells from the columnWidths of the table above it (html_utils.js:81-106), a cell spanning colSpan of them, and stretches every cell to the height of the tallest (layout.js:135-143).
- lr-tb and rl-tb fill a line across the page and begin another when what comes next does not fit on it (layout.js:107-129, 279-338). lr-tb runs from the container's left edge and rl-tb from its right, which is the only difference between them (xfa_layer_builder.css:263-273). See [placer.pack].
A container's margin is its own, outside what it holds: it moves the children in by the left and top insets and adds all four to the height the container reports upwards (template.js:5217-5223, layout.js:162-171). A field's and a draw's margin is not — both turn it into padding (template.js:1949-1952, 2917-2920), inside a box the template already sized.
Where it runs off the bottom, it turns the page ¶
A form is longer than a sheet, and the page it goes onto next is not simply "another of the same". Which page area comes next is decided by a state machine — the page set's relation, each page area's <occur>, the parity of the page number, and the explicit <breakBefore> and <breakAfter> the template writes — and [pager] follows pdf.js's (template.js:4064-4236, 5418-5657) rather than assuming. Every container of the chain being flowed begins again at the top of the new content area, which is what pdf.js arrives at by re-entering the whole tree with a new space.
A container that may be split (Subform[$isSplittable], template.js:4940-4975) has its children distributed across the sheets: what it managed to place stays where it is and the rest begins again at the top of the next content area, which is the same thing pdf.js arrives at by resuming its generator. One that may not — a positioned layout, a row, anything kept intact, anything inside an <area>, and anything that is not first on the line of a container that wraps — moves whole, and is reported unplaced where it fits no page at all. A container that WRAPS is split at a line boundary and never inside one.
A POSITIONED container is the one exception, and only where its author asked for it. `<keep intact="none"/>` on one is a permission pdfium reads and pdf.js's clause ORDER cannot reach, and a container carrying it is laid out whole and then CUT: its children keep the y the template wrote for them, less however much of the container is on the sheets before. See [placer.cuttable], which is a different question from [placer.splittable] and answered by a different mechanism.
What it deliberately does not do, and reports instead ¶
- rl-row, which fills a ROW from the right. That needs the row's own width, which is the sum of the columnWidths above it rather than anything measured, and no form of the corpus writes one — so nothing would say whether it were right. Only its first child is placed, at the container's origin.
- Refusing a child of a line for want of vertical room. checkDimensions would move one too tall for what is left onto the next line (layout.js:284-290); the room left is not a quantity the measurement carries. See [placer.pack].
- A container anchored along its middle or its right edge that writes no width. The height such a container is measured against is computed — see [placer.place] — but the width is a different quantity and no container of the corpus asks for it.
- Borders. A child's origin is the inside of its parent's margin, not the inside of its parent's border.
Each of those leaves its elements in Layout.Unplaced with the reason written out. Nothing is dropped: every field and draw of the form's body comes back in one list or the other.
A nil form, or one with no outermost subform, lays out nothing.
It measures text with NO fonts, which is a regime of the reference's own and not a stand-in for one: see the note at the top of text.go, and PlaceWithFonts for the other.
func PlaceWithFonts ¶ added in v0.19.0
PlaceWithFonts is Place, measuring the form's text with the given fonts.
A template names typefaces and carries none. The document it travelled in carries them, and so does the machine; this package reads neither, which is why the set is an argument. See FontSet for how a caller builds one and [FontSet.find] for how a template's name reaches a family of it.
What it changes is a leaf whose height the template does not write: instead of one em per character and 1.2 ems per line at ten points, its words are measured at the size the template asks for with the advances of the face it asks for. That decides how many LINES the leaf comes to, and a leaf one line taller than it should be pushes every one of its siblings below it down by a line — so the fonts reach the sheet a field lands on, and not only its own box.
A nil set is Place.
type Measure ¶
type Measure float64
A Measure is a length, in points.
XFA writes lengths as a number and a unit — "62mm", "9pt", "0.25in" — and mixes them freely within one form: the corpus's simplest template gives its page in points, its content area's origin in inches and its fields' widths in millimetres, all in the same subform.
func ParseMeasure ¶
ParseMeasure reads a length. A bare number is points, which is what the specification says and what the corpus writes for a page's height.
A length may also be written as a CALCULATION, with a leading "=", and that is read by [calculated] rather than here.
type Node ¶
type Node struct {
// Kind is the element's name, without its namespace: "subform", "field",
// "draw", "pageArea".
Kind string
// Attr are its attributes, by name without namespace.
Attr map[string]string
// Text is the character data directly inside it, with surrounding space
// trimmed. A <text> element's caption lives here.
//
// Inside a rich text — the XHTML of an <exData contentType="text/html"> —
// it is empty, and the character data is in "#text" children of [Node.Kids]
// instead. Rich text is the one place where WHERE the text sits among the
// elements decides how it reads: half of the corpus's <p> elements hold
// text both before and after a <span>, and a paragraph's height is how
// many lines its words come to in the order they are written. See
// [parseXML].
Text string
// Kids are the elements inside it, in order. Order is not decoration: a
// subform laid out top-to-bottom places its children in it.
Kids []*Node
}
A Node is one element of a template, with the children it contains.
The tree is kept whole rather than reduced to the elements this package understands today. XFA has some hundreds of element types and a form uses a few dozen; throwing the rest away at parse time would mean re-parsing to add each one, and would lose the ordering that layout depends on.
func ParseDatasets ¶ added in v0.2.0
ParseDatasets reads the datasets part of an XFA package — what has been filled in — and returns the data under it.
The tree mirrors the template's names. A form whose root subform is called form1 and whose field is called Number1 keeps its value at <data><form1><Number1>1.00</Number1></form1></data>, which is why the values can be found without laying the form out.
What comes back is the <data> element, not the <datasets> wrapper: the wrapper carries the package's plumbing, and every path into the form starts below it.
func ParseTemplate ¶
ParseTemplate reads the template part of an XFA package.
It is lenient in one direction and strict in the other. Namespaces are dropped, because a template writes the same element under xfa-template and under no namespace at all depending on who produced it, and the difference carries nothing. Processing instructions and comments are skipped: a template written by Adobe's designer carries hundreds of them recording what the designer did, which is not part of the form.
A document whose XML does not close is refused. Half a template is not a form, and laying one out would put half a form on paper without saying so.
func (*Node) Child ¶
Child is the first child of that kind, or nil. Most of the template is singular — a field has one ui, one border, one caption — so looking one up by name is how it is read.
func (*Node) Measure ¶ added in v0.5.0
Measure reads one of a node's attributes as a length.
It answers three ways, not two, and the third is the point of it. ok is false when the attribute is not there at all; err is non-nil when it is there and is not a length. XFA's "unspecified" and its "zero" are different things — a field with no width has no width until its text is measured, which is not the same as a field nought wide — and a layout that collapses them draws the second when it meant to report the first.
pdf.js keeps the distinction as the empty string and then loses it in measureToString (html_utils.js:35-41), which turns any string, meant or mistaken, into "0px".
type Page ¶ added in v0.5.0
type Page struct {
// Width and Height are the sheet, with a landscape medium already
// swapped. Both are zero when the page area writes no medium, which
// pdf.js also declines to guess at (template.js:4108).
Width, Height Measure
// Areas are the content areas the page offers the body, in order: the
// boxes the form's body is laid out in, as against the furniture the page
// area draws around them. Nearly every page area in the wild holds one.
Areas []Rect
// Boxes are the elements placed on it, in the order the form places them.
// The page area's own furniture comes first and is drawn again on every
// sheet that page area makes; the body follows.
Boxes []Box
}
A Page is one sheet, with what this package could put on it.
type Rect ¶ added in v0.5.0
type Rect struct {
X, Y, W, H Measure
}
A Rect is a box on the page, in points.
It is measured in XFA's own frame — from the TOP-LEFT corner, with Y increasing downwards — and not in PDF's, which counts up from the bottom left. The flip belongs to whatever draws the page, because it needs the page height to do it and because leaving it here would make every coordinate in this package disagree with the template it was read from.
type Result ¶ added in v0.3.0
type Result struct {
// Fields are the form's value-carrying containers, in the order the form
// places them.
Fields []Binding
// Unsupported are the <bind> expressions that were not followed. Each one
// leaves its field unbound.
Unsupported []Unsupported
// Truncated says binding stopped early because the form produced more
// containers than this package will hold. It is a defence against a file
// built to make a reader work forever, not something a real form does.
Truncated bool
}
A Result is what a form holds once its template and its data are joined.
func Bind ¶ added in v0.3.0
Bind joins a template to the datasets that fill it and returns each of the form's fields with the value bound to it.
How a field finds its value ¶
XFA does not put the value under the field's own name. The template names a field for the layout and the data names it for the record, and the two need not agree — of fourteen dynamic forms measured here, two have the same count of fields and values and not one path in common. What joins them is either an explicit <bind ref="..."> or, far more often, a walk in which each container consumes the next unconsumed data node of its own name. Both are implemented, following Mozilla's pdf.js, which is the only complete free implementation of this.
The <bind> element's match attribute is honoured in all four forms: once (the default), global, dataRef and none.
Which SOM expressions are read ¶
A ref is a SOM expression. These forms are read:
Name.Sub.Leaf a path from the current data node, walking up to the
parent and its parents if the first name is not found
Name[2] the third sibling of that name
Name[*] every sibling of that name
$data.Name rooted at <data>
$record.Name rooted at the first record under <data>
$.Name rooted at the current data node
!.data.Name rooted at <datasets>
Parent..Leaf Leaf anywhere below Parent
Parent.#field by element name rather than by name attribute
Name.attr an attribute reads like a child
These are NOT read, and each one is reported in Result.Unsupported rather than guessed at:
Name.[expr] a FormCalc subexpression Name.(expr) a JavaScript predicate Name[-1] a negative index $template, $form, $layout, $host, $event, $connectionSet, $dataWindow, $xfa references outside the data, which name no value
Measured over 560 real templates carrying 26 573 <bind> elements, none of the unsupported forms occurs: every ref is a plain path, a $record path, a $ path, or one of those with [*].
Where this deliberately differs from pdf.js ¶
It does not create data nodes. pdf.js, meeting a ref that matches nothing, invents the nodes the expression describes so that a person typing into the form has somewhere to put the answer. This reads a document rather than editing one, so the field is simply reported unbound — which is the same answer, since an invented node is empty.
It does not repeat a container to satisfy occur's initial count. pdf.js, merging into empty data, clones a subform until there are as many as the template asks for. Those clones carry no data; they change the layout, not the values, and this returns values.
It descends into pageSet and pageArea. pdf.js does not bind their contents at all, because it lays them out separately — but of one real form's 212 fields, every single one sits under a pageArea, and dropping them silently would lose the whole form.
It stops a global search that has begun to repeat. pdf.js's global lookup does not skip nodes it has already taken, so a container with no upper occur bound and match="global" asks for the same node forever; this stops at the repeat.
A nil template gives an empty result; a nil data tree binds nothing, which is what a document nobody has filled in should say.
func (*Result) Values ¶ added in v0.3.0
Values are the bound fields by their form path. Fields that were not bound are left out, so a caller filling a document gets what the data actually says and nothing invented.
A path repeated by two nameless branches keeps the first. Use Result.Fields where that matters; it keeps every one, in order.
type Typeface ¶ added in v0.19.0
type Typeface struct {
// Regular is the upright face of normal weight. Where a family has none,
// [FontSet.Add] fills it in from whichever of the other three the caller
// gave — `pdfFont.regular ||= pdfFont.italic || pdfFont.bold ||
// pdfFont.bolditalic` (fonts.js:32-34) — because everything downstream
// asks for it by name.
Regular Face
// Bold, Italic and BoldItalic are the other three, each of them optional.
Bold, Italic, BoldItalic Face
// Name is the regular face's OWN name, as against the family it was filed
// under: the PostScript name of the file, "ArialMT" for the family
// "Arial". [FontSet.find]'s third and fifth passes match against it
// (fonts.js:104-116, 130-141), which is how a template naming
// "TimesNewRomanPSMT" reaches a family called "Times New Roman". Empty
// where the caller has no such name, and then those passes simply do not
// match.
Name string
}
A Typeface is one family's four faces.
pdf.js builds exactly this shape, keyed by CSS font family, and fills the four properties by reading each PDF font's weight and italic angle (fonts.js:45-73). A family missing a face is not a defect: [selectFace] answers nil for one and the measurement falls back to the default font, the way FontInfo does (text.js:49-51).
type Unplaced ¶ added in v0.5.0
type Unplaced struct {
// Node is the occurrence that was not placed.
Node *FormNode
// Kind is "field" or "draw".
Kind string
// Path is [FormNode.Path].
Path string
// Why says what stopped it, in words fit to show somebody.
Why string
}
An Unplaced is one element of the form this package did not place, and why.
Every field and draw of the form's BODY is in exactly one of Page.Boxes and Layout.Unplaced. That is the point of the type: a layout that reaches four fifths of a form is useful, and one that silently drops the other fifth is not, because nothing downstream can tell a form that was laid out from a form that was half laid out.
A page area's own furniture is the one exception, and it is not a leak: a letterhead belongs to the sheet rather than to the form, so it is placed once on every sheet that page area makes, and appears in Layout.Unplaced only where its page area is never used at all.
type Unsupported ¶ added in v0.3.0
type Unsupported struct {
// Field is the form path of the container carrying the <bind>.
Field string
// Ref is the expression as written.
Ref string
// Why names the construct, in words fit to show somebody.
Why string
}
An Unsupported records a <bind> whose expression this package met and did not follow. It is reported rather than swallowed: a binder that quietly differs from Adobe on one construct is worse than one that says where it stops, because the caller cannot tell a field nobody filled in from a field whose value was not looked for.