vote up 1 vote down star
1

Hi,

Is metaprogramming possible in javascript??

During my routine work, i happened to write the chained javascript function which is something like LINQ expression to query the JSON result.

var Result = from(obj1).as("x").where("x.id=5").groupby("x.status").having(count("x.status") > 5).select("x.status");

It works perfectly and give the expected result..

I was wondering this looks awsome if the code is written like this (in a more readable way)

var Result = from obj1 as x where x.status
groupby x.status having count(x.status)  > 5
select x.status;

is there a way to achieve this??

Cheers

Ramesh Vel

flag

4 Answers

vote up 7 vote down check

No. JavaScript doesn't support this.

But this looks quite good too:

var Result =  from(obj1)
             .as("x")
             .where("x.id=5")
             .groupby("x.status")
             .having(count("x.status") > 5)
             .select("x.status");
link|flag
vote up 3 vote down

although not quite what you wanted, it is possible to write parsers in javascript, and just parse the query (stored as strings) and then execute it. e.g.,using libraries like http://jscc.jmksf.com/ (no doubt there are others out there) it shouldnt be too hard to implement.

but what you have in the question looks great already, i m not sure why you'd want it to look the way you suggested.

link|flag
thanks for the reply Chii.. Actually i was just experimenting the different possibilities. i am with c# background, recentlty started in javascript and just wanted to explore the JS features... thats the reason.. And thanks for the link.. I have already look around the JS parsers like the one you have mentioned.. and i found codeplex.com/jsinq is useful.. thanks again.. – Ramesh Vel Sep 1 at 10:52
vote up 1 vote down

Wat you want is to change the javascript parser into an SQL parser. It wasn't created to do that, the javascript syntax doesn't allow you to.

What you have is 90% like SQL (it maps straight onto it), and a 100% valid javascript, which is a great achievement. My answer to the question in the title is: YES, metaprogramming is possible, but NO it won't give you an SQL parser, since it's bound to use javascript grammar.

link|flag
vote up 0 vote down

Maybe you want something like JSONPath if you've got JSON data. I found this at http://www.json.org/. Lots of other tools linked to from there if it's not exactly what you need.

(this is being worked on as well: http://docs.dojocampus.org/dojox/json/query)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.