Skip to content

Commit d3b3a44

Browse files
committed
Add Saxon JARs and a spike of what might be the minimum-needed code for a working transfom
0 parents  commit d3b3a44

12 files changed

+136
-0
lines changed

.gitignore

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
*.gem
2+
*.rbc
3+
.bundle
4+
.config
5+
.yardoc
6+
.DS_Store
7+
Gemfile.lock
8+
InstalledFiles
9+
_yardoc
10+
coverage
11+
doc/
12+
lib/bundler/man
13+
pkg
14+
rdoc
15+
spec/reports
16+
tmp

.rbenv-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
jruby-1.7.1

Gemfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source 'https://rubygems.org'
2+
3+
# Specify your gem's dependencies in saxon-xslt.gemspec
4+
gemspec

LICENSE.txt

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Copyright (c) 2012 Matt Patterson
2+
3+
MIT License
4+
5+
Permission is hereby granted, free of charge, to any person obtaining
6+
a copy of this software and associated documentation files (the
7+
"Software"), to deal in the Software without restriction, including
8+
without limitation the rights to use, copy, modify, merge, publish,
9+
distribute, sublicense, and/or sell copies of the Software, and to
10+
permit persons to whom the Software is furnished to do so, subject to
11+
the following conditions:
12+
13+
The above copyright notice and this permission notice shall be
14+
included in all copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Saxon::Xslt
2+
3+
Wraps the Saxon 9 HE XSLT processor Java API so it's easy to use from your JRuby project
4+
5+
## Installation
6+
7+
Add this line to your application's Gemfile:
8+
9+
gem 'saxon-xslt'
10+
11+
And then execute:
12+
13+
$ bundle
14+
15+
Or install it yourself as:
16+
17+
$ gem install saxon-xslt
18+
19+
## Usage
20+
21+
TODO: Write usage instructions here
22+
23+
## Contributing
24+
25+
1. Fork it
26+
2. Create your feature branch (`git checkout -b my-new-feature`)
27+
3. Commit your changes (`git commit -am 'Add some feature'`)
28+
4. Push to the branch (`git push origin my-new-feature`)
29+
5. Create new Pull Request

Rakefile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
require "bundler/gem_tasks"

lib/saxon-xslt.rb

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
require 'saxon/xslt'

lib/saxon/xslt.rb

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
require 'saxon/xslt/version'
2+
$CLASSPATH << File.expand_path('../../../vendor/saxonica')
3+
require 'java'
4+
java_import javax.xml.transform.stream.StreamSource
5+
6+
module JavaIO
7+
include_package "java.io"
8+
end
9+
10+
module Saxon
11+
module S9API
12+
include_package "net.sf.saxon.s9api"
13+
end
14+
15+
class Xslt
16+
def self.compile(xslt_path)
17+
new(xslt_path)
18+
end
19+
20+
def initialize(xslt_path)
21+
@processor = S9API::Processor.new(false)
22+
@compiler = @processor.newXsltCompiler()
23+
@xslt = @compiler.compile(StreamSource.new(JavaIO::File.new(xslt_path)))
24+
end
25+
26+
def transform(xml_path)
27+
serializer = @processor.newSerializer()
28+
output = JavaIO::StringWriter.new()
29+
serialzer.setOutputWriter(output)
30+
xml = @processor.newDocumentBuilder().build(StreamSource.new(JavaIO::File.new(xml_path)))
31+
transformer = @xslt.load
32+
transformer.setInitialContextNode(xml)
33+
transformer.setDestination(output)
34+
transformer.transform
35+
output.toString
36+
end
37+
end
38+
end

lib/saxon/xslt/version.rb

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module Saxon
2+
module Xslt
3+
VERSION = "0.0.1"
4+
end
5+
end

saxon-xslt.gemspec

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# -*- encoding: utf-8 -*-
2+
lib = File.expand_path('../lib', __FILE__)
3+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4+
require 'saxon/xslt/version'
5+
6+
Gem::Specification.new do |gem|
7+
gem.name = "saxon-xslt"
8+
gem.version = Saxon::Xslt::VERSION
9+
gem.authors = ["Matt Patterson"]
10+
gem.email = ["[email protected]"]
11+
gem.description = %q{TODO: Write a gem description}
12+
gem.summary = %q{TODO: Write a gem summary}
13+
gem.homepage = ""
14+
15+
gem.files = `git ls-files`.split($/)
16+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
17+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18+
gem.require_paths = ["lib"]
19+
end

vendor/saxonica/saxon9-unpack.jar

19.7 KB
Binary file not shown.

vendor/saxonica/saxon9he.jar

9.35 MB
Binary file not shown.

0 commit comments

Comments
 (0)