rb-libmagic 1.0.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 5e55bd56d21d9f6f4015659285a34458305fc1e298bfb72a5839383a46d0ec21
4
+ data.tar.gz: 19b4d7f13e67d087ff3c12378c6d99f4b9f42fa7c8b97678cdaab974fc2abbb6
5
+ SHA512:
6
+ metadata.gz: ce812497ba741dee04e3d51170d04c34ca21b9ccad29f77e75f3e453ff3135be2a30dd6fcb3b8891e58960b3f228e6b66d762c4ac536a409ea8000ba4a49a39e
7
+ data.tar.gz: d2531e65292a28911f8dce7a1276e2dfa71923fbc6b41bd56909f6c271287e2bc760ac2ce09f11223f905222719031ae003f636c6fc0385ef9d95bb80b431bac
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License
2
+
3
+ Copyright (c) 2010 Michael Fellinger, (c) 2019 Liam P. White
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9
+ of the Software, and to permit persons to whom the Software is furnished to do
10
+ so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # Ruby FFI bindings for libmagic
2
+
3
+ ## Usage
4
+
5
+ ```ruby
6
+ >> require 'ffi-magic'
7
+ => true
8
+ >> magic = Magic.new
9
+ => #<Magic:0x000000012e5ff8 @flags=0, @path=nil, @cookie=#<FFI::Pointer address=0x000000017e38b0>>
10
+ >> magic.file('spec/magic.png')
11
+ => "PNG image data, 100 x 67, 8-bit/color RGB, non-interlaced"
12
+ >> magic.flags = Magic::MIME_TYPE
13
+ => 16
14
+ >> magic.file('spec/magic.png')
15
+ => "image/png"
16
+ ```
17
+
18
+ ### Getting the MIME Type
19
+
20
+ ```ruby
21
+ magic = Magic.new(Magic::MIME)
22
+ => #<Magic:0x00000000a3cc80 @flags=1040, @path=nil, @cookie=#<FFI::Pointer address=0x00000000df7190>>
23
+ >> magic.file('spec/magic.png')
24
+ >> => "image/png; charset=binary"
25
+ ```
data/lib/magic.rb ADDED
@@ -0,0 +1,113 @@
1
+ require 'ffi'
2
+
3
+ class Magic
4
+ extend FFI::Library
5
+ ffi_lib ['magic', 'libmagic.so.1']
6
+
7
+ attach_function :magic_open, [:int], :pointer
8
+ attach_function :magic_error, [:pointer], :string
9
+ attach_function :magic_load, [:pointer, :string], :int
10
+ attach_function :magic_file, [:pointer, :string], :string
11
+ attach_function :magic_setflags, [:pointer, :int], :void
12
+ attach_function :magic_buffer, [:pointer, :pointer, :int], :string
13
+ attach_function :magic_check, [:pointer, :string], :int
14
+ attach_function :magic_compile, [:pointer, :string], :int
15
+ attach_function :magic_close, [:pointer], :void
16
+
17
+ NONE = 0x000000
18
+ DEBUG = 0x000001
19
+ SYMLINK = 0x000002
20
+ COMPRESS = 0x000004
21
+ DEVICES = 0x000008
22
+ MIME_TYPE = 0x000010
23
+ CONTINUE = 0x000020
24
+ CHECK = 0x000040
25
+ PRESERVE_ATIME = 0x000080
26
+ RAW = 0x000100
27
+ ERROR = 0x000200
28
+ MIME_ENCODING = 0x000400
29
+ MIME = MIME_TYPE | MIME_ENCODING
30
+ APPLE = 0x000800
31
+ NO_CHECK_COMPRESS = 0x001000
32
+ NO_CHECK_TAR = 0x002000
33
+ NO_CHECK_SOFT = 0x004000
34
+ NO_CHECK_APPTYPE = 0x008000
35
+ NO_CHECK_ELF = 0x010000
36
+ NO_CHECK_TEXT = 0x020000
37
+ NO_CHECK_CDF = 0x040000
38
+ NO_CHECK_TOKENS = 0x100000
39
+ NO_CHECK_ENCODING = 0x200000
40
+
41
+ Error = Class.new(StandardError)
42
+
43
+ attr_reader :path, :flags
44
+
45
+ def self.compile(path)
46
+ cookie = magic_open(NONE)
47
+
48
+ unless magic_compile(cookie, path) == 0
49
+ raise Error, "failed compile: #{magic_error(cookie)}"
50
+ end
51
+
52
+ magic_close(cookie)
53
+
54
+ true
55
+ end
56
+
57
+ def initialize(flags = NONE, path = nil)
58
+ @flags = flags
59
+ @path = path
60
+
61
+ unless @cookie = magic_open(@flags)
62
+ raise Error, "failed to initialize magic cookie"
63
+ end
64
+
65
+ if magic_load(@cookie, @path) != 0
66
+ raise Error, "failed to load database: #{magic_error(@cookie)}"
67
+ end
68
+
69
+ begin
70
+ ObjectSpace.define_finalizer(self){ close }
71
+ rescue
72
+ end
73
+ end
74
+
75
+ def file(path)
76
+ unless msg = magic_file(@cookie, path)
77
+ raise Error, "failed lookup: #{magic_error(@cookie)}"
78
+ end
79
+
80
+ msg
81
+ end
82
+
83
+ def buffer(string)
84
+ input = string.to_str
85
+
86
+ if input.respond_to?(:bytesize)
87
+ magic_buffer(@cookie, input, input.bytesize)
88
+ else
89
+ magic_buffer(@cookie, input, input.size)
90
+ end
91
+ end
92
+
93
+ def flags=(flags)
94
+ @flags = flags
95
+ magic_setflags(@cookie, flags)
96
+ end
97
+
98
+ def valid?(path = nil)
99
+ magic_check(@cookie, path) == 0
100
+ end
101
+
102
+ def load(path = @path)
103
+ unless magic_load(@cookie, path) == 0
104
+ raise Error, "failed load: #{magic_error(@cookie)}"
105
+ end
106
+ @path = path
107
+ end
108
+
109
+ def close
110
+ magic_close(@cookie) if @cookie
111
+ @cookie = nil
112
+ end
113
+ end
@@ -0,0 +1,3 @@
1
+ class Magic
2
+ VERSION = "1.0.0"
3
+ end
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/magic/version'
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = 'rb-libmagic'
7
+ s.version = Magic::VERSION
8
+
9
+ s.authors = ["Michael 'manveru' Fellinger", "Liam P. White"]
10
+ s.date = '2019-04-20'
11
+ s.email = 'liamwhite@users.noreply.github.com'
12
+ s.files = `git ls-files`.split("\n")
13
+ s.license = 'MIT'
14
+ s.homepage = 'http://github.com/liamwhite/rb-libmagic'
15
+ s.summary = 'FFI binding for libmagic.'
16
+
17
+ s.require_paths = %w(lib)
18
+ s.add_dependency 'ffi', '~> 1'
19
+ end
metadata ADDED
@@ -0,0 +1,63 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rb-libmagic
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Michael 'manveru' Fellinger
8
+ - Liam P. White
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2019-04-20 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: ffi
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '1'
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - "~>"
26
+ - !ruby/object:Gem::Version
27
+ version: '1'
28
+ description:
29
+ email: liamwhite@users.noreply.github.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - LICENSE
35
+ - README.md
36
+ - lib/magic.rb
37
+ - lib/magic/version.rb
38
+ - rb-libmagic.gemspec
39
+ homepage: http://github.com/liamwhite/rb-libmagic
40
+ licenses:
41
+ - MIT
42
+ metadata: {}
43
+ post_install_message:
44
+ rdoc_options: []
45
+ require_paths:
46
+ - lib
47
+ required_ruby_version: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: '0'
52
+ required_rubygems_version: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: '0'
57
+ requirements: []
58
+ rubyforge_project:
59
+ rubygems_version: 2.7.6.2
60
+ signing_key:
61
+ specification_version: 4
62
+ summary: FFI binding for libmagic.
63
+ test_files: []