couchbase-structures 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in couchbase_structures.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 Jasdeep Jaitla
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # CouchbaseStructures
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'couchbase_structures'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install couchbase_structures
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Added some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
@@ -0,0 +1,24 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/couchbase_structures/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+
6
+ gem.name = "couchbase-structures"
7
+ gem.require_paths = ["lib"]
8
+ gem.version = CouchbaseStructures::VERSION
9
+
10
+ gem.authors = ["Jasdeep Jaitla"]
11
+ gem.email = ["jasdeep@scalabl3.com"]
12
+ gem.description = %q{Stack, Queue and SortedList structures implemented in Couchbase}
13
+ gem.summary = %q{A convenient implementation of stacks, queues and sorted lists using Couchbase KV patterns.}
14
+ gem.homepage = "https://github.com/scalabl3/couchbase-structures"
15
+
16
+ gem.add_dependency('couchbase-docstore', '>= 0.1.2')
17
+ gem.add_dependency('couchbase-settings', '>= 0.1.0')
18
+ gem.add_dependency('couchbase', '>= 1.2.0.z.beta3')
19
+
20
+ gem.files = `git ls-files`.split($\)
21
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
22
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
23
+
24
+ end
@@ -0,0 +1,35 @@
1
+ require 'document_store'
2
+
3
+ module CouchbaseStructures
4
+ class Queue
5
+ include DocumentStore
6
+
7
+ def initialize(key)
8
+ @key = key
9
+ @head_index_key = "#{key}::queue::head"
10
+ @tail_index_key = "#{key}::queue::tail"
11
+ self
12
+ end
13
+
14
+ def enqueue(value)
15
+ new_tail_index = increase_atomic_count(@tail_index_key)
16
+ create_document("#{key}::queue::#{new_tail_index}", value)
17
+ self
18
+ end
19
+
20
+ def pop()
21
+ head_index = get_document(@head_index_key)
22
+ tail_index = get_document(@tail_index_key)
23
+ if tail_index > head_index
24
+ increase_atomic_count(@head_index_key)
25
+ get_document("#{key}::queue::#{head_index}")
26
+ else
27
+ nil
28
+ end
29
+ end
30
+
31
+ def size()
32
+ get_document(@tail_index_key) - get_document(@head_index_key)
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,34 @@
1
+ require 'document_store'
2
+
3
+ module CouchbaseStructures
4
+ class SortedList
5
+ include DocumentStore
6
+
7
+ def initialize(key, sort_type = {})
8
+
9
+ @key = key
10
+ @top_index_key = "#{key}::stack::top"
11
+ initialize_document(@top_index_key, 0)
12
+ self
13
+ end
14
+
15
+ def push(value)
16
+ new_top_index = increase_atomic_count(@top_index_key)
17
+ create_document("#{key}::stack::#{new_top_index}", value)
18
+ self
19
+ end
20
+
21
+ def pop()
22
+ old_top_index = get_document(@top_index_key)
23
+ decrease_atomic_count(@top_index_key)
24
+
25
+ doc = get_document("#{key}::stack::#{old_top_index}")
26
+ delete_document("#{key}::stack::#{old_top_index}")
27
+ doc
28
+ end
29
+
30
+ def size
31
+ get_document(@top_index_key)
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,33 @@
1
+ require 'document_store'
2
+
3
+ module CouchbaseStructures
4
+ class Stack
5
+ include DocumentStore
6
+
7
+ def initialize(key)
8
+ @key = key
9
+ @top_index_key = "#{key}::stack::top"
10
+ initialize_document(@top_index_key, 0)
11
+ self
12
+ end
13
+
14
+ def push(value)
15
+ new_top_index = increase_atomic_count(@top_index_key)
16
+ create_document("#{key}::stack::#{new_top_index}", value)
17
+ self
18
+ end
19
+
20
+ def pop()
21
+ old_top_index = get_document(@top_index_key)
22
+ decrease_atomic_count(@top_index_key)
23
+
24
+ doc = get_document("#{key}::stack::#{old_top_index}")
25
+ delete_document("#{key}::stack::#{old_top_index}")
26
+ doc
27
+ end
28
+
29
+ def size
30
+ get_document(@top_index_key)
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,3 @@
1
+ module CouchbaseStructures
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,9 @@
1
+ require "couchbase_settings"
2
+ require "couchbase_doc_store"
3
+ require "couchbase_structures/queue"
4
+ require "couchbase_structures/stack"
5
+ require "couchbase_structures/sorted_list"
6
+ require "couchbase_structures/version"
7
+
8
+ module CouchbaseStructures
9
+ end
metadata ADDED
@@ -0,0 +1,105 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: couchbase-structures
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Jasdeep Jaitla
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-10-31 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: couchbase-docstore
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: 0.1.2
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: 0.1.2
30
+ - !ruby/object:Gem::Dependency
31
+ name: couchbase-settings
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: 0.1.0
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: 0.1.0
46
+ - !ruby/object:Gem::Dependency
47
+ name: couchbase
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: 1.2.0.z.beta3
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: 1.2.0.z.beta3
62
+ description: Stack, Queue and SortedList structures implemented in Couchbase
63
+ email:
64
+ - jasdeep@scalabl3.com
65
+ executables: []
66
+ extensions: []
67
+ extra_rdoc_files: []
68
+ files:
69
+ - .gitignore
70
+ - Gemfile
71
+ - LICENSE
72
+ - README.md
73
+ - Rakefile
74
+ - couchbase_structures.gemspec
75
+ - lib/couchbase_structures.rb
76
+ - lib/couchbase_structures/queue.rb
77
+ - lib/couchbase_structures/sorted_list.rb
78
+ - lib/couchbase_structures/stack.rb
79
+ - lib/couchbase_structures/version.rb
80
+ homepage: https://github.com/scalabl3/couchbase-structures
81
+ licenses: []
82
+ post_install_message:
83
+ rdoc_options: []
84
+ require_paths:
85
+ - lib
86
+ required_ruby_version: !ruby/object:Gem::Requirement
87
+ none: false
88
+ requirements:
89
+ - - ! '>='
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ required_rubygems_version: !ruby/object:Gem::Requirement
93
+ none: false
94
+ requirements:
95
+ - - ! '>='
96
+ - !ruby/object:Gem::Version
97
+ version: '0'
98
+ requirements: []
99
+ rubyforge_project:
100
+ rubygems_version: 1.8.24
101
+ signing_key:
102
+ specification_version: 3
103
+ summary: A convenient implementation of stacks, queues and sorted lists using Couchbase
104
+ KV patterns.
105
+ test_files: []