forked from bytebin/deepworld-gameserver
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcriteria.rb
124 lines (98 loc) · 2.52 KB
/
criteria.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
class Criteria
attr_reader :selector, :options
def initialize(model_class)
@model_class = model_class
@selector = {}
@options = {callbacks: true}
end
def all(&block)
@model_class.find(@selector.dup, @options.dup, &block)
end
alias find all
def first(&block)
@model_class.find_one(@selector.dup, @options.dup, &block)
end
alias find_one first
def random(amount = 1, &block)
# Get the count
cursor = @model_class.collection.find(@selector)
cursor.count.callback do |c|
exausted = false
ids = []
test = Proc.new do
exausted || ids.length >= amount
end
function = Proc.new do |callback|
skip = (rand * (c - ids.count)).to_i
# Query, skipping collected IDs
@model_class.collection.find_one(@selector.merge(_id: {'$nin' => ids}), skip: skip, fields: ['_id']).callback do |document|
if document
ids << document['_id']
else
exausted = true
end
callback.call
end
end
Funky.until(test, function) do
self.where(_id: { '$in' => ids}).all do |docs|
yield docs
end
end
end
end
def randomlight(amount = 1, &block)
base_options = @options.dup
fields(:_id).limit(@options[:limit] || 100).all do |docs|
randoms = docs.random(amount).map(&:id)
if randoms.present?
@model_class.where(_id: { '$in' => randoms }).fields(base_options[:fields]).callbacks(base_options[:callbacks]).all do |random_docs|
yield random_docs
end
else
yield []
end
end
end
def each(&block)
@model_class.each(@selector, @options, &block)
end
def error!(msg, err=nil)
err ? raise(err, msg) : raise(msg)
end
#####################
# Builders
#####################
def where(selector)
@selector.merge!(selector)
self
end
def or(selectors)
self.where({ '$or' => selectors })
self
end
def fields(*fields)
@options[:fields] = fields.flatten.map{|f| f.downcase.to_sym}
self
end
def skip(amount)
@options[:skip] = amount
self
end
def limit(amount)
@options[:limit] = amount
self
end
# Field to sort on, 1 for asc -1 for desc
def sort(field, asc_desc=1)
@options[:sort] = (@options[:sort] || []) + [field.downcase.to_sym, asc_desc == 1 ? :asc : :desc]
self
end
def callbacks(enabled)
@options[:callbacks] = enabled
self
end
def to_s
{selector: @selector, options: @options}
end
end