From 5da7c1a8ba70f41a8e92cb1efee1f6c6898a2901 Mon Sep 17 00:00:00 2001 From: "Damien F. Katz" Date: Tue, 20 May 2008 19:57:37 +0000 Subject: Fixed design document view definitions to be consistent with temp views. Changed the name of the map(K,V) call in the javascript views to emit(K,V) git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@658405 13f79535-47bb-0310-9956-ffa450edef68 --- share/server/main.js | 4 ++-- share/www/script/couch_tests.js | 40 ++++++++++++++++++++-------------------- src/couchdb/couch_btree.erl | 7 ++++--- src/couchdb/couch_view.erl | 16 +++++----------- 4 files changed, 31 insertions(+), 36 deletions(-) diff --git a/share/server/main.js b/share/server/main.js index e7184682..59acb02f 100644 --- a/share/server/main.js +++ b/share/server/main.js @@ -16,7 +16,7 @@ var map_results = []; // holds temporary emitted values during doc map var sandbox = null; -map = function(key, value) { +emit = function(key, value) { map_results.push([key, value]); } @@ -32,7 +32,7 @@ sum = function(values) { try { // if possible, use evalcx (not always available) sandbox = evalcx(''); - sandbox.map = map; + sandbox.emit = emit; sandbox.sum = sum; } catch (e) {} diff --git a/share/www/script/couch_tests.js b/share/www/script/couch_tests.js index 7b35cf87..cb8e8506 100644 --- a/share/www/script/couch_tests.js +++ b/share/www/script/couch_tests.js @@ -59,7 +59,7 @@ var tests = { // has a value of 4, and then returns the document's b value. var mapFunction = function(doc){ if(doc.a==4) - map(null, doc.b); + emit(null, doc.b); }; results = db.query(mapFunction); @@ -208,7 +208,7 @@ var tests = { } // query all documents, and return the doc.integer member as a key. - results = db.query(function(doc){ map(doc.integer, null) }); + results = db.query(function(doc){ emit(doc.integer, null) }); T(results.total_rows == numDocsToCreate); @@ -218,7 +218,7 @@ var tests = { } // do the query again, but with descending output - results = db.query(function(doc){ map(doc.integer, null) }, {descending:true}); + results = db.query(function(doc){ emit(doc.integer, null) }, {descending:true}); T(results.total_rows == numDocsToCreate); @@ -238,7 +238,7 @@ var tests = { T(db.bulkSave(docs).ok); var summate = function(N) {return (N+1)*N/2;}; - var map = function (doc) {map(doc.integer, doc.integer)}; + var map = function (doc) {emit(doc.integer, doc.integer)}; var reduce = function (keys, values) { return sum(values); }; var result = db.reduce_query(map, reduce).result; T(result == summate(numDocs)); @@ -277,7 +277,7 @@ var tests = { var generateListOfCitiesAndState = "function(doc) {" + " for (var i = 0; i < doc.cities.length; i++)" + - " map(doc.cities[i] + \", \" + doc._id, null);" + + " emit(doc.cities[i] + \", \" + doc._id, null);" + "}"; var results = db.query(generateListOfCitiesAndState); @@ -348,7 +348,7 @@ var tests = { // query all documents, and return the doc.foo member as a key. results = db.query(function(doc){ - map(null, doc.longtest); + emit(null, doc.longtest); }); }, @@ -376,7 +376,7 @@ var tests = { } // check that views and key collation don't blow up - var rows = db.query(function(doc) { map(null, doc.text) }).rows; + var rows = db.query(function(doc) { emit(null, doc.text) }).rows; for (var i=0; i true -> % got full node, return the already calculated reduction {[], [{nil, {P, R}}]}; false -> % otherwise return the keyvalues for later reduction - {KVs2, []} + {[assemble(Bt,K,V) || {K,V} <- KVs2], []} end end. @@ -568,9 +568,10 @@ stream_kv_node(Bt, Reds, KVs, StartKey, Dir, Fun, Acc) -> stream_kv_node2(_Bt, _Reds, _PrevKVs, [], _Dir, _Fun, Acc) -> {ok, Acc}; stream_kv_node2(Bt, Reds, PrevKVs, [{K,V} | RestKVs], Dir, Fun, Acc) -> - case Fun(assemble(Bt, K, V), {PrevKVs, Reds}, Acc) of + AssembledKV = assemble(Bt, K, V), + case Fun(AssembledKV, {PrevKVs, Reds}, Acc) of {ok, Acc2} -> - stream_kv_node2(Bt, Reds, [{K,V} | PrevKVs], RestKVs, Dir, Fun, Acc2); + stream_kv_node2(Bt, Reds, [AssembledKV | PrevKVs], RestKVs, Dir, Fun, Acc2); {stop, Acc2} -> {stop, Acc2} end. diff --git a/src/couchdb/couch_view.erl b/src/couchdb/couch_view.erl index 4f6a2f47..b14f4564 100644 --- a/src/couchdb/couch_view.erl +++ b/src/couchdb/couch_view.erl @@ -155,32 +155,26 @@ reduce_to_count(Reductions) -> design_doc_to_view_group(#doc{id=Id,body={obj, Fields}}) -> Language = proplists:get_value("language", Fields, "javascript"), {obj, RawViews} = proplists:get_value("views", Fields, {obj, []}), - - % extract the map/reduce views from the json fields and into lists - MapViewsRaw = [{Name, Src, nil} || {Name, Src} <- RawViews, is_list(Src)], - MapReduceViewsRaw = - [{Name, - proplists:get_value("map", MRFuns), - proplists:get_value("reduce", MRFuns)} - || {Name, {obj, MRFuns}} <- RawViews], % add the views to a dictionary object, with the map source as the key DictBySrc = lists:foldl( - fun({Name, MapSrc, RedSrc}, DictBySrcAcc) -> + fun({Name, {obj, MRFuns}}, DictBySrcAcc) -> + MapSrc = proplists:get_value("map", MRFuns), + RedSrc = proplists:get_value("reduce", MRFuns, null), View = case dict:find(MapSrc, DictBySrcAcc) of {ok, View0} -> View0; error -> #view{def=MapSrc} % create new view object end, View2 = - if RedSrc == nil -> + if RedSrc == null -> View#view{map_names=[Name|View#view.map_names]}; true -> View#view{reduce_funs=[{Name,RedSrc}|View#view.reduce_funs]} end, dict:store(MapSrc, View2, DictBySrcAcc) - end, dict:new(), MapViewsRaw ++ MapReduceViewsRaw), + end, dict:new(), RawViews), % number the views {Views, _N} = lists:mapfoldl( fun({_Src, View}, N) -> -- cgit v1.2.3