ffi-uuid 0.1.2
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/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +17 -0
- data/Rakefile +78 -0
- data/VERSION +1 -0
- data/ffi-uuid.gemspec +55 -0
- data/lib/ffi/ffi_uuid_impl.rb +91 -0
- data/lib/ffi-uuid.rb +2 -0
- data/test/helper.rb +9 -0
- data/test/test_ffi_uuid.rb +33 -0
- metadata +94 -0
data/.document
ADDED
data/.gitignore
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 Michael Mullis
|
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.rdoc
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
= ffi-uuid
|
2
|
+
|
3
|
+
FFI Wrapper for libuuid. Access to the basic functions is provided as well as extra helpers to make usage friendlier.
|
4
|
+
|
5
|
+
== Note on Patches/Pull Requests
|
6
|
+
|
7
|
+
* Fork the project.
|
8
|
+
* Make your feature addition or bug fix.
|
9
|
+
* Add tests for it. This is important so I don't break it in a
|
10
|
+
future version unintentionally.
|
11
|
+
* Commit, do not mess with rakefile, version, or history.
|
12
|
+
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
13
|
+
* Send me a pull request. Bonus points for topic branches.
|
14
|
+
|
15
|
+
== Copyright
|
16
|
+
|
17
|
+
Copyright (c) 2010 Michael Mullis. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "ffi-uuid"
|
8
|
+
gem.summary = %Q{FFI Wrapper for libuuidm}
|
9
|
+
gem.description = %Q{FFI Wrapper for libuuid with extra helpers for common UUID tasks like getting an array of uuids for quicker distribution}
|
10
|
+
gem.email = "michael@mullistechnologies.com"
|
11
|
+
gem.homepage = "http://github.com/mmullis/ffi-uuid"
|
12
|
+
gem.authors = ["Michael Mullis"]
|
13
|
+
gem.add_dependency 'ffi', ">= 0.6.3"
|
14
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
15
|
+
end
|
16
|
+
Jeweler::GemcutterTasks.new
|
17
|
+
rescue LoadError
|
18
|
+
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
19
|
+
end
|
20
|
+
|
21
|
+
require 'rake/testtask'
|
22
|
+
Rake::TestTask.new(:test) do |test|
|
23
|
+
test.libs << 'lib' << 'test'
|
24
|
+
test.pattern = 'test/**/test_*.rb'
|
25
|
+
test.verbose = true
|
26
|
+
end
|
27
|
+
|
28
|
+
begin
|
29
|
+
require 'rcov/rcovtask'
|
30
|
+
Rcov::RcovTask.new do |test|
|
31
|
+
test.libs << 'test'
|
32
|
+
test.pattern = 'test/**/test_*.rb'
|
33
|
+
test.verbose = true
|
34
|
+
end
|
35
|
+
rescue LoadError
|
36
|
+
task :rcov do
|
37
|
+
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
task :test => :check_dependencies
|
42
|
+
|
43
|
+
begin
|
44
|
+
require 'reek/adapters/rake_task'
|
45
|
+
Reek::RakeTask.new do |t|
|
46
|
+
t.fail_on_error = true
|
47
|
+
t.verbose = false
|
48
|
+
t.source_files = 'lib/**/*.rb'
|
49
|
+
end
|
50
|
+
rescue LoadError
|
51
|
+
task :reek do
|
52
|
+
abort "Reek is not available. In order to run reek, you must: sudo gem install reek"
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
begin
|
57
|
+
require 'roodi'
|
58
|
+
require 'roodi_task'
|
59
|
+
RoodiTask.new do |t|
|
60
|
+
t.verbose = false
|
61
|
+
end
|
62
|
+
rescue LoadError
|
63
|
+
task :roodi do
|
64
|
+
abort "Roodi is not available. In order to run roodi, you must: sudo gem install roodi"
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
task :default => :test
|
69
|
+
|
70
|
+
require 'rake/rdoctask'
|
71
|
+
Rake::RDocTask.new do |rdoc|
|
72
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
73
|
+
|
74
|
+
rdoc.rdoc_dir = 'rdoc'
|
75
|
+
rdoc.title = "ffi-uuid #{version}"
|
76
|
+
rdoc.rdoc_files.include('README*')
|
77
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
78
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.1.2
|
data/ffi-uuid.gemspec
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{ffi-uuid}
|
8
|
+
s.version = "0.1.2"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Michael Mullis"]
|
12
|
+
s.date = %q{2010-10-04}
|
13
|
+
s.description = %q{FFI Wrapper for libuuid with extra helpers for common UUID tasks like getting an array of uuids for quicker distribution}
|
14
|
+
s.email = %q{michael@mullistechnologies.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
".gitignore",
|
22
|
+
"LICENSE",
|
23
|
+
"README.rdoc",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"ffi-uuid.gemspec",
|
27
|
+
"lib/ffi-uuid.rb",
|
28
|
+
"lib/ffi/ffi_uuid_impl.rb",
|
29
|
+
"test/helper.rb",
|
30
|
+
"test/test_ffi_uuid.rb"
|
31
|
+
]
|
32
|
+
s.homepage = %q{http://github.com/mmullis/ffi-uuid}
|
33
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
34
|
+
s.require_paths = ["lib"]
|
35
|
+
s.rubygems_version = %q{1.3.7}
|
36
|
+
s.summary = %q{FFI Wrapper for libuuidm}
|
37
|
+
s.test_files = [
|
38
|
+
"test/helper.rb",
|
39
|
+
"test/test_ffi_uuid.rb"
|
40
|
+
]
|
41
|
+
|
42
|
+
if s.respond_to? :specification_version then
|
43
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
44
|
+
s.specification_version = 3
|
45
|
+
|
46
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
47
|
+
s.add_runtime_dependency(%q<ffi>, [">= 0.6.3"])
|
48
|
+
else
|
49
|
+
s.add_dependency(%q<ffi>, [">= 0.6.3"])
|
50
|
+
end
|
51
|
+
else
|
52
|
+
s.add_dependency(%q<ffi>, [">= 0.6.3"])
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
@@ -0,0 +1,91 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'ffi'
|
3
|
+
|
4
|
+
# uuid_generate_xxx take uuid_t which is a 16 byte unsigned char
|
5
|
+
# that is directly updated - treat like a bang! method
|
6
|
+
|
7
|
+
class FFI::UUID
|
8
|
+
extend FFI::Library
|
9
|
+
|
10
|
+
# load our custom C library and attach
|
11
|
+
# FFI functions to our Ruby runtime
|
12
|
+
# unfortunately, linux doesnt set libsuid.so
|
13
|
+
ffi_lib(["uuid", "libuuid", "libuuid.so", "libuuid.so.1"])
|
14
|
+
|
15
|
+
functions = [
|
16
|
+
# method # parameters # return
|
17
|
+
[:uuid_generate_random, [:pointer], :void],
|
18
|
+
[:uuid_generate_time, [:pointer], :void],
|
19
|
+
|
20
|
+
# these are not really necessary and havent' been tested
|
21
|
+
[:uuid_generate, [:pointer], :void],
|
22
|
+
#[:uuid_clear, [:string], :void],
|
23
|
+
#[:uuid_compare, [:string, :string], :int],
|
24
|
+
#[:uuid_copy, [:string, :string], :void],
|
25
|
+
|
26
|
+
#[:uuid_is_null, [:string], :bool],
|
27
|
+
|
28
|
+
# convertion formatted hex string to binary
|
29
|
+
[:uuid_parse, [:pointer, :pointer], :void],
|
30
|
+
|
31
|
+
# convert binary to formatted hex string
|
32
|
+
[:uuid_unparse, [:pointer, :pointer], :void],
|
33
|
+
[:uuid_unparse_lower, [:pointer, :pointer], :void],
|
34
|
+
[:uuid_unparse_upper, [:pointer, :pointer], :void],
|
35
|
+
]
|
36
|
+
|
37
|
+
functions.each do |func|
|
38
|
+
begin
|
39
|
+
attach_function(*func)
|
40
|
+
rescue Object => e
|
41
|
+
puts "Could not attach #{func}, #{e.message}"
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
def self.generate(algorithm=:random)
|
46
|
+
binary_uuid = " " * 16
|
47
|
+
formatted_result = " " * 36 # 32 hex chars + 4 dashes
|
48
|
+
case algorithm
|
49
|
+
when :time
|
50
|
+
FFI::UUID.uuid_generate_time(binary_uuid)
|
51
|
+
else
|
52
|
+
FFI::UUID.uuid_generate_random(binary_uuid)
|
53
|
+
end
|
54
|
+
##puts "BINARY_UUID #{binary_uuid.bytes.to_a.inspect}"
|
55
|
+
|
56
|
+
FFI::UUID.uuid_unparse(binary_uuid, formatted_result)
|
57
|
+
formatted_result # manual/slower/ruby way .unpack("H*")[0]
|
58
|
+
end
|
59
|
+
|
60
|
+
def self.generate_random
|
61
|
+
generate(:random)
|
62
|
+
end
|
63
|
+
|
64
|
+
def self.generate_time
|
65
|
+
generate(:time)
|
66
|
+
end
|
67
|
+
|
68
|
+
def self.unparse(binary_uuid)
|
69
|
+
raise "UUID unparsed required non-nil input" if binary_uuid.nil? || binary_uuid.empty?
|
70
|
+
formatted_uuid = " " * 36
|
71
|
+
FFI::UUID.uuid_unparse(binary_uuid, formatted_uuid)
|
72
|
+
formatted_uuid
|
73
|
+
end
|
74
|
+
|
75
|
+
# get a set of uuids - useful for server/backend apps that need a lot
|
76
|
+
# defaults to the :random algorightm
|
77
|
+
# algorithm=:time will switch to the less desirable/secure time based method
|
78
|
+
def self.get_uuids(num=1, algorithm=:random)
|
79
|
+
uuids = Array.new(num) # preallocate to avoid expansion
|
80
|
+
num.times { |i|
|
81
|
+
result = case algorithm
|
82
|
+
when :time
|
83
|
+
generate_time
|
84
|
+
else
|
85
|
+
generate_random
|
86
|
+
end
|
87
|
+
uuids[i-1] = result
|
88
|
+
}
|
89
|
+
uuids
|
90
|
+
end
|
91
|
+
end
|
data/lib/ffi-uuid.rb
ADDED
data/test/helper.rb
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
require 'helper'
|
2
|
+
|
3
|
+
class TestFfiUuid < Test::Unit::TestCase
|
4
|
+
def test_parse_unparse
|
5
|
+
binary_uuid = " " * 16
|
6
|
+
FFI::UUID.uuid_generate_random(binary_uuid)
|
7
|
+
#puts "binary_uuid: #{binary_uuid.inspect}"
|
8
|
+
unparsed_uuid = " " * 36 # 32 hex chars plus 4 dashes
|
9
|
+
FFI::UUID.uuid_unparse(binary_uuid, unparsed_uuid) # unparsed is the formatted hex string
|
10
|
+
#puts "unparsed_uuid: #{unparsed_uuid.inspect}"
|
11
|
+
parsed_uuid = ' ' * 16
|
12
|
+
FFI::UUID.uuid_parse(unparsed_uuid, parsed_uuid) # parsed is the binary version
|
13
|
+
#puts "parsed_uuid: #{parsed_uuid.inspect}"
|
14
|
+
assert_equal( binary_uuid, parsed_uuid)
|
15
|
+
end
|
16
|
+
|
17
|
+
def test_get_uuid
|
18
|
+
unparsed = nil
|
19
|
+
sample_uuid = nil
|
20
|
+
num_uuids = 100000
|
21
|
+
1.times {
|
22
|
+
sample_uuid = FFI::UUID.get_uuids(num_uuids)
|
23
|
+
assert sample_uuid.length == num_uuids
|
24
|
+
assert sample_uuid.is_a?(Array)
|
25
|
+
assert_equal(36, sample_uuid[0].length)
|
26
|
+
|
27
|
+
unparsed = FFI::UUID.unparse(sample_uuid[0])
|
28
|
+
|
29
|
+
assert_equal( 36, unparsed.length)
|
30
|
+
assert_equal(unparsed.split(/\-/).length, 5)
|
31
|
+
}
|
32
|
+
end
|
33
|
+
end
|
metadata
ADDED
@@ -0,0 +1,94 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ffi-uuid
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 31
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
- 2
|
10
|
+
version: 0.1.2
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Michael Mullis
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2010-10-04 00:00:00 -04:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: ffi
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 1
|
30
|
+
segments:
|
31
|
+
- 0
|
32
|
+
- 6
|
33
|
+
- 3
|
34
|
+
version: 0.6.3
|
35
|
+
type: :runtime
|
36
|
+
version_requirements: *id001
|
37
|
+
description: FFI Wrapper for libuuid with extra helpers for common UUID tasks like getting an array of uuids for quicker distribution
|
38
|
+
email: michael@mullistechnologies.com
|
39
|
+
executables: []
|
40
|
+
|
41
|
+
extensions: []
|
42
|
+
|
43
|
+
extra_rdoc_files:
|
44
|
+
- LICENSE
|
45
|
+
- README.rdoc
|
46
|
+
files:
|
47
|
+
- .document
|
48
|
+
- .gitignore
|
49
|
+
- LICENSE
|
50
|
+
- README.rdoc
|
51
|
+
- Rakefile
|
52
|
+
- VERSION
|
53
|
+
- ffi-uuid.gemspec
|
54
|
+
- lib/ffi-uuid.rb
|
55
|
+
- lib/ffi/ffi_uuid_impl.rb
|
56
|
+
- test/helper.rb
|
57
|
+
- test/test_ffi_uuid.rb
|
58
|
+
has_rdoc: true
|
59
|
+
homepage: http://github.com/mmullis/ffi-uuid
|
60
|
+
licenses: []
|
61
|
+
|
62
|
+
post_install_message:
|
63
|
+
rdoc_options:
|
64
|
+
- --charset=UTF-8
|
65
|
+
require_paths:
|
66
|
+
- lib
|
67
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
68
|
+
none: false
|
69
|
+
requirements:
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
hash: 3
|
73
|
+
segments:
|
74
|
+
- 0
|
75
|
+
version: "0"
|
76
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
77
|
+
none: false
|
78
|
+
requirements:
|
79
|
+
- - ">="
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
hash: 3
|
82
|
+
segments:
|
83
|
+
- 0
|
84
|
+
version: "0"
|
85
|
+
requirements: []
|
86
|
+
|
87
|
+
rubyforge_project:
|
88
|
+
rubygems_version: 1.3.7
|
89
|
+
signing_key:
|
90
|
+
specification_version: 3
|
91
|
+
summary: FFI Wrapper for libuuidm
|
92
|
+
test_files:
|
93
|
+
- test/helper.rb
|
94
|
+
- test/test_ffi_uuid.rb
|