thermal 0.1.0
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.
- data/.gitignore +3 -0
- data/.rspec +2 -0
- data/.travis.yml +6 -0
- data/Gemfile +3 -0
- data/LICENSE +20 -0
- data/README.md +27 -0
- data/lib/devices/btpr880.rb +25 -0
- data/lib/devices/html.rb +12 -0
- data/lib/thermal/parser.rb +30 -0
- data/lib/thermal/printer.rb +21 -0
- data/lib/thermal/version.rb +3 -0
- data/lib/thermal.rb +6 -0
- data/spec/btpr880_spec.rb +36 -0
- data/spec/fixtures/receipt.html +6 -0
- data/spec/parser_spec.rb +5 -0
- data/spec/printer_spec.rb +29 -0
- data/spec/spec_helper.rb +3 -0
- data/spec/thermal_spec.rb +7 -0
- data/thermal.gemspec +13 -0
- metadata +63 -0
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2012 Tyler Kellen
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# thermal
|
2
|
+
> Convert basic HTML into thermal printer codes.
|
3
|
+
|
4
|
+
This is a work in progress.
|
5
|
+
|
6
|
+
Supported devices:
|
7
|
+
- BTP-R880NP
|
8
|
+
|
9
|
+
## Setup
|
10
|
+
|
11
|
+
```console
|
12
|
+
gem install thermal
|
13
|
+
```
|
14
|
+
|
15
|
+
## Usage
|
16
|
+
|
17
|
+
```ruby
|
18
|
+
require 'thermal'
|
19
|
+
|
20
|
+
parser = Thermal::Parser.new(BTPR880)
|
21
|
+
|
22
|
+
BTPR880.print('192.168.1.200', 9100) do |print|
|
23
|
+
print.puts parser.process('<strong>bold <u>underline</u></strong>')
|
24
|
+
end
|
25
|
+
```
|
26
|
+
|
27
|
+
> Copyright (c) 2012 Tyler Kellen. See LICENSE for further details.
|
@@ -0,0 +1,25 @@
|
|
1
|
+
require 'socket'
|
2
|
+
|
3
|
+
class BTPR880 < Thermal::Printer
|
4
|
+
|
5
|
+
ESC = "\033"
|
6
|
+
CODES = {
|
7
|
+
:bold => ESC+"E",
|
8
|
+
:underline => ESC+"-"
|
9
|
+
}
|
10
|
+
TRANSLATE = {
|
11
|
+
:strong => [CODES[:bold]+"1", CODES[:bold]+"0"],
|
12
|
+
:u => [CODES[:underline]+"1", CODES[:underline]+"0"],
|
13
|
+
}
|
14
|
+
|
15
|
+
def self.translate
|
16
|
+
TRANSLATE
|
17
|
+
end
|
18
|
+
|
19
|
+
def self.print(ip, port=9001, &block)
|
20
|
+
sock = TCPSocket.new(ip, port)
|
21
|
+
yield sock if block_given?
|
22
|
+
sock.close
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
data/lib/devices/html.rb
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
require 'nokogiri'
|
2
|
+
|
3
|
+
module Thermal
|
4
|
+
class Parser
|
5
|
+
attr_accessor :device
|
6
|
+
|
7
|
+
def initialize(device)
|
8
|
+
@device = device
|
9
|
+
end
|
10
|
+
|
11
|
+
def process(str)
|
12
|
+
fragment = Nokogiri::HTML.fragment(str).children
|
13
|
+
traverse(fragment)
|
14
|
+
end
|
15
|
+
|
16
|
+
def traverse(fragment)
|
17
|
+
fragment.map do |node|
|
18
|
+
output = ""
|
19
|
+
if node.class == Nokogiri::XML::Text
|
20
|
+
output << node.content
|
21
|
+
elsif node.class == Nokogiri::XML::Element
|
22
|
+
output << @device.startCode(node.name)
|
23
|
+
output << traverse(node.children)
|
24
|
+
output << @device.endCode(node.name)
|
25
|
+
end
|
26
|
+
output
|
27
|
+
end.join('')
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
module Thermal
|
2
|
+
class Printer
|
3
|
+
|
4
|
+
def self.translate
|
5
|
+
{}
|
6
|
+
end
|
7
|
+
|
8
|
+
def self.getCode(tag)
|
9
|
+
self.translate[tag.to_sym] || ['', '']
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.startCode(tag)
|
13
|
+
self.getCode(tag)[0]
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.endCode(tag)
|
17
|
+
self.getCode(tag)[1]
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
21
|
+
end
|
data/lib/thermal.rb
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
2
|
+
|
3
|
+
describe BTPR880 do
|
4
|
+
|
5
|
+
describe "#startCode" do
|
6
|
+
it "should translate <strong>" do
|
7
|
+
BTPR880.startCode(:strong).should eq "\033E1"
|
8
|
+
end
|
9
|
+
it "should translate <u>" do
|
10
|
+
BTPR880.startCode(:u).should eq "\033-1"
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
describe "#endCode" do
|
15
|
+
it "should translate </strong>" do
|
16
|
+
BTPR880.endCode(:strong).should eq "\033E0"
|
17
|
+
end
|
18
|
+
it "should translate </u>" do
|
19
|
+
BTPR880.endCode(:u).should eq "\033-0"
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
24
|
+
|
25
|
+
describe "BTPR880 Parser" do
|
26
|
+
|
27
|
+
before(:each) do
|
28
|
+
@parser = Thermal::Parser.new(BTPR880)
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should translate html to BTPR880 valid print codes" do
|
32
|
+
translated = @parser.process("<strong>bold<u>underline</u></strong>")
|
33
|
+
translated.should eq "\033E1bold\033-1underline\033-0\033E0"
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
data/spec/parser_spec.rb
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
2
|
+
|
3
|
+
describe Thermal::Printer do
|
4
|
+
|
5
|
+
describe "#translation" do
|
6
|
+
it "should be empty" do
|
7
|
+
Thermal::Printer.translate.should be {}
|
8
|
+
end
|
9
|
+
end
|
10
|
+
|
11
|
+
describe "#getCode" do
|
12
|
+
it "should return open/close tag array" do
|
13
|
+
Thermal::Printer.getCode(:tag).should eq ['', '']
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
describe "#startCode" do
|
18
|
+
it "should return a printer code to start a print mode" do
|
19
|
+
Thermal::Printer.startCode(:tag).should eq ''
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
describe "#endCode" do
|
24
|
+
it "should return a printer code to end a print mode" do
|
25
|
+
Thermal::Printer.endCode(:tag).should eq ''
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
data/spec/spec_helper.rb
ADDED
data/thermal.gemspec
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
require File.expand_path('../lib/thermal/version', __FILE__)
|
2
|
+
|
3
|
+
Gem::Specification.new do |gem|
|
4
|
+
gem.name = 'thermal'
|
5
|
+
gem.version = Thermal::VERSION
|
6
|
+
gem.summary = 'Convert basic HTML into thermal printer escape codes.'
|
7
|
+
gem.description = gem.description
|
8
|
+
gem.author = 'Tyler Kellen'
|
9
|
+
gem.email = 'tyler@sleekcode.net'
|
10
|
+
gem.homepage = 'https://github.com/tkellen/ruby-thermal/'
|
11
|
+
gem.files = `git ls-files`.split("\n")
|
12
|
+
gem.require_paths = ['lib']
|
13
|
+
end
|
metadata
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: thermal
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Tyler Kellen
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-12-13 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: ''
|
15
|
+
email: tyler@sleekcode.net
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- .gitignore
|
21
|
+
- .rspec
|
22
|
+
- .travis.yml
|
23
|
+
- Gemfile
|
24
|
+
- LICENSE
|
25
|
+
- README.md
|
26
|
+
- lib/devices/btpr880.rb
|
27
|
+
- lib/devices/html.rb
|
28
|
+
- lib/thermal.rb
|
29
|
+
- lib/thermal/parser.rb
|
30
|
+
- lib/thermal/printer.rb
|
31
|
+
- lib/thermal/version.rb
|
32
|
+
- spec/btpr880_spec.rb
|
33
|
+
- spec/fixtures/receipt.html
|
34
|
+
- spec/parser_spec.rb
|
35
|
+
- spec/printer_spec.rb
|
36
|
+
- spec/spec_helper.rb
|
37
|
+
- spec/thermal_spec.rb
|
38
|
+
- thermal.gemspec
|
39
|
+
homepage: https://github.com/tkellen/ruby-thermal/
|
40
|
+
licenses: []
|
41
|
+
post_install_message:
|
42
|
+
rdoc_options: []
|
43
|
+
require_paths:
|
44
|
+
- lib
|
45
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
46
|
+
none: false
|
47
|
+
requirements:
|
48
|
+
- - ! '>='
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: '0'
|
51
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
52
|
+
none: false
|
53
|
+
requirements:
|
54
|
+
- - ! '>='
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '0'
|
57
|
+
requirements: []
|
58
|
+
rubyforge_project:
|
59
|
+
rubygems_version: 1.8.24
|
60
|
+
signing_key:
|
61
|
+
specification_version: 3
|
62
|
+
summary: Convert basic HTML into thermal printer escape codes.
|
63
|
+
test_files: []
|