leptris 1.9.55 → 1.9.56

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 86d9ff39e800fbff8e20c7cfd3df58e4e576ab99611120ba99375a5c7a2aaa68
4
- data.tar.gz: 44b4d819e7203675852fccfc7e2f1c357a04b3c6be7e40055aad6859300c0c14
3
+ metadata.gz: 6e63d8af535ae0bfc72372d3ed8add688494d9a05b40175b038c7d83c4cdff15
4
+ data.tar.gz: 110517ea3d517fb76f2f1b6adb623f6c50fbe731fd41ec821efb21e54de458d9
5
5
  SHA512:
6
- metadata.gz: c7327e48b5f9a6da677219f99d706786d4cc9fe41cb52831a2ac00ec517f25fe1023f2ddab683d4dfeca914ac32431a199a7d646cebf8f4e731b39fb6732f827
7
- data.tar.gz: 8865e49b6c239db0b2cbdf13a8255965799eed7d90b317d5426d8edc809fb4f77c1e7a05e4ce1ed5e68db51e8c8ec3ba65a90f7098a77988ff28fde367e2b5c5
6
+ metadata.gz: 14054ad4ad00851c244ffc8c9493df25c6a300bfd96f4eb9b827001e75aa5e35e06e3dcf310efc08c4fe61bc3f4030121fa5d3127cc9ce2213a367546dd2ca46
7
+ data.tar.gz: a301bc6f767c7b8c67ea4c06c15b99cbe2fbec50d848eefb4c743d03aa0e1fa64d2eb49083a046c7859c6506f4ad5c7cde5dcc65779161ceff35821b29e45708
data/CHANGELOG.md CHANGED
@@ -5,6 +5,46 @@ All notable changes to Leptris will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.9.56] - 2026-09-03
9
+
10
+ ### Added
11
+
12
+ - **Lockstep with libleptris 1.9.66** (1.9.51 → 1.9.66 — sixteen
13
+ releases, the XPath 3.1 value-level + XQuery wave). Four new C
14
+ symbols attached (audit 259/259):
15
+ - **`Leptris::XML::XQuery`** (1.9.64-1.9.66): compile-once /
16
+ evaluate-many XQuery 1.0 core — prolog (`declare variable` /
17
+ `namespace` / `function local:*`), nested `for` with `at`
18
+ positions, `let`, `where`, stable multi-key `order by`, direct
19
+ and computed constructors with attribute value templates, and
20
+ plain XPath expression bodies. Results reuse the XPath result
21
+ handle; constructor results arrive as readable strings, FLWOR
22
+ sequences through the sequence channel. Twelve specs.
23
+ - **`Leptris::XML.buffer_has_nonstandard_entity?`** (1.9.62,
24
+ closes leptris-ruby#124 / upstream #745): the one-pass C
25
+ entity pre-scan — measured 7.5 µs vs 24 µs for the Ruby regex
26
+ it replaces on a 13 KB document (+18% vs +59% over parse).
27
+ - **XPath 3.1 value-level surface** (1.9.51-1.9.63), all
28
+ resolving standalone from `#xpath` and specced: map/array
29
+ constructors and accessors (`?key`, `map:get`, `array:get`,
30
+ sizes), `parse-json`, `json-to-xml` / `xml-to-json`,
31
+ `serialize(…, map { 'method': 'json' })`, postfix `?lookup`,
32
+ inline function items and dynamic calls, `function-lookup`,
33
+ `fold-left`, `for-each`, named function references.
34
+ - 1.9.61 (upstream #739/#744): `xs:boolean('0')` casts to
35
+ false, `xs:` string lexicals validated.
36
+ - **README**: XQuery section, value-level examples in the
37
+ standalone-subset block, the migration list drops "No XQuery".
38
+
39
+ ### Fixed
40
+
41
+ - **XQuery v1 grammar gaps found on first contact, filed as
42
+ leptris/leptris#790** (pending specs against it): constructor as
43
+ the FLWOR return clause fails to parse; `where`/`at` clauses
44
+ inside a function-argument FLWOR fail to parse (bare for-return
45
+ works); `'nope' cast as xs:integer` NaNs instead of erroring, so
46
+ `try/catch` never reaches its catch arm.
47
+
8
48
  ## [1.9.55] - 2026-09-02
9
49
 
10
50
  ### Changed
data/README.adoc CHANGED
@@ -9,9 +9,9 @@ A Nokogiri-compatible Ruby binding for
9
9
  https://github.com/leptris/leptris[libleptris], a pure-C99 XML 1.0 parser
10
10
  with full https://www.w3.org/TR/1999/REC-xpath-19991116/[XPath 1.0],
11
11
  XML Namespaces 1.0, SAX, and C14N (1.0 / 1.1 / Exclusive), plus
12
- XSLT 1.0–3.0 transforms (the XPath 3.1 core rides inside them) and a
13
- growing XPath 2/3.1 expression subset available standalone from
14
- `#xpath` itself.
12
+ XSLT 1.0–3.0 transforms, an XQuery 1.0 core face, and a growing
13
+ XPath 2/3.1 expression subset available standalone from `#xpath`
14
+ itself.
15
15
 
16
16
  The C DOM is the single source of truth — Ruby objects are thin FFI
17
17
  handles over the C pointers, so every Ruby method maps to one FFI call.
@@ -242,6 +242,11 @@ doc.xpath("'v' || count(//book)") # 3.1 concat
242
242
  doc.xpath("'42' castable as xs:integer") # 2.0 type ops
243
243
  doc.xpath("1.9 cast as xs:integer") # => 1.0 (truncates)
244
244
  doc.xpath("//title instance of node()+") # 2.0 sequence types
245
+ doc.xpath("map { 'b': 'beta' }?b") # 3.1 maps
246
+ doc.xpath("[10, 20, 30]?2") # 3.1 arrays
247
+ doc.xpath(%q{serialize(parse-json('{"b":"beta"}'), map { 'method': 'json' })})
248
+ doc.xpath("function($x) { $x + 1 }(41)") # 3.1 function items
249
+ doc.xpath("fold-left(1 to 4, 0, function($a, $b) { $a + $b })")
245
250
  ----
246
251
 
247
252
  Two caveats: `for … return` sequences come back as opaque result
@@ -382,6 +387,39 @@ dispositions drop unmatched subtrees in the built-in initial
382
387
  descent (https://github.com/leptris/leptris/issues/705[#705]) —
383
388
  the other four dispositions are spec-correct. XQuery has no
384
389
  entry point yet.
390
+ == XQuery
391
+
392
+ XQuery 1.0 core through `Leptris::XML::XQuery` (compile once,
393
+ evaluate many):
394
+
395
+ [source,ruby]
396
+ ----
397
+ query = Leptris::XML::XQuery.parse(<<~XQ)
398
+ declare variable $min := 3;
399
+ for $i in //item
400
+ where number($i/@qty) > $min
401
+ order by $i/@qty descending
402
+ return <big>{$i/name/text()}</big>
403
+ XQ
404
+ query.eval(doc) # plain expressions keep their XPath result type;
405
+ # FLWOR results arrive as the sequence channel —
406
+ # read them through an aggregate until the engine
407
+ # materializes readable sequence items
408
+ ----
409
+
410
+ Supported: the prolog (`declare variable` / `declare namespace` /
411
+ `declare function local:*`), nested `for` with `at` positions,
412
+ `let`, `where`, stable multi-key `order by`, direct and computed
413
+ constructors with attribute value templates, and plain XPath
414
+ expression bodies. Known grammar gaps are
415
+ https://github.com/leptris/leptris/issues/790[tracked upstream].
416
+
417
+ `Leptris::XML.buffer_has_nonstandard_entity?(string)` is a
418
+ one-pass C pre-scan (for adapter layers): true when the buffer
419
+ contains a named entity outside the five predefined ones (or
420
+ numeric) — ~3x faster than the equivalent Ruby regex and no
421
+ false positives on bare `&`.
422
+
385
423
  `Document#save(path, **opts)` :: serialize to a file.
386
424
  `Document#canonicalize(version, inclusive_ns, with_comments:, exclusive:, mode:)` (alias `#c14n`) :: canonical XML.
387
425
  `Element#canonicalize(...)` :: subtree canonicalization.
@@ -548,8 +586,8 @@ Notable differences:
548
586
  past Document disposal will see the error; silence-replace-UAF patterns
549
587
  from Nokogiri do not apply.
550
588
  * No `Nokogiri::HTML` or `Nokogiri::CSS` parser. Leptris is XML-only.
551
- * No XQuery, no RelaxNG / DTD validation, no schema caching
552
- (XSLT 1.0–3.0 is supported — see above).
589
+ * No RelaxNG / DTD validation, no schema caching (XSLT 1.0–3.0
590
+ and an XQuery 1.0 core are supported — see above).
553
591
  * No built-in JRuby / TruffleRuby support — only CRuby via `ffi`.
554
592
 
555
593
  == Performance
data/Rakefile CHANGED
@@ -8,7 +8,7 @@ RSpec::Core::RakeTask.new(:spec)
8
8
  # Pin for `rake compile` and the platform-gem builds. Keep in lockstep
9
9
  # with .github/workflows/build.yml (which calls `rake compile`) and the
10
10
  # CHANGELOG when libleptris releases.
11
- LIBLEPTRIS_VERSION = "1.9.50"
11
+ LIBLEPTRIS_VERSION = "1.9.66"
12
12
 
13
13
  CMAKE_FLAGS = %w[
14
14
  -DCMAKE_BUILD_TYPE=Release
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Leptris
4
- VERSION = "1.9.55"
4
+ VERSION = "1.9.56"
5
5
  end
@@ -43,6 +43,7 @@ module Leptris
43
43
  typedef :pointer, :leptris_xpath_ns_set
44
44
  typedef :pointer, :leptris_xpath_compiled
45
45
  typedef :pointer, :leptris_xslt
46
+ typedef :pointer, :leptris_xquery
46
47
  typedef :pointer, :leptris_sax_recorder
47
48
  typedef :pointer, :leptris_pull_parser
48
49
  typedef :pointer, :leptris_iterparse
@@ -671,6 +672,25 @@ module Leptris
671
672
  attach_function :leptris_document_save_file,
672
673
  [:leptris_document, :string, :pointer], :leptris_status
673
674
  # XSLT 1.0 engine (libleptris 1.9.1): compile once, apply many.
675
+ # XQuery 1.0 core (libleptris 1.9.64-1.9.66): orchestration
676
+ # over the XPath engine — prolog (declare variable/namespace/
677
+ # function local:*), FLWOR, computed and direct constructors.
678
+ # Results reuse the XPath result handle (free with
679
+ # leptris_xpath_result_free); context_node NULL = document.
680
+ attach_function :leptris_xquery_parse,
681
+ [:string, :size_t], :leptris_xquery
682
+ attach_function :leptris_xquery_eval,
683
+ [:leptris_xquery, :leptris_document, :leptris_element],
684
+ :leptris_xpath_result
685
+ attach_function :leptris_xquery_free, [:leptris_xquery], :void
686
+
687
+ # One-pass entity pre-scan (libleptris 1.9.62, leptris#745):
688
+ # 1 when the buffer holds a named entity that is not one of
689
+ # the five predefined XML entities (nor numeric) — the moxml
690
+ # pre-scan at C speed instead of a Ruby regex.
691
+ attach_function :leptris_str_has_nonstandard_entity,
692
+ [:string, :size_t], :int
693
+
674
694
  attach_function :leptris_xslt_parse,
675
695
  [:string, :size_t], :leptris_xslt
676
696
  attach_function :leptris_xslt_parse_file,
@@ -0,0 +1,69 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "ffi"
4
+
5
+ # Compiled XQuery 1.0 query (libleptris 1.9.64+): parse once,
6
+ # evaluate many times against any document. The engine layer
7
+ # orchestrates the XPath engine — the prolog (declare variable /
8
+ # namespace / function local:*) binds into the evaluation context,
9
+ # FLWOR clauses run as a tuple stream, and results reuse the XPath
10
+ # result handle.
11
+ #
12
+ # query = Leptris::XML::XQuery.parse(<<~XQ)
13
+ # for $i in //item
14
+ # where $i/@qty > 3
15
+ # order by $i/@qty descending
16
+ # return <big>{$i/name/text()}</big>
17
+ # XQ
18
+ # query.eval(doc) # => Leptris::XML::NodeSet
19
+ #
20
+ class Leptris::XML::XQuery
21
+ class Handle < ::FFI::AutoPointer
22
+ def self.release(ptr)
23
+ Leptris::XML::FFI.leptris_xquery_free(ptr)
24
+ end
25
+ end
26
+
27
+ def self.parse(query)
28
+ query = query.to_s
29
+ raw = Leptris::XML::FFI.leptris_xquery_parse(query, query.bytesize)
30
+ if raw.null?
31
+ raise Leptris::XML::XPathError,
32
+ "query parse failed: #{Leptris::XML::FFI.leptris_last_error}"
33
+ end
34
+ new(query, Handle.new(raw))
35
+ end
36
+
37
+ attr_reader :query
38
+
39
+ def initialize(query, handle)
40
+ @query = query
41
+ @handle = handle
42
+ end
43
+
44
+ # Evaluates against +doc_or_element+. Plain-expression bodies keep
45
+ # their XPath result type (NodeSet / true/false / Float / String);
46
+ # FLWOR results arrive as the sequence channel — read them through
47
+ # an aggregate until the engine materializes readable sequence
48
+ # items (same caveat as the XPath for-return subset).
49
+ def eval(doc_or_element)
50
+ case doc_or_element
51
+ when Leptris::XML::Document
52
+ document = doc_or_element
53
+ context = nil
54
+ when Leptris::XML::Element
55
+ document = doc_or_element.document
56
+ context = doc_or_element.c_ptr
57
+ else
58
+ raise ArgumentError,
59
+ "expected a Leptris::XML::Document or Element, got #{doc_or_element.class}"
60
+ end
61
+ result_ptr = Leptris::XML::FFI.leptris_xquery_eval(
62
+ @handle, document.c_ptr, context)
63
+ if result_ptr.null?
64
+ raise Leptris::XML::XPathError,
65
+ Leptris::XML::FFI.leptris_last_error.to_s
66
+ end
67
+ Leptris::XML::Searchable.wrap_xpath_result(document, result_ptr)
68
+ end
69
+ end
data/lib/leptris/xml.rb CHANGED
@@ -23,6 +23,7 @@ module Leptris
23
23
  autoload :SAX, "leptris/xml/sax"
24
24
  autoload :XPath, "leptris/xml/xpath"
25
25
  autoload :XSLT, "leptris/xml/xslt"
26
+ autoload :XQuery, "leptris/xml/xquery"
26
27
  autoload :Pull, "leptris/xml/pull"
27
28
  autoload :Iterparse, "leptris/xml/iterparse"
28
29
 
@@ -33,6 +34,16 @@ module Leptris
33
34
  recover: recover)
34
35
  end
35
36
 
37
+ # Does +string+ contain a named entity reference that is not
38
+ # one of the five predefined XML entities (nor numeric)? One C
39
+ # pass (libleptris 1.9.62) — downstream adapters use it to skip
40
+ # whole-buffer rewrites when a document is already clean.
41
+ def self.buffer_has_nonstandard_entity?(string)
42
+ string = string.to_s
43
+ Leptris::XML::FFI.leptris_str_has_nonstandard_entity(
44
+ string, string.bytesize) != 0
45
+ end
46
+
36
47
  def self.parse_file(path)
37
48
  Document.parse_file(path)
38
49
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: leptris
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.55
4
+ version: 1.9.56
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-09-02 00:00:00.000000000 Z
11
+ date: 2026-09-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi
@@ -105,6 +105,7 @@ files:
105
105
  - lib/leptris/xml/serialization.rb
106
106
  - lib/leptris/xml/text.rb
107
107
  - lib/leptris/xml/xpath.rb
108
+ - lib/leptris/xml/xquery.rb
108
109
  - lib/leptris/xml/xslt.rb
109
110
  homepage: https://github.com/leptris/leptris-ruby
110
111
  licenses: