snowflake-rb 0.0.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: bc408493b09d80952d5cbb548fb5778ea11c2615
4
+ data.tar.gz: 1159a9802de085f3052c43d638c2542280a0676c
5
+ SHA512:
6
+ metadata.gz: a1c88d0037a75465237cc84eef639a98cfeeac5583729606938da37cd3b13f7a7f3c174bc9efeb6d67e75590952b10cd9199dc6183a4abbd36b0e6cce604336c
7
+ data.tar.gz: 679fc3102aa8e36402c2785e1f0093986273863668990564eb4e6302310e07623b7f816f2e5e94b1267b2d2b9f45358523890dd345773ae09063d61d7a84e98a
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ /.byebug_history
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/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in snowflake-rb.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 villins
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,45 @@
1
+ # Snowflake::Rb
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/snowflake/rb`. 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 'snowflake-rb', git: "git@github.com:villins/snowflake-rb.git"
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ ## Usage
20
+
21
+ ```ruby
22
+ require 'snowflake-rb'
23
+
24
+ sf = Snowflake::Rb.snowflake(1, 1)
25
+
26
+ sf.next_id
27
+ # or
28
+ sf.next
29
+ ```
30
+
31
+ ## Development
32
+
33
+ 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.
34
+
35
+ 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).
36
+
37
+ ## Contributing
38
+
39
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/snowflake-rb.
40
+
41
+
42
+ ## License
43
+
44
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
45
+
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 => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "snowflake-rb"
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,19 @@
1
+ require 'bundler/setup'
2
+ Bundler.setup
3
+
4
+ require 'snowflake-rb'
5
+
6
+ def timestamp
7
+ Time.now.to_f * 1000
8
+ end
9
+
10
+ sf = Snowflake::Rb.snowflake(1, 1)
11
+
12
+ n = 0
13
+ start = timestamp
14
+ while((timestamp - start) < 1)
15
+ puts sf.next
16
+ n = n + 1
17
+ end
18
+
19
+ puts n
@@ -0,0 +1,9 @@
1
+ require 'snowflake-rb/snowflake'
2
+
3
+ module Snowflake
4
+ module Rb
5
+ def self.snowflake(worker_id, region_id)
6
+ Snowflake.new(worker_id, region_id)
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,93 @@
1
+ require 'monitor'
2
+
3
+ module Snowflake
4
+ module Rb
5
+ class Snowflake
6
+ attr_accessor :worker_id, :region_id, :lock, :last_timestamp, :sequence
7
+
8
+ class WorkerIdOutRangeError < StandardError; end
9
+ class RegionIdOutRangeError < StandardError; end
10
+ class TimeMoveBackWardError < StandardError; end
11
+
12
+ # 基准时间
13
+ TWEPOCH = 1462525962386
14
+ # 区域标志位数
15
+ REGION_ID_BITS = 3
16
+ # 机器标识位数
17
+ WORKER_ID_BITS = 10
18
+ # 序列号识位数
19
+ SEQUENCE_BITS = 10
20
+ # 区域id最大值
21
+ MAX_REGION_ID = -1 ^ (-1 << REGION_ID_BITS)
22
+ # 机器id最大值
23
+ MAX_WORKDER_ID = -1 ^ (-1 << WORKER_ID_BITS)
24
+ #序列号ID最大值
25
+ SEQUENCE_MASK = -1 ^ (-1 << SEQUENCE_BITS)
26
+ # 机器id偏左移10位
27
+ WORKDER_ID_LEFT_SHIFT = SEQUENCE_BITS
28
+ # 业务ID偏左移20位
29
+ REGION_ID_LEFT_SHIFT = SEQUENCE_BITS + WORKER_ID_BITS
30
+ # 时间毫秒左移23位
31
+ TIMESTAMP_LEFT_SHIFT = SEQUENCE_BITS + WORKER_ID_BITS + REGION_ID_BITS
32
+
33
+ def initialize(worker_id, region_id)
34
+ @worker_id = worker_id
35
+ @region_id = region_id
36
+ @lock = Monitor.new
37
+ @last_timestamp = 0
38
+ @sequence = 0
39
+ valid_range
40
+ end
41
+
42
+ def next_id
43
+ lock.synchronize do
44
+ timestamp = get_timestamp
45
+
46
+ if timestamp < last_timestamp
47
+ diff_milliseconds = last_timestamp - timestamp
48
+ raise TimeMoveBackWardError.new("Refusing to generate id for #{ diff_milliseconds } milliseconds")
49
+ end
50
+
51
+ if timestamp == last_timestamp
52
+ @sequence = (sequence + 1) & SEQUENCE_MASK
53
+
54
+ if sequence == 0
55
+ timestamp = tail_next_timestamp(last_timestamp)
56
+ end
57
+ else
58
+ @sequence = rand(10)
59
+ end
60
+
61
+ @last_timestamp = timestamp
62
+
63
+ return ((timestamp - TWEPOCH) << TIMESTAMP_LEFT_SHIFT) | (region_id << REGION_ID_LEFT_SHIFT) | (worker_id << WORKDER_ID_LEFT_SHIFT) | sequence
64
+ end
65
+ end
66
+ alias next next_id
67
+
68
+ def tail_next_timestamp(last_timestamp)
69
+ timestamp = get_timestamp
70
+
71
+ while (timestamp <= last_timestamp)
72
+ timestamp = get_timestamp
73
+ end
74
+
75
+ return timestamp
76
+ end
77
+
78
+ def get_timestamp
79
+ (Time.now.to_f * 1000).to_i
80
+ end
81
+
82
+ def valid_range
83
+ if worker_id < 0 || worker_id > MAX_WORKDER_ID
84
+ raise WorkerIdOutRangeError.new
85
+ end
86
+
87
+ if region_id < 0 || region_id > MAX_REGION_ID
88
+ raise RegionIdOutRangeError.new
89
+ end
90
+ end
91
+ end
92
+ end
93
+ end
@@ -0,0 +1,5 @@
1
+ module Snowflake
2
+ module Rb
3
+ VERSION = "0.0.2"
4
+ end
5
+ end
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'snowflake-rb/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "snowflake-rb"
8
+ spec.version = Snowflake::Rb::VERSION
9
+ spec.authors = ["villins"]
10
+ spec.email = ["linshao512@gmail.com"]
11
+
12
+ spec.summary = %q{ snowflake ruby impl }
13
+ spec.description = %q{ snowflake ruby impl }
14
+ spec.homepage = "https://github.com/villins/snowflake-rb"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_development_dependency "bundler", "~> 1.11"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ spec.add_development_dependency "minitest", "~> 5.0"
25
+ spec.add_development_dependency "pry", "~> 0.10"
26
+ spec.add_development_dependency "byebug", "~> 9.0"
27
+ end
metadata ADDED
@@ -0,0 +1,127 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: snowflake-rb
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - villins
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-05-17 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.11'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.11'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '5.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '5.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: pry
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '0.10'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0.10'
69
+ - !ruby/object:Gem::Dependency
70
+ name: byebug
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '9.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '9.0'
83
+ description: " snowflake ruby impl "
84
+ email:
85
+ - linshao512@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - ".travis.yml"
92
+ - Gemfile
93
+ - LICENSE.txt
94
+ - README.md
95
+ - Rakefile
96
+ - bin/console
97
+ - bin/setup
98
+ - exeample/example.rb
99
+ - lib/snowflake-rb.rb
100
+ - lib/snowflake-rb/snowflake.rb
101
+ - lib/snowflake-rb/version.rb
102
+ - snowflake-rb.gemspec
103
+ homepage: https://github.com/villins/snowflake-rb
104
+ licenses:
105
+ - MIT
106
+ metadata: {}
107
+ post_install_message:
108
+ rdoc_options: []
109
+ require_paths:
110
+ - lib
111
+ required_ruby_version: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - ">="
114
+ - !ruby/object:Gem::Version
115
+ version: '0'
116
+ required_rubygems_version: !ruby/object:Gem::Requirement
117
+ requirements:
118
+ - - ">="
119
+ - !ruby/object:Gem::Version
120
+ version: '0'
121
+ requirements: []
122
+ rubyforge_project:
123
+ rubygems_version: 2.6.10
124
+ signing_key:
125
+ specification_version: 4
126
+ summary: snowflake ruby impl
127
+ test_files: []