-
Notifications
You must be signed in to change notification settings - Fork 25
/
hovercraft.erl
340 lines (303 loc) · 12.9 KB
/
hovercraft.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
%%%-------------------------------------------------------------------
%%% File : hovercraft.erl
%%% Author : J Chris Anderson <[email protected]>
%%% Description : Erlang CouchDB access.
%%%
%%% Created : 4 Apr 2009 by J Chris Anderson <[email protected]>
%%% License : Apache 2.0
%%%-------------------------------------------------------------------
-module(hovercraft).
-vsn("0.1.4").
%% see README.md for usage information
%% Database API
-export([
create_db/1,
delete_db/1,
open_db/1,
db_info/1,
open_doc/2,
save_doc/2,
save_bulk/2,
delete_doc/2,
start_attachment/3,
next_attachment_bytes/1,
query_view/3,
query_view/4,
query_view/5
]).
% Hovercraft is designed to run inside the same beam process as CouchDB.
% It calls into CouchDB's database access functions, so it needs access
% to the disk. To hook it up, make sure hovercraft is in the Erlang load
% path and ensure that the following line points to CouchDB's hrl file.
-include_lib("src/couchdb/couch_db.hrl").
-define(ADMIN_USER_CTX, {user_ctx, #user_ctx{roles=[<<"_admin">>]}}).
%%====================================================================
%% API
%%====================================================================
%%--------------------------------------------------------------------
%% Function: create_db(DbName) -> {ok,created} | {error,Error}
%% DbName is always a binary: <<"mydb">>
%% Description: Creates the database.
%%--------------------------------------------------------------------
create_db(DbName) ->
create_db(DbName, []).
create_db(DbName, Options) ->
case couch_server:create(DbName, Options) of
{ok, Db} ->
couch_db:close(Db),
{ok, created};
Error ->
{error, Error}
end.
%%--------------------------------------------------------------------
%% Function: delete_db(DbName) -> {ok,deleted} | {error,Error}
%% Description: Deletes the database.
%%--------------------------------------------------------------------
delete_db(DbName) ->
delete_db(DbName, [?ADMIN_USER_CTX]).
delete_db(DbName, Options) ->
case couch_server:delete(DbName, Options) of
ok ->
{ok, deleted};
Error ->
{error, Error}
end.
%%--------------------------------------------------------------------
%% Function: open_db(DbName) -> {ok,Db} | {error,Error}
%% Description: Opens the database.
%% Only use this if you are doing bulk operations and know what you are doing.
%%--------------------------------------------------------------------
open_db(DbName) ->
couch_db:open(DbName, [?ADMIN_USER_CTX]).
%%--------------------------------------------------------------------
%% Function: db_info(DbName) -> {ok,Db} | {error,Error}
%% Description: Gets the db_info as a proplist
%%--------------------------------------------------------------------
db_info(DbName) ->
{ok, Db} = open_db(DbName),
couch_db:get_db_info(Db).
%%--------------------------------------------------------------------
%% Function: open_doc(DbName, DocId) -> {ok,Doc} | {error,Error}
%% Description: Gets the eJSON form of the Document
%%--------------------------------------------------------------------
open_doc(DbName, DocId) ->
{ok, Db} = open_db(DbName),
CouchDoc = couch_httpd_db:couch_doc_open(Db, DocId, nil, []),
Doc = couch_doc:to_json_obj(CouchDoc, []),
{ok, Doc}.
%%--------------------------------------------------------------------
%% Function: save_doc(DbName, Doc) -> {ok, EJsonInfo} | {error,Error}
%% Description: Saves the doc in the database, returns the id and rev
%%--------------------------------------------------------------------
save_doc(#db{}=Db, Doc) ->
CouchDoc = ejson_to_couch_doc(Doc),
{ok, Rev} = couch_db:update_doc(Db, CouchDoc, []),
{ok, {[{id, CouchDoc#doc.id}, {rev, couch_doc:rev_to_str(Rev)}]}};
save_doc(DbName, Docs) ->
{ok, Db} = open_db(DbName),
save_doc(Db, Docs).
%%--------------------------------------------------------------------
%% Function: save_bulk(DbName, Docs) -> {ok, EJsonInfo} | {error,Error}
%% Description: Saves the docs the database, returns the ids and revs
%%--------------------------------------------------------------------
save_bulk(#db{}=Db, Docs) ->
CouchDocs = [ejson_to_couch_doc(EJsonDoc) || EJsonDoc <- Docs],
{ok, Results} = couch_db:update_docs(Db, CouchDocs),
{ok, lists:zipwith(fun couch_httpd_db:update_doc_result_to_json/2,
CouchDocs, Results)};
save_bulk(DbName, Docs) ->
{ok, Db} = open_db(DbName),
save_bulk(Db, Docs).
%%--------------------------------------------------------------------
%% Function: delete_doc(DbName, DocId) -> {ok, {DocId, RevString}} | {error,Error}
%% Description: Deletes the doc
%%--------------------------------------------------------------------
delete_doc(DbName, {DocProps}) ->
save_doc(DbName, {[{<<"_deleted">>, true}|DocProps]}).
%%--------------------------------------------------------------------
%% Function: start_attachment(DbName, DocId, AName) -> {ok, Pid} | {error,Error}
%% Description: Starts a process to use for fetching attachment bytes
%%--------------------------------------------------------------------
start_attachment(DbName, DocId, AName) ->
Pid = spawn_link(fun() ->
attachment_streamer(DbName, DocId, AName)
end),
{ok, Pid}.
%%--------------------------------------------------------------------
%% Function: next_attachment_bytes(Pid) -> {ok, done} | {error,Error}
%% Description: Fetch attachment bytes
%%--------------------------------------------------------------------
next_attachment_bytes(Pid) ->
Pid ! {next_attachment_bytes, self()},
receive
{attachment_done, Pid} ->
{ok, done};
{attachment_bytes, Pid, {Bin, Length}} ->
{Length, _Reason} = {size(Bin), "assert Bin length match"},
{ok, Bin}
end.
query_view(DbName, DesignName, ViewName) ->
query_view(DbName, DesignName, ViewName, #view_query_args{}).
query_view(DbName, DesignName, ViewName, #view_query_args{}=QueryArgs) ->
% provide a default row collector fun
% don't use this on big data it will balloon in memory
RowCollectorFun = fun(Row, Acc) ->
{ok, [Row | Acc]}
end,
query_view(DbName, DesignName, ViewName, RowCollectorFun, QueryArgs);
query_view(DbName, DesignName, ViewName, ViewFoldFun) ->
query_view(DbName, DesignName, ViewName, ViewFoldFun, #view_query_args{}).
% special case for special all_docs view
query_view(DbName, undefined, <<"_all_docs">>, _ViewFoldFun, #view_query_args{
limit = Limit,
skip = SkipCount,
stale = _Stale,
direction = Dir,
group_level = _GroupLevel,
start_key = StartKey,
start_docid = StartDocId,
end_key = EndKey,
end_docid = EndDocId,
inclusive_end = Inclusive
}=QueryArgs) ->
{ok, Db} = open_db(DbName),
{ok, Info} = couch_db:get_db_info(Db),
TotalRowCount = proplists:get_value(doc_count, Info),
StartId = if is_binary(StartKey) -> StartKey;
true -> StartDocId
end,
EndId = if is_binary(EndKey) -> EndKey;
true -> EndDocId
end,
FoldAccInit = {Limit, SkipCount, undefined, []},
UpdateSeq = couch_db:get_update_seq(Db),
FoldlFun = couch_httpd_view:make_view_fold_fun(nil, QueryArgs, <<"">>, Db,
UpdateSeq, TotalRowCount, #view_fold_helper_funs{
reduce_count = fun couch_db:enum_docs_reduce_to_count/1,
start_response = fun start_map_view_fold_fun/6,
send_row = make_include_docs_row_fold_fun()
}),
AdapterFun = fun(#full_doc_info{id=Id}=FullDocInfo, Offset, Acc) ->
case couch_doc:to_doc_info(FullDocInfo) of
#doc_info{revs=[#rev_info{deleted=false, rev=Rev}|_]} ->
FoldlFun({{Id, Id}, {[{rev, couch_doc:rev_to_str(Rev)}]}}, Offset, Acc);
#doc_info{revs=[#rev_info{deleted=true}|_]} ->
{ok, Acc}
end
end,
Res = couch_db:enum_docs(Db,
AdapterFun, FoldAccInit, [{start_key, StartId}, {dir, Dir},
{if Inclusive -> end_key; true -> end_key_gt end, EndId}]),
Res;
query_view(DbName, DesignName, ViewName, ViewFoldFun, #view_query_args{
limit = Limit,
skip = SkipCount,
stale = Stale,
direction = Dir,
group_level = GroupLevel,
start_key = StartKey,
start_docid = StartDocId
}=QueryArgs) ->
{ok, Db} = open_db(DbName),
% get view reference
DesignId = <<"_design/", DesignName/binary>>,
case couch_view:get_map_view(Db, DesignId, ViewName, Stale) of
{ok, View, _Group} ->
{ok, RowCount} = couch_view:get_row_count(View),
Start = {StartKey, StartDocId},
UpdateSeq = couch_db:get_update_seq(Db),
FoldlFun = couch_httpd_view:make_view_fold_fun(nil,
QueryArgs, <<"">>, Db, UpdateSeq, RowCount,
#view_fold_helper_funs{
reduce_count = fun couch_view:reduce_to_count/1,
start_response = fun start_map_view_fold_fun/6,
send_row = make_map_row_fold_fun(ViewFoldFun)
}),
FoldAccInit = {Limit, SkipCount, undefined, []},
{ok, _, {_Lim, _, _, {Offset, ViewFoldAcc}}} =
couch_view:fold(View, FoldlFun, FoldAccInit,
[{dir, Dir}, {start_key, Start}]),
{ok, {RowCount, Offset, ViewFoldAcc}};
{not_found, Reason} ->
case couch_view:get_reduce_view(Db, DesignId, ViewName, Stale) of
{ok, View, _Group} ->
UpdateSeq = couch_db:get_update_seq(Db),
{ok, GroupRowsFun, RespFun} =
couch_httpd_view:make_reduce_fold_funs(nil,
GroupLevel, QueryArgs, <<"">>,
UpdateSeq,
#reduce_fold_helper_funs{
start_response = fun start_reduce_view_fold_fun/4,
send_row = make_reduce_row_fold_fun(ViewFoldFun)
}),
FoldAccInit = {Limit, SkipCount, undefined, []},
Opts = [{key_group_fun, GroupRowsFun} |
couch_httpd_view:make_key_options(QueryArgs)],
{ok, {_, _, _, AccResult}} = couch_view:fold_reduce(View,
RespFun,
FoldAccInit,
Opts),
{ok, AccResult};
_ ->
throw({not_found, Reason})
end
end.
%%--------------------------------------------------------------------
%%% Internal functions
%%--------------------------------------------------------------------
ejson_to_couch_doc({DocProps}) ->
Doc = case proplists:get_value(<<"_id">>, DocProps) of
undefined ->
DocId = couch_uuids:new(),
{[{<<"_id">>, DocId}|DocProps]};
_DocId ->
{DocProps}
end,
couch_doc:from_json_obj(Doc).
start_map_view_fold_fun(_Req, _Etag, _RowCount, Offset, _Acc, _UpdateSeq) ->
{ok, nil, {Offset, []}}.
make_map_row_fold_fun(ViewFoldFun) ->
fun(_Resp, _Db, {{Key, DocId}, Value}, _IncludeDocs, {Offset, Acc}) ->
{Go, NewAcc} = ViewFoldFun({{Key, DocId}, Value}, Acc),
{Go, {Offset, NewAcc}}
end.
make_include_docs_row_fold_fun() ->
fun(_Resp, Db, Doc, IncludeDocs, {Offset, Acc}) ->
D = couch_httpd_view:view_row_obj(Db, Doc, IncludeDocs),
{ok, {Offset, [D | Acc]}}
end.
start_reduce_view_fold_fun(_Req, _Etag, _Acc0, _UpdateSeq) ->
{ok, nil, []}.
make_reduce_row_fold_fun(ViewFoldFun) ->
fun(_Resp, {Key, Value}, Acc) ->
{Go, NewAcc} = ViewFoldFun({Key, Value}, Acc),
{Go, NewAcc}
end.
attachment_streamer(DbName, DocId, AName) ->
{ok, Db} = open_db(DbName),
case couch_db:open_doc(Db, DocId, []) of
{ok, #doc{atts=Attachments}=_Doc} ->
case [A || A <- Attachments, A#att.name == AName] of
[] ->
throw({not_found, "Document is missing attachment"});
[Rec] when is_record(Rec, att) ->
Me = self(),
couch_doc:att_foldl_decode(Rec,
fun(Bins, []) ->
BinSegment = list_to_binary(Bins),
receive
{next_attachment_bytes, From} ->
From ! {attachment_bytes, Me, {BinSegment, size(BinSegment)}}
end,
{ok, []}
end,
[]
),
receive
{next_attachment_bytes, From} ->
From ! {attachment_done, Me}
end
end;
_Else ->
throw({not_found, "Document not found"})
end.