extract_ttc 0.3.0-x86_64-linux-musl

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: b99ec3ddb233b380ced9aeb0057586bf4e284b4d74b7156bc73f2dd9639ec5fc
4
+ data.tar.gz: 111cbc334bd54c3ec5ef63cf0af06ae830a702af401eb408ef196b73bc5ce997
5
+ SHA512:
6
+ metadata.gz: fcdc136c80cf4ad59a9865945bff90a1396e479c65eb48dbe57abc00cc24d848c3a96fb7e7d86b3037aae32e5740fbeb768ff11522ff6ca9da1ec9705bd7c73a
7
+ data.tar.gz: fdcaaac127bb396ff3957f2fdf7919546a2a6acf49293ce279469800cc912bba3e2959f6126a89e77c9c9413ec3be425e528a6816ac092271477401096efe396
data/.gitignore ADDED
@@ -0,0 +1,15 @@
1
+ /.bundle/
2
+ /vendor/
3
+ /.yardoc
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ /Gemfile.lock
11
+ **/*.so
12
+ **/*.o
13
+
14
+ # remote file cache
15
+ .rubocop-*
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,5 @@
1
+ inherit_from:
2
+ - 'https://raw.githubusercontent.com/fontist/oss-guides/master/ci/rubocop.yml'
3
+
4
+ AllCops:
5
+ SuggestExtensions: false
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in extract_ttc.gemspec
4
+ gemspec
data/LICENSE.adoc ADDED
@@ -0,0 +1,13 @@
1
+ = BSD 3-Clause License
2
+
3
+ Copyright (c) 2020 Ribose Inc. All rights reserved.
4
+
5
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
6
+
7
+ 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
8
+
9
+ 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
10
+
11
+ 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
12
+
13
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
data/README.adoc ADDED
@@ -0,0 +1,121 @@
1
+ = ExtractTtc: Ruby gem to extract TTF from TTC
2
+
3
+ == Purpose
4
+
5
+ The gem lets you extract individual TrueType font files (`.ttf`) from a TrueType Collection file (`.ttc`).
6
+
7
+ `ExtractTtc` wraps functionality provided by `stripttc.c`, originally from the
8
+ https://github.com/fontforge/fontforge[FontForge project] as an FFI extension.
9
+
10
+ Specifically, `stripttc.c` is part of the `contribs` directory of FontForge, which
11
+ is
12
+ https://github.com/fontforge/fontforge/blob/21ad4a18fb3d4becfe566d8215eba4483b0ddc4b/contrib/CMakeLists.txt#L1[assigned]
13
+ the
14
+ https://github.com/fontforge/fontforge/blob/21ad4a18fb3d4becfe566d8215eba4483b0ddc4b/LICENSE#L12-L57[BSD 3-Clause license].
15
+
16
+
17
+ == Installation
18
+
19
+ Add this line to your application's `Gemfile`:
20
+
21
+ [source,ruby]
22
+ ----
23
+ gem 'extract_ttc'
24
+ ----
25
+
26
+ And then execute:
27
+
28
+ [source,sh]
29
+ ----
30
+ $ bundle install
31
+ ----
32
+
33
+ Or install it yourself as:
34
+
35
+ [source,sh]
36
+ ----
37
+ $ gem install extract_ttc
38
+ ----
39
+
40
+ == Usage
41
+
42
+ [source,ruby]
43
+ ----
44
+ ExtractTtc.extract("path/to/ttc/Helvetica.ttc")
45
+ ----
46
+
47
+ Would extract contained TTF files from TTC to a current directory.
48
+
49
+
50
+ == Development
51
+
52
+ We are following Sandi Metz's Rules for this gem, you can read the
53
+ http://robots.thoughtbot.com/post/50655960596/sandi-metz-rules-for-developers[description of the rules here].
54
+ All new code should follow these
55
+ rules. If you make changes in a pre-existing file that violates these rules you
56
+ should fix the violations as part of your contribution.
57
+
58
+ === Setup
59
+
60
+ Clone the repository:
61
+
62
+ [source,sh]
63
+ ----
64
+ git clone https://github.com/fontist/extract_ttc
65
+ ----
66
+
67
+ Setup your environment:
68
+
69
+ [source,sh]
70
+ ----
71
+ bin/setup
72
+ ----
73
+
74
+ Run the test suite:
75
+
76
+ [source,sh]
77
+ ----
78
+ bundle exec rspec
79
+ ----
80
+
81
+ If any changes are made in the C code, then the extension needs to be recompiled:
82
+
83
+ [source,sh]
84
+ ----
85
+ bundle exec rake recompile
86
+ ----
87
+
88
+ You can also run `bin/console` for an interactive prompt that will allow you to experiment.
89
+
90
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to https://rubygems.org[rubygems.org].
91
+
92
+
93
+ == Contributing
94
+
95
+ First, thank you for contributing! We love pull requests from everyone. By
96
+ participating in this project, you hereby grant https://www.ribose.com[Ribose Inc.] the
97
+ right to grant or transfer an unlimited number of non exclusive licenses or
98
+ sub-licenses to third parties, under the copyright covering the contribution
99
+ to use the contribution by all means.
100
+
101
+ Here are a few technical guidelines to follow:
102
+
103
+ 1. Open an https://github.com/fontist/extract_ttc/issues[issue] to discuss a new feature.
104
+ 1. Write tests to support your new feature.
105
+ 1. Make sure the entire test suite passes locally and on CI.
106
+ 1. Open a Pull Request.
107
+ 1. https://github.com/thoughtbot/guides/tree/master/protocol/git#write-a-feature[Squash your commits]
108
+ after receiving feedback.
109
+ 1. Party!
110
+
111
+
112
+ == License
113
+
114
+ This gem is distributed with a BSD 3-Clause license.
115
+
116
+ `stripttc.c` is obtained from:
117
+ https://github.com/fontforge/fontforge/blob/master/contrib/fonttools/stripttc.c
118
+
119
+ The BSD 3-Clause licence for `stripttc.c` is provided in `ext/stripttc/LICENSE`.
120
+
121
+ This gem is developed, maintained and funded by https://www.ribose.com/[Ribose Inc.]
data/Rakefile ADDED
@@ -0,0 +1,108 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/clean"
3
+ require "rake/extensiontask"
4
+ require "rake_compiler_dock"
5
+
6
+ require "rubygems"
7
+ require "rubygems/package_task"
8
+
9
+ # ++ Allow rake-compiler-dock configuration without dev. dependencies
10
+ begin
11
+ require "rubocop/rake_task"
12
+ RuboCop::RakeTask.new
13
+ rescue LoadError
14
+ end
15
+
16
+ begin
17
+ require "rspec/core/rake_task"
18
+ RSpec::Core::RakeTask.new(:spec)
19
+ rescue LoadError
20
+ end
21
+ # -- Allow rake-compiler-dock configuration without dev. dependencies
22
+
23
+ R_CC_V = "RUBY_CC_VERSION=3.1.0:3.0.0:2.7.0".freeze
24
+ bundler_ver = ENV["BUNDLER_VER"] || "2.3.22"
25
+
26
+ task default: :spec
27
+ task spec: :compile
28
+
29
+ spec = Gem::Specification.load("extract_ttc.gemspec")
30
+
31
+ ext_thru_rc_dock = %w[x86_64-linux aarch64-linux] +
32
+ %w[x64-mingw32 x64-mingw-ucrt x86_64-darwin arm64-darwin]
33
+
34
+ ext_thru_musl_cc = %w[x86_64-linux-musl aarch64-linux-musl]
35
+
36
+ # add your default gem packing task
37
+ Gem::PackageTask.new(spec) do |pkg|
38
+ end
39
+
40
+ # HACK: Prevent rake-compiler from overriding required_ruby_version,
41
+ # because the shared library here is Ruby-agnostic.
42
+ # See https://github.com/rake-compiler/rake-compiler/issues/153
43
+ module FixRequiredRubyVersion
44
+ def required_ruby_version=(*); end
45
+ end
46
+ Gem::Specification.prepend(FixRequiredRubyVersion)
47
+
48
+ exttask = Rake::ExtensionTask.new("stripttc", spec) do |ext|
49
+ ext.lib_dir = "lib"
50
+ ext.cross_compile = true
51
+ ext.cross_platform = ext_thru_rc_dock + ext_thru_musl_cc
52
+ ext.cross_compiling do |s|
53
+ s.files.reject! { |path| File.fnmatch?("ext/*", path) }
54
+ end
55
+ end
56
+
57
+ namespace "gem" do
58
+ desc "Cache dependencies"
59
+ task "cache" do
60
+ sh <<~RCD
61
+ bundle config set cache_all true &&
62
+ bundle config set --local without 'development' &&
63
+ bundle package
64
+ RCD
65
+ end
66
+
67
+ desc "build native gems with rake-compiler-dock"
68
+ task "native" => "cache" do
69
+ ext_thru_rc_dock.each do |plat|
70
+ RakeCompilerDock.sh <<~RCD, platform: plat
71
+ gem install bundler:#{bundler_ver} --no-document &&
72
+ bundle install --local &&
73
+ bundle exec rake native:#{plat} gem #{R_CC_V}
74
+ RCD
75
+ end
76
+ end
77
+ end
78
+
79
+ namespace "gem" do
80
+ ext_thru_rc_dock.each do |plat|
81
+ desc "Build native gems with rake-compiler-dock in parallel"
82
+ multitask "parallel" => plat
83
+
84
+ desc "Build the native gem for #{plat}"
85
+ task plat => "cache" do
86
+ RakeCompilerDock.sh <<~RCD, platform: plat
87
+ gem install bundler:#{bundler_ver} --no-document &&
88
+ bundle install --local &&
89
+ bundle exec rake native:#{plat} \
90
+ pkg/#{exttask.gem_spec.full_name}-#{plat}.gem \
91
+ #{R_CC_V}
92
+ RCD
93
+ end
94
+ end
95
+
96
+ ext_thru_musl_cc.each do |plat|
97
+ desc "Define the gem task to build on the #{plat} platform (binary gem)"
98
+ task plat do
99
+ s = spec.dup
100
+ s.platform = Gem::Platform.new(plat)
101
+ s.files += Dir.glob("lib/extract_ttc/*.{dll,so,dylib}")
102
+ s.extensions = []
103
+
104
+ task = Gem::PackageTask.new(s)
105
+ task.define
106
+ end
107
+ end
108
+ end
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "extract_ttc"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/rspec ADDED
@@ -0,0 +1,29 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ #
5
+ # This file was generated by Bundler.
6
+ #
7
+ # The application 'rspec' is installed as part of a gem, and
8
+ # this file is here to facilitate running it.
9
+ #
10
+
11
+ require "pathname"
12
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
13
+ Pathname.new(__FILE__).realpath)
14
+
15
+ bundle_binstub = File.expand_path("bundle", __dir__)
16
+
17
+ if File.file?(bundle_binstub)
18
+ if /This file was generated by Bundler/.match?(File.read(bundle_binstub, 300))
19
+ load(bundle_binstub)
20
+ else
21
+ abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
22
+ Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
23
+ end
24
+ end
25
+
26
+ require "rubygems"
27
+ require "bundler/setup"
28
+
29
+ load Gem.bin_path("rspec-core", "rspec")
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+ bundle exec rake compile
@@ -0,0 +1,31 @@
1
+ BSD 3-Clause License for stripttc.c
2
+
3
+ Copyright (c) George Williams and FontForge authors. All rights reserved.
4
+ https://github.com/fontforge/fontforge/blob/master/AUTHORS
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions
8
+ are met:
9
+
10
+ Redistributions of source code must retain the above copyright
11
+ notice, this list of conditions and the following disclaimer.
12
+
13
+ Redistributions in binary form must reproduce the above copyright
14
+ notice, this list of conditions and the following disclaimer in the
15
+ documentation and/or other materials provided with the distribution.
16
+
17
+ The name of the author may not be used to endorse or promote
18
+ products derived from this software without specific prior written
19
+ permission.
20
+
21
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS
22
+ OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24
+ ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
25
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
27
+ GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
29
+ IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
30
+ OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
31
+ IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,2 @@
1
+ // to keep linker happy
2
+ void Init_stripttc() {}
@@ -0,0 +1,6 @@
1
+ require "mkmf"
2
+ require "rbconfig"
3
+
4
+ CONFIG["LDSHARED"] << " -shared" unless RbConfig::CONFIG["host_os"].match?(/darwin/)
5
+
6
+ create_makefile "stripttc"
@@ -0,0 +1,187 @@
1
+ #include <stdio.h>
2
+ #include <stdlib.h>
3
+ #include <string.h>
4
+ #include <libgen.h>
5
+
6
+ /* This program takes a ttc file and turns it into its component ttf files */
7
+ /* This makes two changes to the data: */
8
+ /* * The tables are placed at different offsets, therefore */
9
+ /* the offset fields in the table header are also different. */
10
+ /* * the 'head' table checksumAdjustment field is set correctly */
11
+
12
+ #define CHR(ch1,ch2,ch3,ch4) (((ch1)<<24)|((ch2)<<16)|((ch3)<<8)|(ch4))
13
+
14
+ #ifdef _WIN32
15
+ #define EXPORT_API __declspec(dllexport)
16
+ #else
17
+ #define EXPORT_API
18
+ #endif
19
+
20
+ static void putshort(FILE *file,int sval) {
21
+ putc((sval>>8)&0xff,file);
22
+ putc(sval&0xff,file);
23
+ }
24
+
25
+ static void putlong(FILE *file,int val) {
26
+ putc((val>>24)&0xff,file);
27
+ putc((val>>16)&0xff,file);
28
+ putc((val>>8)&0xff,file);
29
+ putc(val&0xff,file);
30
+ }
31
+
32
+ static int getushort(FILE *ttf) {
33
+ int ch1 = getc(ttf);
34
+ int ch2 = getc(ttf);
35
+ if ( ch2==EOF )
36
+ return( EOF );
37
+ return( (ch1<<8)|ch2 );
38
+ }
39
+
40
+ static int getlong(FILE *ttf) {
41
+ int ch1 = getc(ttf);
42
+ int ch2 = getc(ttf);
43
+ int ch3 = getc(ttf);
44
+ int ch4 = getc(ttf);
45
+ if ( ch4==EOF )
46
+ return( EOF );
47
+ return( (ch1<<24)|(ch2<<16)|(ch3<<8)|ch4 );
48
+ }
49
+
50
+ static unsigned int filecheck(FILE *file) {
51
+ unsigned int sum = 0, chunk;
52
+
53
+ rewind(file);
54
+ while ( 1 ) {
55
+ chunk = getlong(file);
56
+ if ( feof(file) || ferror(file))
57
+ break;
58
+ sum += chunk;
59
+ }
60
+ return( sum );
61
+ }
62
+
63
+ static void copytable(FILE *ttf,FILE *ttc,int offset,int length) {
64
+ int i, ch;
65
+
66
+ fseek(ttc,offset,SEEK_SET);
67
+ for ( i=0; i<length && (ch=getc(ttc))!=EOF ; ++i )
68
+ putc(ch,ttf);
69
+ if ( ch==EOF )
70
+ fprintf( stderr, "File ended before table\n" );
71
+ if ( length&1 ) {
72
+ putc('\0',ttf);
73
+ ++length;
74
+ }
75
+ if ( length & 2 ) {
76
+ putshort(ttf,0);
77
+ }
78
+ }
79
+
80
+ static int handlefont(char *filename,int which,FILE *ttc,int offset) {
81
+ char outfile[2000], *pt;
82
+ FILE *ttf;
83
+ int i, cnt, *offsets, *lengths, head, tag, pos, headpos;
84
+ strcpy(outfile,basename(filename));
85
+ pt = strrchr(outfile,'.');
86
+ if ( pt==NULL )
87
+ pt = outfile + strlen(outfile);
88
+ sprintf( pt, "_%02d.ttf", which );
89
+
90
+ ttf = fopen( outfile,"wb");
91
+ if ( ttf==NULL ) {
92
+ fprintf( stderr, "Failed to open %s for output.\n", outfile );
93
+ return( -3 );
94
+ }
95
+ printf ( "%s ", outfile );
96
+
97
+ fseek(ttc,offset,SEEK_SET);
98
+ putlong(ttf,getlong(ttc)); /* sfnt version */
99
+ putshort(ttf,cnt = getushort(ttc)); /* table cnt */
100
+ putshort(ttf,getushort(ttc)); /* binary search header */
101
+ putshort(ttf,getushort(ttc));
102
+ putshort(ttf,getushort(ttc));
103
+
104
+ offsets = malloc(cnt*sizeof(int));
105
+ lengths = malloc(cnt*sizeof(int));
106
+ head = -1;
107
+ for ( i=0; i<cnt; ++i ) {
108
+ tag = getlong(ttc);
109
+ if ( tag==CHR('h','e','a','d'))
110
+ head = i;
111
+ putlong(ttf,tag);
112
+ putlong(ttf,getlong(ttc)); /* checksum */
113
+ putlong(ttf,offsets[i] = getlong(ttc)); /* Reserve space for offset, will fix later */
114
+ putlong(ttf,lengths[i] = getlong(ttc));
115
+ }
116
+ headpos = -1;
117
+ for ( i=0; i<cnt; ++i ) {
118
+ pos = ftell(ttf);
119
+ copytable(ttf,ttc,offsets[i],lengths[i]);
120
+ if ( i==head ) {
121
+ fseek(ttf,pos+8,SEEK_SET);
122
+ putlong(ttf,0);
123
+ headpos = pos;
124
+ }
125
+ fseek(ttf,12+i*16+8,SEEK_SET);
126
+ putlong(ttf,pos); /* Fix offset here */
127
+ fseek(ttf,0,SEEK_END);
128
+ }
129
+ if ( headpos!=-1 ) {
130
+ unsigned int checksum;
131
+ checksum = filecheck(ttf);
132
+ checksum = 0xb1b0afba-checksum;
133
+ fseek(ttf,headpos+2*sizeof(int),SEEK_SET);
134
+ putlong(ttf,checksum);
135
+ }
136
+ fclose(ttf);
137
+ free(offsets); free(lengths);
138
+ return( 0 );
139
+ }
140
+
141
+ EXPORT_API int handlefile(char *filename) {
142
+ FILE *ttc = fopen(filename,"rb");
143
+ int version, cnt, e, i;
144
+ int *offsets;
145
+
146
+ if ( ttc==NULL ) {
147
+ fprintf( stderr, "Could not open %s\n", filename );
148
+ return( -1 );
149
+ }
150
+
151
+ version = getlong(ttc);
152
+ if ( version!=CHR('t','t','c','f')) {
153
+ fprintf( stderr, "%s does not look like a ttc file, bad version.\n", filename );
154
+ fclose(ttc);
155
+ return( -2 );
156
+ }
157
+
158
+ version = getlong(ttc);
159
+ if ( version!=0x10000 && version != 0x20000 )
160
+ fprintf( stderr, "Unexpected ttc version number: %08x\n", (unsigned int)(version) );
161
+ cnt = getlong(ttc);
162
+ offsets = malloc(cnt*sizeof(int));
163
+ for ( i=0; i<cnt; ++i )
164
+ offsets[i] = getlong(ttc);
165
+ printf( "%s => ", filename );
166
+ for ( i=0; i<cnt; ++i )
167
+ if ( (e = handlefont(filename,i,ttc,offsets[i])) ) {
168
+ fflush(stdout);
169
+ fclose(ttc);
170
+ free(offsets);
171
+ return( e );
172
+ };
173
+ printf( "\n" );
174
+ fflush(stdout);
175
+ fclose(ttc);
176
+ free(offsets);
177
+ return( 0 );
178
+ }
179
+
180
+ int main(int argc, char *argv[]) {
181
+ int e, i;
182
+
183
+ for ( i=1; i<argc; ++i )
184
+ if ( (e = handlefile(argv[i])) )
185
+ return( e );
186
+ return( 0 );
187
+ }
@@ -0,0 +1,41 @@
1
+ require_relative "lib/extract_ttc/version"
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "extract_ttc"
5
+ spec.version = ExtractTtc::VERSION
6
+ spec.authors = ["Ribose Inc."]
7
+ spec.email = ["operations@ribose.com"]
8
+
9
+ spec.summary = "Extract TTC file to TTF files"
10
+ spec.description = "Extract font collection to separate font files"
11
+ spec.homepage = "https://github.com/fontist/extract_ttc"
12
+ spec.license = "BSD-3-Clause"
13
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")
14
+
15
+ spec.metadata["homepage_uri"] = spec.homepage
16
+ spec.metadata["source_code_uri"] = "https://github.com/fontist/extract_ttc"
17
+ spec.metadata["changelog_uri"] = "https://github.com/fontist/extract_ttc"
18
+
19
+ spec.files = Dir.chdir(__dir__) do
20
+ `git ls-files -z`
21
+ .split("\x0").reject { |f| f.match(%r{^(.github|test|spec|features)/}) }
22
+ end
23
+
24
+ spec.bindir = "exe"
25
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
26
+ spec.require_paths = ["lib"]
27
+
28
+ spec.add_runtime_dependency "ffi", "~> 1.0"
29
+ spec.add_runtime_dependency "bundler", '~> 2.3', '>= 2.3.22'
30
+ spec.add_runtime_dependency "rake", "~> 13"
31
+ spec.add_runtime_dependency "rake-compiler", "~> 1.2"
32
+ spec.add_runtime_dependency "rake-compiler-dock", "~> 1.2"
33
+
34
+ spec.add_development_dependency "rspec", "~> 3.0"
35
+ spec.add_development_dependency "rubocop", "~> 1.5"
36
+ spec.add_development_dependency "rubocop-performance", "~> 1.10"
37
+ spec.add_development_dependency "rubocop-rails", "~> 2.9"
38
+
39
+ spec.extensions << "ext/stripttc/extconf.rb"
40
+ spec.metadata["rubygems_mfa_required"] = "false"
41
+ end
@@ -0,0 +1,3 @@
1
+ module ExtractTtc
2
+ VERSION = "0.3.0".freeze
3
+ end
@@ -0,0 +1,79 @@
1
+ require "extract_ttc/version"
2
+ require "ffi"
3
+ require "tempfile"
4
+
5
+ module ExtractTtc
6
+ class Error < StandardError; end
7
+
8
+ class ReadFileError < Error; end
9
+
10
+ class InvalidFileError < Error; end
11
+
12
+ class WriteFileError < Error; end
13
+
14
+ class UnknownResultError < Error; end
15
+
16
+ extend FFI::Library
17
+ # NOTE: ffi doesn't support bundles out of box https://github.com/ffi/ffi/issues/42#issuecomment-750031554
18
+ # NOTE: rake-compiler doesn't support dylib generation https://github.com/rake-compiler/rake-compiler/issues/183
19
+ lib_name = if File.exists?(File.join(File.dirname(__FILE__),
20
+ "stripttc.bundle"))
21
+ "stripttc.bundle"
22
+ else
23
+ "stripttc.so"
24
+ end
25
+ ffi_lib File.join(File.dirname(__FILE__), lib_name)
26
+ attach_function :handlefile, [:string], :int
27
+
28
+ def self.extract(path)
29
+ stdout, stderr, code = capture3 do
30
+ handlefile(path)
31
+ end
32
+
33
+ return handle_error(code, stderr) unless code.zero?
34
+
35
+ fetch_filenames(stdout)
36
+ end
37
+
38
+ def self.handle_error(code, stderr)
39
+ case code
40
+ when -1
41
+ raise ReadFileError, stderr
42
+ when -2
43
+ raise InvalidFileError, stderr
44
+ when -3
45
+ raise WriteFileError, stderr
46
+ else
47
+ raise UnknownResultError, "Return code: #{code}"
48
+ end
49
+ end
50
+
51
+ def self.capture3
52
+ stderr = status = nil
53
+
54
+ stdout = capture_stream($stdout) do
55
+ stderr = capture_stream($stderr) do
56
+ status = yield
57
+ end
58
+ end
59
+
60
+ [stdout, stderr, status]
61
+ end
62
+
63
+ def self.capture_stream(stream_io)
64
+ origin_stream = stream_io.dup
65
+
66
+ Tempfile.open("captured_stream") do |captured_stream|
67
+ stream_io.reopen(captured_stream)
68
+ yield
69
+ captured_stream.rewind
70
+ return captured_stream.read
71
+ end
72
+ ensure
73
+ stream_io.reopen(origin_stream)
74
+ end
75
+
76
+ def self.fetch_filenames(stdout)
77
+ stdout.split("=>").last.split
78
+ end
79
+ end
data/lib/stripttc.so ADDED
Binary file
metadata ADDED
@@ -0,0 +1,197 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: extract_ttc
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.0
5
+ platform: x86_64-linux-musl
6
+ authors:
7
+ - Ribose Inc.
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2022-09-29 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: ffi
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '2.3'
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: 2.3.22
37
+ type: :runtime
38
+ prerelease: false
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - "~>"
42
+ - !ruby/object:Gem::Version
43
+ version: '2.3'
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: 2.3.22
47
+ - !ruby/object:Gem::Dependency
48
+ name: rake
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '13'
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '13'
61
+ - !ruby/object:Gem::Dependency
62
+ name: rake-compiler
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '1.2'
68
+ type: :runtime
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: '1.2'
75
+ - !ruby/object:Gem::Dependency
76
+ name: rake-compiler-dock
77
+ requirement: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - "~>"
80
+ - !ruby/object:Gem::Version
81
+ version: '1.2'
82
+ type: :runtime
83
+ prerelease: false
84
+ version_requirements: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - "~>"
87
+ - !ruby/object:Gem::Version
88
+ version: '1.2'
89
+ - !ruby/object:Gem::Dependency
90
+ name: rspec
91
+ requirement: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - "~>"
94
+ - !ruby/object:Gem::Version
95
+ version: '3.0'
96
+ type: :development
97
+ prerelease: false
98
+ version_requirements: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - "~>"
101
+ - !ruby/object:Gem::Version
102
+ version: '3.0'
103
+ - !ruby/object:Gem::Dependency
104
+ name: rubocop
105
+ requirement: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - "~>"
108
+ - !ruby/object:Gem::Version
109
+ version: '1.5'
110
+ type: :development
111
+ prerelease: false
112
+ version_requirements: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - "~>"
115
+ - !ruby/object:Gem::Version
116
+ version: '1.5'
117
+ - !ruby/object:Gem::Dependency
118
+ name: rubocop-performance
119
+ requirement: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - "~>"
122
+ - !ruby/object:Gem::Version
123
+ version: '1.10'
124
+ type: :development
125
+ prerelease: false
126
+ version_requirements: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - "~>"
129
+ - !ruby/object:Gem::Version
130
+ version: '1.10'
131
+ - !ruby/object:Gem::Dependency
132
+ name: rubocop-rails
133
+ requirement: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - "~>"
136
+ - !ruby/object:Gem::Version
137
+ version: '2.9'
138
+ type: :development
139
+ prerelease: false
140
+ version_requirements: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - "~>"
143
+ - !ruby/object:Gem::Version
144
+ version: '2.9'
145
+ description: Extract font collection to separate font files
146
+ email:
147
+ - operations@ribose.com
148
+ executables: []
149
+ extensions: []
150
+ extra_rdoc_files: []
151
+ files:
152
+ - ".gitignore"
153
+ - ".rspec"
154
+ - ".rubocop.yml"
155
+ - Gemfile
156
+ - LICENSE.adoc
157
+ - README.adoc
158
+ - Rakefile
159
+ - bin/console
160
+ - bin/rspec
161
+ - bin/setup
162
+ - ext/stripttc/LICENSE
163
+ - ext/stripttc/dummy.c
164
+ - ext/stripttc/extconf.rb
165
+ - ext/stripttc/stripttc.c
166
+ - extract_ttc.gemspec
167
+ - lib/extract_ttc.rb
168
+ - lib/extract_ttc/version.rb
169
+ - lib/stripttc.so
170
+ homepage: https://github.com/fontist/extract_ttc
171
+ licenses:
172
+ - BSD-3-Clause
173
+ metadata:
174
+ homepage_uri: https://github.com/fontist/extract_ttc
175
+ source_code_uri: https://github.com/fontist/extract_ttc
176
+ changelog_uri: https://github.com/fontist/extract_ttc
177
+ rubygems_mfa_required: 'false'
178
+ post_install_message:
179
+ rdoc_options: []
180
+ require_paths:
181
+ - lib
182
+ required_ruby_version: !ruby/object:Gem::Requirement
183
+ requirements:
184
+ - - ">="
185
+ - !ruby/object:Gem::Version
186
+ version: 2.6.0
187
+ required_rubygems_version: !ruby/object:Gem::Requirement
188
+ requirements:
189
+ - - ">="
190
+ - !ruby/object:Gem::Version
191
+ version: '0'
192
+ requirements: []
193
+ rubygems_version: 3.3.7
194
+ signing_key:
195
+ specification_version: 4
196
+ summary: Extract TTC file to TTF files
197
+ test_files: []