Skip to content

Instantly share code, notes, and snippets.

@ShogunPanda
Forked from masatomo/sequence.rb
Created July 16, 2011 11:15
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ShogunPanda/1086265 to your computer and use it in GitHub Desktop.
Save ShogunPanda/1086265 to your computer and use it in GitHub Desktop.
adds a feature to set sequence number to Mongoid::Document
# encoding: utf-8
module Mongoid
# Include this module to add automatic sequence feature (also works for _id field, so SQL-Like autoincrement primary key can easily be simulated)
# usage:
# class KlassName
# include Mongoid::Document
# include Mongoid::Sequence
# ...
# field :number, :type=>Integer
# sequence :number
# ...
module Sequence
extend ActiveSupport::Concern
module ClassMethods
def sequence(_field)
# REPLACE FIELD DEFAULT VALUE
_field = _field.to_s
field(_field, fields[_field].options.merge(:default => lambda{ self.class.set_from_sequence(_field)}))
end
def set_from_sequence(_field)
sequences = self.db.collection("__sequences")
counter_id = "#{self.class.name.underscore}_#{_field}"
# Increase the sequence value and also avoids conflicts
catch(:value) do
value = nil
begin
value = sequences.find_and_modify(
:query => {"_id" => counter_id},
:update=> {"$inc" => {"value" => 1}},
:new => true,
:upsert => true
).send("[]", "value")
end while self.first({:conditions => {_field => value}})
throw :value, value
end
end
def reset_sequence(_field)
sequences = self.db.collection("__sequences")
counter_id = "#{self.class.name.underscore}_#{_field}"
sequences.find_and_modify(:query => {"_id" => counter_id}, :update=> {"$set" => {"value" => 0}}, :new => true, :upsert => true)
end
end
end
end
@goncalossilva
Copy link

@paulsfds I believe that's the default behavior when you field :my_id, :type => Integer... the sequencing code doesn't play with any of that. Please open an issue with this if you think it's something else :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment