k_ordered_flake 0.2.0

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
+ SHA1:
3
+ metadata.gz: 4c32ca1c257d6089baebf97e5ac59566a366ea86
4
+ data.tar.gz: 5b771f6e237843d12f47f4cbb127bd1e19b0cc9f
5
+ SHA512:
6
+ metadata.gz: 59cde81626ca61550a23e3c2bae13c4b6a622a42321caeaa7f60f09627bb4ebc34e6f88b9082ab06e41e234e683cc3bc4afaa1859ac446913e65bc4bce3db8e8
7
+ data.tar.gz: 8c8ac2e057d80eff5a82b4e04ee5ab666b93fb2f7cfc81ffcf6125a25c24820b10f44bfea0043bc8446e7e75092df7235b4d67ca814da914fdb5787f3b0f01c0
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.3.0
4
+ before_install: gem install bundler -v 1.11.2
data/Dockerfile ADDED
@@ -0,0 +1,17 @@
1
+ FROM ruby:latest
2
+
3
+ RUN apt-get update -qq && apt-get upgrade -y && apt-get install -y build-essential libpq-dev
4
+ RUN apt-get install -y nodejs less vim aptitude
5
+
6
+ ENV APP_HOME /k_ordered_flake
7
+ ENV PORT 3000
8
+
9
+ RUN mkdir $APP_HOME
10
+
11
+ WORKDIR $APP_HOME
12
+
13
+ ADD . $APP_HOME/
14
+
15
+ RUN bundle install
16
+
17
+ EXPOSE $PORT
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in k_ordered_flake.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 TODO: Write your name
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all 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
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,41 @@
1
+ # KOrderedFlake
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/k_ordered_flake`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'k_ordered_flake'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install k_ordered_flake
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ 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 [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/k_ordered_flake.
36
+
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
41
+
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList['test/**/*_test.rb']
8
+ end
9
+
10
+ task :default => :test
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "k_ordered_flake"
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
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,34 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'k_ordered_flake/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "k_ordered_flake"
8
+ spec.version = KOrderedFlake::VERSION
9
+ spec.authors = ["R.J. Osborne"]
10
+ spec.email = ["rjo1970@gmail.com"]
11
+
12
+ spec.summary = %q{A K-Ordered snowflake implementation}
13
+ spec.description = %q{K-Ordered values are alphabetically sortable by human-observable time, yet requires no server coordination}
14
+ spec.homepage = "https://github.com/rjo1970/k_ordered_flake"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
18
+ # delete this section to allow pushing this gem to any host.
19
+ # if spec.respond_to?(:metadata)
20
+ # spec.metadata['allowed_push_host'] = "RubyGems.org"
21
+ # else
22
+ # raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
23
+ # end
24
+
25
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
26
+ spec.bindir = "exe"
27
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ["lib"]
29
+ spec.add_dependency "concurrent-ruby", "~> 1.0.1"
30
+ spec.add_dependency "macaddr", '~> 1.7', '>= 1.7.1'
31
+ spec.add_development_dependency "bundler", "~> 1.11"
32
+ spec.add_development_dependency "rake", "~> 10.0"
33
+ spec.add_development_dependency "minitest", "~> 5.0"
34
+ end
@@ -0,0 +1,63 @@
1
+ require "concurrent"
2
+ require "k_ordered_flake/version"
3
+ require "k_ordered_flake/exceptions"
4
+ require "date"
5
+ require "macaddr"
6
+ require "digest"
7
+
8
+ module KOrderedFlake
9
+
10
+ def self.epoc
11
+ DateTime.now.strftime('%Q').to_i
12
+ end
13
+
14
+ def self.identity
15
+ mac = Mac.address.split(':').join('')
16
+ code = Digest::SHA1.hexdigest(mac)[28..-1]
17
+ code.to_i(16)
18
+ end
19
+
20
+ STATE = Concurrent::Atom.new({
21
+ time: self.epoc,
22
+ identity: self.identity,
23
+ counter: 0 })
24
+
25
+ DIGITS = ('0'..'9').to_a + ('A'..'Z').to_a + ('a'..'z').to_a
26
+
27
+ def self.to_base_62(x)
28
+ result = []
29
+ while x > 61
30
+ y = x % 62
31
+ x /= 62
32
+ result.unshift self::DIGITS[y]
33
+ end
34
+ result.unshift self::DIGITS[x]
35
+ result.join ""
36
+ end
37
+
38
+ def self.clock(state, time)
39
+ s = state.clone
40
+ if (time == s[:time])
41
+ s[:counter] = (s[:counter] + 1) % 65536
42
+ raise KOrderedFlake::CounterOverflowException.new("Too many increments per millisecond") if s[:counter] == 0
43
+ elsif time > s[:time]
44
+ s[:counter] = 0
45
+ s[:time] = time
46
+ else
47
+ raise KOrderedFlake::TimeDiscontinuityException.new("Time may not run backwards #{state[:time]} > #{time}")
48
+ end
49
+ s
50
+ end
51
+
52
+ def self.encode(state)
53
+ x = (state[:time] << 64) + (state[:identity] << 16) + state[:counter]
54
+ self.to_base_62(x)
55
+ end
56
+
57
+ def self.flake
58
+ t = self.epoc
59
+ sample = self::STATE.swap(t) { |s, t| self.clock(s, t) }
60
+ self.encode(sample)
61
+ end
62
+
63
+ end
@@ -0,0 +1,7 @@
1
+ module KOrderedFlake
2
+ class TimeDiscontinuityException < StandardError
3
+ end
4
+
5
+ class CounterOverflowException < StandardError
6
+ end
7
+ end
@@ -0,0 +1,3 @@
1
+ module KOrderedFlake
2
+ VERSION = "0.2.0"
3
+ end
metadata ADDED
@@ -0,0 +1,134 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: k_ordered_flake
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - R.J. Osborne
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-04-15 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: concurrent-ruby
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 1.0.1
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.1
27
+ - !ruby/object:Gem::Dependency
28
+ name: macaddr
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.7'
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: 1.7.1
37
+ type: :runtime
38
+ prerelease: false
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - "~>"
42
+ - !ruby/object:Gem::Version
43
+ version: '1.7'
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: 1.7.1
47
+ - !ruby/object:Gem::Dependency
48
+ name: bundler
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '1.11'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '1.11'
61
+ - !ruby/object:Gem::Dependency
62
+ name: rake
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '10.0'
68
+ type: :development
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: '10.0'
75
+ - !ruby/object:Gem::Dependency
76
+ name: minitest
77
+ requirement: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - "~>"
80
+ - !ruby/object:Gem::Version
81
+ version: '5.0'
82
+ type: :development
83
+ prerelease: false
84
+ version_requirements: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - "~>"
87
+ - !ruby/object:Gem::Version
88
+ version: '5.0'
89
+ description: K-Ordered values are alphabetically sortable by human-observable time,
90
+ yet requires no server coordination
91
+ email:
92
+ - rjo1970@gmail.com
93
+ executables: []
94
+ extensions: []
95
+ extra_rdoc_files: []
96
+ files:
97
+ - ".gitignore"
98
+ - ".travis.yml"
99
+ - Dockerfile
100
+ - Gemfile
101
+ - LICENSE.txt
102
+ - README.md
103
+ - Rakefile
104
+ - bin/console
105
+ - bin/setup
106
+ - k_ordered_flake.gemspec
107
+ - lib/k_ordered_flake.rb
108
+ - lib/k_ordered_flake/exceptions.rb
109
+ - lib/k_ordered_flake/version.rb
110
+ homepage: https://github.com/rjo1970/k_ordered_flake
111
+ licenses:
112
+ - MIT
113
+ metadata: {}
114
+ post_install_message:
115
+ rdoc_options: []
116
+ require_paths:
117
+ - lib
118
+ required_ruby_version: !ruby/object:Gem::Requirement
119
+ requirements:
120
+ - - ">="
121
+ - !ruby/object:Gem::Version
122
+ version: '0'
123
+ required_rubygems_version: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - ">="
126
+ - !ruby/object:Gem::Version
127
+ version: '0'
128
+ requirements: []
129
+ rubyforge_project:
130
+ rubygems_version: 2.4.5.1
131
+ signing_key:
132
+ specification_version: 4
133
+ summary: A K-Ordered snowflake implementation
134
+ test_files: []