JsonSQL: JSON parser, SQL style
Scripter/JAVASCRIPT / 2008. 3. 6. 09:56
일반적인 JSON 객체에서 해당 객체의 하위 노드 객체정보를 SQL문 형태로 볼수 있게 해준다.
사용법:
기본소스
참조웹사이트 : trentrichardsonhttp://www.trentrichardson.com/jsonsql/
사용법:
jsonsql.query("select * from json.channel.items order by title desc", json);
jsonsql.query("select title,url from json.channel.items where (category=='javascript' || category=='vista') order by title,category asc limit 3", json);
기본소스
var jsonsql = {
query: function(sql,json){
var returnfields = sql.match(/^(select)\s+([a-z0-9_\,\.\s\*]+)\s+from\s+([a-z0-9_\.]+)(?: where\s+\((.+)\))?\s*(?:order\sby\s+([a-z0-9_\,]+))?\s*(asc|desc|ascnum|descnum)?\s*(?:limit\s+([0-9_\,]+))?/i);
var ops = {
fields: returnfields[2].replace(' ','').split(','),
from: returnfields[3].replace(' ',''),
where: (returnfields[4] == undefined)? "true":returnfields[4],
orderby: (returnfields[5] == undefined)? []:returnfields[5].replace(' ','').split(','),
order: (returnfields[6] == undefined)? "asc":returnfields[6],
limit: (returnfields[7] == undefined)? []:returnfields[7].replace(' ','').split(',')
};
return this.parse(json, ops);
},
parse: function(json,ops){
var o = { fields:["*"], from:"json", where:"", orderby:[], order: "asc", limit:[] };
for(i in ops) o[i] = ops[i];
var result = [];
result = this.returnFilter(json,o);
result = this.returnOrderBy(result,o.orderby,o.order);
result = this.returnLimit(result,o.limit);
return result;
},
returnFilter: function(json,jsonsql_o){
var jsonsql_scope = eval(jsonsql_o.from);
var jsonsql_result = [];
var jsonsql_rc = 0;
if(jsonsql_o.where == "")
jsonsql_o.where = "true";
for(var jsonsql_i in jsonsql_scope){
with(jsonsql_scope[jsonsql_i]){
if(eval(jsonsql_o.where)){
jsonsql_result[jsonsql_rc++] = this.returnFields(jsonsql_scope[jsonsql_i],jsonsql_o.fields);
}
}
}
return jsonsql_result;
},
returnFields: function(scope,fields){
if(fields.length == 0)
fields = ["*"];
if(fields[0] == "*")
return scope;
var returnobj = {};
for(var i in fields)
returnobj[fields[i]] = scope[fields[i]];
return returnobj;
},
returnOrderBy: function(result,orderby,order){
if(orderby.length == 0)
return result;
result.sort(function(a,b){
switch(order.toLowerCase()){
case "desc": return (eval('a.'+ orderby[0] +' < b.'+ orderby[0]))? 1:-1;
case "asc": return (eval('a.'+ orderby[0] +' > b.'+ orderby[0]))? 1:-1;
case "descnum": return (eval('a.'+ orderby[0] +' - b.'+ orderby[0]));
case "ascnum": return (eval('b.'+ orderby[0] +' - a.'+ orderby[0]));
}
});
return result;
},
returnLimit: function(result,limit){
switch(limit.length){
case 0: return result;
case 1: return result.splice(0,limit[0]);
case 2: return result.splice(limit[0]-1,limit[1]);
}
}
};
참조웹사이트 : trentrichardsonhttp://www.trentrichardson.com/jsonsql/
'Scripter > JAVASCRIPT' 카테고리의 다른 글
즐겨찾기 및 시작페이지 추가 IE FF모두 가능 (0) | 2008.03.06 |
---|---|
자바스크립트로 구현한 3D 포토갤러리 (0) | 2008.03.06 |
Native CSS selectors with querySelector (0) | 2008.03.06 |
IE minimize (2) | 2008.03.06 |
Javascript Performance Stack (2) | 2008.03.03 |