-
Notifications
You must be signed in to change notification settings - Fork 37
/
sumo_store.erl
465 lines (404 loc) · 15.4 KB
/
sumo_store.erl
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
%%% @doc Main interface for stores.
%%%
%%% Copyright 2012 Inaka <hello@inaka.net>
%%%
%%% Licensed under the Apache License, Version 2.0 (the "License");
%%% you may not use this file except in compliance with the License.
%%% You may obtain a copy of the License at
%%%
%%% http://www.apache.org/licenses/LICENSE-2.0
%%%
%%% Unless required by applicable law or agreed to in writing, software
%%% distributed under the License is distributed on an "AS IS" BASIS,
%%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
%%% See the License for the specific language governing permissions and
%%% limitations under the License.
%%% @end
%%% @copyright Inaka <hello@inaka.net>
%%%
-module(sumo_store).
-author("Marcelo Gornstein <marcelog@gmail.com>").
-github("https://github.com/inaka").
-license("Apache License 2.0").
-behaviour(gen_server).
%%% Public API.
-export([
start_link/3,
create_schema/2,
persist/2,
fetch/3,
delete_by/3,
delete_all/2,
find_all/2,
find_all/5,
find_by/3,
find_by/5,
find_by/6,
count/2,
count_by/3,
call/4
]).
%%% gen_server callbacks
-export([
init/1,
handle_call/3,
handle_cast/2,
handle_info/2,
terminate/2,
code_change/3
]).
%%%=============================================================================
%%% Types
%%%=============================================================================
-record(state, {
handler = undefined :: module(),
handler_state = undefined :: any()
}).
-type result(R, S) :: {ok, R, S} | {error, term(), S}.
-type result(S) :: {ok, S} | {error, term(), S}.
-type affected_rows() :: unknown | non_neg_integer().
-export_type([result/2, result/1, affected_rows/0]).
%%%=============================================================================
%%% gen_server callbacks
%%%=============================================================================
-callback init(term()) -> {ok, term()}.
-callback handle_info(Info, State) -> Res when
Info :: term(),
State :: term(),
Res :: {noreply, State}
| {noreply, State, timeout()}
| {noreply, State, hibernate}
| {stop, Reason :: term(), State}.
-callback terminate(Reason, State) -> ok when
Reason :: normal | shutdown | {shutdown, term()} | term(),
State :: term().
%%%=============================================================================
%%% API callbacks
%%%=============================================================================
-callback create_schema(Schema, State) -> Res when
Schema :: sumo:schema(),
Res :: result(State).
-callback persist(Doc, State) -> Res when
Doc :: sumo_internal:doc(),
Res :: result(sumo_internal:doc(), State).
-callback fetch(Schema, Id, State) -> Res when
Schema :: sumo:schema_name(),
Id :: sumo:field_value(),
Res :: result(sumo_internal:doc(), State).
-callback delete_by(Schema, Conditions, State) -> Res when
Schema :: sumo:schema_name(),
Conditions :: sumo:conditions(),
Res :: result(affected_rows(), State).
-callback delete_all(Schema, State) -> Res when
Schema :: sumo:schema_name(),
Res :: result(affected_rows(), State).
-callback find_by(Schema, Conditions, State) -> Res when
Schema :: sumo:schema_name(),
Conditions :: sumo:conditions(),
Res :: result([sumo_internal:doc()], State).
-callback find_by(Schema, Conditions, Limit, Offset, State) -> Res when
Schema :: sumo:schema_name(),
Conditions :: sumo:conditions(),
Limit :: non_neg_integer(),
Offset :: non_neg_integer(),
Res :: result([sumo_internal:doc()], State).
-callback find_by(Schema, Conditions, Sort, Limit, Offset, State) -> Res when
Schema :: sumo:schema_name(),
Conditions :: sumo:conditions(),
Sort :: sumo:sort(),
Limit :: non_neg_integer(),
Offset :: non_neg_integer(),
Res :: result([sumo_internal:doc()], State).
-callback find_all(Schema, State) -> Res when
Schema :: sumo:schema_name(),
Res :: result([sumo_internal:doc()], State).
-callback find_all(Schema, Sort, Limit, Offset, State) -> Res when
Schema :: sumo:schema_name(),
Sort :: sumo:sort(),
Limit :: non_neg_integer(),
Offset :: non_neg_integer(),
Res :: result([sumo_internal:doc()], State).
-callback count(Schema, State) -> Res when
Schema :: sumo:schema_name(),
Res :: result(non_neg_integer(), State).
-callback count_by(Schema, Conditions, State) -> Res when
Schema :: sumo:schema_name(),
Conditions :: sumo:conditions(),
Res :: result(non_neg_integer(), State).
-optional_callbacks([handle_info/2, terminate/2]).
%%%=============================================================================
%%% API
%%%=============================================================================
%% @doc Starts and links a new process for the given store implementation.
-spec start_link(atom(), module(), [term()]) -> {ok, pid()}.
start_link(Name, Module, Options) ->
PoolSize = sumo_utils:keyfind(workers, Options, 100),
WPoolConfigOpts = application:get_env(sumo_db, wpool_opts, []),
WPoolOptions = [
{overrun_warning, 5000},
{overrun_handler, {sumo_internal, report_overrun}},
{workers, PoolSize},
{worker, {?MODULE, [Module, Options]}}
],
wpool:start_pool(Name, lists:ukeysort(1, WPoolConfigOpts ++ WPoolOptions)).
%% @doc Creates the schema of the given docs in the given store name.
-spec create_schema(atom(), sumo:schema()) -> ok | {error, term()}.
create_schema(Name, Schema) ->
wpool:call(Name, {create_schema, Schema}).
%% @doc Persist the given doc with the given store name.
-spec persist(Name, Doc) -> Res when
Name :: atom(),
Doc :: sumo_internal:doc(),
Res :: {ok, sumo_internal:doc()} | {error, term()}.
persist(Name, Doc) ->
wpool:call(Name, {persist, Doc}).
%% @doc Fetch a single doc by its `Id'.
-spec fetch(Name, DocName, Id) -> Res when
Name :: atom(),
DocName :: sumo:schema_name(),
Id :: sumo:field_value(),
Res :: {ok, sumo_internal:doc()} | {error, term()}.
fetch(Name, DocName, Id) ->
wpool:call(Name, {fetch, DocName, Id}).
%% @doc Deletes the docs identified by the given conditions.
-spec delete_by(Name, DocName, Conditions) -> Res when
Name :: atom(),
DocName :: sumo:schema_name(),
Conditions :: sumo:conditions(),
Res :: {ok, non_neg_integer()} | {error, term()}.
delete_by(Name, DocName, Conditions) ->
wpool:call(Name, {delete_by, DocName, Conditions}).
%% @doc Deletes all docs in the given store name.
-spec delete_all(Name, DocName) -> Res when
Name :: atom(),
DocName :: sumo:schema_name(),
Res :: {ok, non_neg_integer()} | {error, term()}.
delete_all(Name, DocName) ->
wpool:call(Name, {delete_all, DocName}).
%% @doc Returns all docs from the given store name.
-spec find_all(Name, DocName) -> Res when
Name :: atom(),
DocName :: sumo:schema_name(),
Res :: {ok, [sumo_internal:doc()]} | {error, term()}.
find_all(Name, DocName) ->
wpool:call(Name, {find_all, DocName}).
%% @doc
%% Returns Limit docs starting at Offset from the given store name,
%% ordered by OrderField. OrderField may be 'undefined'.
%% @end
-spec find_all(Name, DocName, SortFields, Limit, Offset) -> Res when
Name :: atom(),
DocName :: sumo:schema_name(),
SortFields :: sumo:sort(),
Limit :: non_neg_integer(),
Offset :: non_neg_integer(),
Res :: {ok, [sumo_internal:doc()]} | {error, term()}.
find_all(Name, DocName, SortFields, Limit, Offset) ->
wpool:call(Name, {find_all, DocName, SortFields, Limit, Offset}).
%% @doc
%% Finds documents that match the given conditions in the given
%% store name.
%% @end
-spec find_by(Name, DocName, Conditions) -> Res when
Name :: atom(),
DocName :: sumo:schema_name(),
Conditions :: sumo:conditions(),
Res :: {ok, [sumo_internal:doc()]} | {error, term()}.
find_by(Name, DocName, Conditions) ->
wpool:call(Name, {find_by, DocName, Conditions}).
%% @doc
%% Finds documents that match the given conditions in the given
%% store name.
%% @end
-spec find_by(Name, DocName, Conditions, Limit, Offset) -> Res when
Name :: atom(),
DocName :: sumo:schema_name(),
Conditions :: sumo:conditions(),
Limit :: non_neg_integer(),
Offset :: non_neg_integer(),
Res :: {ok, [sumo_internal:doc()]} | {error, term()}.
find_by(Name, DocName, Conditions, Limit, Offset) ->
wpool:call(Name, {find_by, DocName, Conditions, Limit, Offset}).
%% @doc
%% Finds documents that match the given conditions in the given
%% store name.
%% @end
-spec find_by(Name, DocName, Conditions, SortFields, Limit, Offset) -> Res when
Name :: atom(),
DocName :: sumo:schema_name(),
Conditions :: sumo:conditions(),
SortFields :: sumo:sort(),
Limit :: non_neg_integer(),
Offset :: non_neg_integer(),
Res :: {ok, [sumo_internal:doc()]} | {error, term()}.
find_by(Name, DocName, Conditions, SortFields, Limit, Offset) ->
wpool:call(Name, {find_by, DocName, Conditions, SortFields, Limit, Offset}).
%% @doc Counts the total number of docs in the given schema name `DocName'.
-spec count(Name, DocName) -> Res when
Name :: atom(),
DocName :: sumo:schema_name(),
Res :: {ok, non_neg_integer()} | {error, term()}.
count(Name, DocName) ->
wpool:call(Name, {count, DocName}).
%% @doc Counts the total number of docs that match the given conditions.
-spec count_by(Name, DocName, Conditions) -> Res when
Name :: atom(),
DocName :: sumo:schema_name(),
Conditions :: sumo:conditions(),
Res :: {ok, non_neg_integer()} | {error, term()}.
count_by(Name, DocName, Conditions) ->
wpool:call(Name, {count_by, DocName, Conditions}).
%% @doc Calls a custom function in the given store name.
-spec call(Name, DocName, Function, Args) -> Res when
Name :: atom(),
DocName :: sumo:schema_name(),
Function :: atom(),
Args :: [term()],
Res :: ok | {ok, term()} | {error, term()}.
call(Name, DocName, Function, Args) ->
{ok, Timeout} = application:get_env(sumo_db, query_timeout),
wpool:call(
Name,
{call, DocName, Function, Args},
wpool:default_strategy(),
Timeout).
%%%=============================================================================
%%% gen_server callbacks
%%%=============================================================================
%% @doc Called by start_link.
%% @hidden
init([Module, Options]) ->
{ok, HState} = Module:init(Options),
{ok, #state{handler=Module, handler_state=HState}}.
%% @doc handles calls.
%% @hidden
handle_call(
{create_schema, Schema}, _From,
#state{handler = Handler, handler_state = HState} = State
) ->
{Result, NewState} = case Handler:create_schema(Schema, HState) of
{ok, NewState_} -> {ok, NewState_};
{error, Error, NewState_} -> {{error, Error}, NewState_}
end,
{reply, Result, State#state{handler_state=NewState}};
handle_call(
{persist, Doc}, _From,
#state{handler = Handler, handler_state = HState} = State
) ->
{OkOrError, Reply, NewState} = Handler:persist(Doc, HState),
{reply, {OkOrError, Reply}, State#state{handler_state=NewState}};
handle_call(
{fetch, DocName, Id}, _From,
#state{handler = Handler, handler_state = HState} = State
) ->
{OkOrError, Reply, NewState} = Handler:fetch(DocName, Id, HState),
{reply, {OkOrError, Reply}, State#state{handler_state=NewState}};
handle_call(
{delete_by, DocName, Conditions}, _From,
#state{handler = Handler, handler_state = HState} = State
) ->
{OkOrError, Reply, NewState} = Handler:delete_by(DocName, Conditions, HState),
{reply, {OkOrError, Reply}, State#state{handler_state=NewState}};
handle_call(
{delete_all, DocName}, _From,
#state{handler = Handler, handler_state = HState} = State
) ->
{OkOrError, Reply, NewState} = Handler:delete_all(DocName, HState),
{reply, {OkOrError, Reply}, State#state{handler_state=NewState}};
handle_call(
{find_all, DocName}, _From,
#state{handler = Handler, handler_state = HState} = State
) ->
{OkOrError, Reply, NewState} = Handler:find_all(DocName, HState),
{reply, {OkOrError, Reply}, State#state{handler_state = NewState}};
handle_call(
{find_all, DocName, SortFields, Limit, Offset}, _From,
#state{handler = Handler, handler_state = HState} = State
) ->
{OkOrError, Reply, NewState} = Handler:find_all(
DocName, SortFields, Limit, Offset, HState
),
{reply, {OkOrError, Reply}, State#state{handler_state = NewState}};
handle_call(
{find_by, DocName, Conditions}, _From,
#state{handler = Handler, handler_state = HState} = State
) ->
{OkOrError, Reply, NewState} = Handler:find_by(DocName, Conditions, HState),
{reply, {OkOrError, Reply}, State#state{handler_state=NewState}};
handle_call(
{find_by, DocName, Conditions, Limit, Offset}, _From,
#state{handler = Handler, handler_state = HState} = State
) ->
{OkOrError, Reply, NewState} = Handler:find_by(
DocName, Conditions, Limit, Offset, HState
),
{reply, {OkOrError, Reply}, State#state{handler_state=NewState}};
handle_call(
{find_by, DocName, Conditions, SortFields, Limit, Offset}, _From,
#state{handler = Handler, handler_state = HState} = State
) ->
{OkOrError, Reply, NewState} = Handler:find_by(
DocName, Conditions, SortFields, Limit, Offset, HState
),
{reply, {OkOrError, Reply}, State#state{handler_state=NewState}};
handle_call(
{count, DocName}, _From,
#state{handler = Handler, handler_state = HState} = State
) ->
{OkOrError, Reply, NewState} = Handler:count(DocName, HState),
{reply, {OkOrError, Reply}, State#state{handler_state = NewState}};
handle_call(
{count_by, DocName, Conditions}, _From,
#state{handler = Handler, handler_state = HState} = State
) ->
{OkOrError, Reply, NewState} = Handler:count_by(DocName, Conditions, HState),
{reply, {OkOrError, Reply}, State#state{handler_state = NewState}};
handle_call(
{call, DocName, Function, Args}, _From,
#state{handler = Handler, handler_state = HState} = State
) ->
RealArgs = lists:append(Args, [DocName, HState]),
{OkOrError, Reply, NewState} = erlang:apply(Handler, Function, RealArgs),
{reply, {OkOrError, Reply}, State#state{handler_state=NewState}}.
%% @hidden
handle_cast(_Msg, State) ->
{noreply, State}.
%% @hidden
handle_info(Info, #state{handler = Handler, handler_state = HState} = State) ->
case erlang:function_exported(Handler, handle_info, 2) of
true ->
try Handler:handle_info(Info, HState) of
Response -> handle_info_response(Response, State)
catch
throw:Response -> handle_info_response(Response, State)
end;
false ->
{noreply, State}
end.
%% @hidden
terminate(Reason, #state{handler = Handler, handler_state = HState}) ->
case erlang:function_exported(Handler, terminate, 2) of
true ->
try
Handler:terminate(Reason, HState)
catch
throw:Response -> Response
end;
false ->
ok
end.
%% @hidden
code_change(_OldVsn, State, _Extra) ->
{ok, State}.
%%%=============================================================================
%%% Internal Functions
%%%=============================================================================
%% @private
handle_info_response({noreply, NewHState}, State) ->
{noreply, State#state{handler_state = NewHState}};
handle_info_response({noreply, NewHState, hibernate}, State) ->
{noreply, State#state{handler_state = NewHState}, hibernate};
handle_info_response({noreply, NewHState, Timeout}, State) ->
{noreply, State#state{handler_state = NewHState}, Timeout};
handle_info_response({stop, Reason, NewHState}, State) ->
{stop, Reason, State#state{handler_state = NewHState}}.