Sha256: 897a611b82bc494dde4d7b276af0b2ecc537aff7a83207489e94f7ec508ea307
Contents?: true
Size: 1.21 KB
Versions: 5
Compression:
Stored size: 1.21 KB
Contents
require 'os' require 'libis/tools/extend/string' require 'libis/tools/logger' require 'libis/tools/command' require 'libis/format/config' module Libis module Format module Tool class PdfSplit include ::Libis::Tools::Logger def self.run(source, target, options = []) self.new.run source, target, options end def run(source, target, options = []) if OS.java? # TODO: import library and execute in current VM. For now do exactly as in MRI. end timeout = Libis::Format::Config[:timeouts][:pdf_split] result = Libis::Tools::Command.run( Libis::Format::Config[:java_cmd], '-jar', Libis::Format::Config[:pdf_tool], 'split', '-i', source, '-o', target, *options, timeout: timeout, kill_after: timeout * 2 ) raise RuntimeError, "#{self.class} took too long (> #{timeout} seconds) to complete" if result[:timeout] raise RuntimeError, "#{self.class} errors: #{result[:err].join("\n")}" unless result[:status] == 0 && result[:err].empty? result end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems