472,353 Members | 1,578 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,353 software developers and data experts.

Parser Generator that generates JavaScript code

Hi,

Does a parser generator exist that generates JavaScript code? Most
parser generators generate C or Java code.

Thanks,
Peter

Nov 11 '06 #1
9 3535
Daz

Peter Michaux wrote:
Hi,

Does a parser generator exist that generates JavaScript code? Most
parser generators generate C or Java code.

Thanks,
Peter
What is it meant to generate the code from, exactly?

Nov 11 '06 #2

Daz wrote:
Peter Michaux wrote:
Hi,

Does a parser generator exist that generates JavaScript code? Most
parser generators generate C or Java code.

Thanks,
Peter

What is it meant to generate the code from, exactly?
A language grammer similar to that used by Yacc, JavaCC, SableCC or
Lemon.

A subset of SQL grammer is what I would like to implement in
JavaScript.

Peter

Nov 11 '06 #3
Daz

Peter Michaux wrote:
A language grammer similar to that used by Yacc, JavaCC, SableCC or
Lemon.

A subset of SQL grammer is what I would like to implement in
JavaScript.
Oh I see. Sorry I am not familiar with parser generators. I assumed you
meant something that will basically take some code, parse it, and then
display it on a webpage complete with syntax highlighting. I am
intrigued as to the the use of such parser generators, so I am going to
look into it. I will let you know if I come across anything.

All the best.

Daz.

Nov 11 '06 #4
Daz

Peter Michaux wrote:
Daz wrote:
Peter Michaux wrote:
Hi,
>
Does a parser generator exist that generates JavaScript code? Most
parser generators generate C or Java code.
>
Thanks,
Peter
What is it meant to generate the code from, exactly?

A language grammer similar to that used by Yacc, JavaCC, SableCC or
Lemon.

A subset of SQL grammer is what I would like to implement in
JavaScript.

Peter
Hello again Peter. I have just tried a Google search for what you are
looking for, and out of the hundred or so pages that were returned,
there's nothing that matches the description of what you are looking
for. I beleive it would be safe to assume that such a thing doesn't
exist, or if such a thing does exist, it's probably so little known
that it does not work correctly, or is seriously buggy. This doesn't
mean that this is definitely the case, but as you rightly said, Google
practically throws C and Java parser generators at you, but there
doesn't appear to be any that work with JavaScript. Sorry...

Daz.

Nov 11 '06 #5
VK
Peter Michaux wrote:
A subset of SQL grammer is what I would like to implement in
JavaScript.
<http://trimpath.com/project/wiki/TrimQuery>

Nov 11 '06 #6
VK wrote:
Peter Michaux wrote:
A subset of SQL grammer is what I would like to implement in
JavaScript.

<http://trimpath.com/project/wiki/TrimQuery>
I found some fundamental flaws that will break TrimQuery in
unacceptable ways. For example a user cannot store "Mr SELECT test" as
their name in the in-browser database. There could be hack work arounds
for each of these problems but I think doing it right with a tokenizer
and parser are probably more fruitful in the long run.

Peter

Nov 11 '06 #7
"VK" <sc**********@yahoo.comwrote in news:1163278275.629360.236530
@h54g2000cwb.googlegroups.com:
Peter Michaux wrote:
>A subset of SQL grammer is what I would like to implement in
JavaScript.

<http://trimpath.com/project/wiki/TrimQuery>
Great zot! Trimpath extends Javascript with SQL queries! It's a
lightweight GPL open-source component that gives you the power of SQL
queries while running Javascript in a web browser. Written in Javascript.
Nov 11 '06 #8
Jim Land (NO SPAM) wrote:
"VK" <sc**********@yahoo.comwrote in news:1163278275.629360.236530
@h54g2000cwb.googlegroups.com:
Peter Michaux wrote:
A subset of SQL grammer is what I would like to implement in
JavaScript.
<http://trimpath.com/project/wiki/TrimQuery>

Great zot! Trimpath extends Javascript with SQL queries! It's a
lightweight GPL open-source component that gives you the power of SQL
queries while running Javascript in a web browser. Written in Javascript.
I was just as excited when I saw it the first time. A DBMS in only 600
lines of JavaScript. I think it is too good to be true and some
investigation into the code has shown it too have problems. The idea of
a DBMS certainly could happen in a browser but is it a good idea?

A DBMS in the browser is appealing but I am conflicted about the
appropriateness of such a beast. How much thinking should a browser be
able to do? It seems like a slippery slope where the desire for a
little bit of cool DHTML could lead to way too much browser brains. For
example, in a DHTML data grid if the user can filter which rows are
visible or in which order they appear then custom code has to slowly be
written to manipulate the data. When the number of user options for
data filtering and sorting increases enough it would be better just to
write something like TrimQuery. With the innocent wish to sort a list
now download times have increased with more data and libraries to be
cached in the browser.

It looks like Gmail leaves all sorting, filtering and pagination up to
the server since the server has all the tools needed like a DBMS to
program this quickly. This also keeps individual page load times low. I
would not make sense to load 20 000 emails into my browser just so I
can search through them quickly. However when there are only 30 items
of data and only a few sort options then people want to delegate the
responsibility to the browser. Where is the line? It seems
fundamentally wrong to give the browser so much power but I don't know
how to articulate clearly when the line has been crossed. Perhaps it
is in the grey area.

There is also the problem of distrubuted data that needs to be
syncronized with the server data and what conflicts that might occur.

I think Gmail got this right.

This is primarily why I started the other thread called "The future of
applications in JavaScript?" I don't know if moving in the direction of
TrimQuery-type applications is a good idea or not. If it is a good idea
than we need more traditional software development tools like a parser
generator for developing JavaScript apps.

Peter

Nov 11 '06 #9

Peter Michaux wrote:
I don't know if moving in the direction of
TrimQuery-type applications is a good idea or not. If it is a good idea
than we need more traditional software development tools like a parser
generator for developing JavaScript apps.
It seems things are moving in the direction of providing more
storage/db functionality in the browser - see Mozilla's Database API
(embeds SQLite for extensions/chrome app use - although not webpages):
http://developer.mozilla.org/en/docs/Storage
and also WHATWG DOM storage (for webpages to access):
http://www.whatwg.org/specs/web-apps...cs-client-side

Nov 11 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
by: Jean de Largentaye | last post by:
Hi, I need to parse a subset of C (a header file), and generate some unit tests for the functions listed in it. I thus need to parse the code,...
3
by: Joe | last post by:
Hi, I have been working on some code that requires a high use of random numbers within. Mostly I either have to either: 1) flip a coin i.e. 0 or 1,...
2
by: karthik bala guru | last post by:
Hi, I would like to have a XHTML Generator and Parser in C language from the open source community. Someone Here, kindly give me a link or the...
7
by: (Jamie Andrews) | last post by:
For a research project, we're looking for a reliable parser for C that will take an ANSI C program and yield a tree representation of the program...
32
by: Weiguang Shi | last post by:
Hi, Is there a tool that, given a struct definition, generates a function that parses binary data of this struct and a command that can be used...
6
by: Mike C# | last post by:
Hi all, Can anyone recommend a good and *easy to use* lexer and parser generator? Preferably one that was written specifically for VC++ and not...
4
by: Dr Nic | last post by:
ANN: JavaScript Project Generator WWW: http://newjs.rubyforge.org Generates a scaffold for a new JavaScript project, with in-built test suite...
5
by: George Sakkis | last post by:
Is there any package that parses regular expressions and returns an AST ? Something like: Regex('i ', Or('love', 'hate'), ' h', Or('is', 'er'), '...
1
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
2
by: Matthew3360 | last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
0
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web...
0
by: Carina712 | last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand....
0
by: Rahul1995seven | last post by:
Introduction: In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.