473,388 Members | 1,496 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,388 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 3601
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, then rewrite function calls with wrong parameters....
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, or 2) generate a double between 0 and 1. I...
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 name of the tool available in the opensource world....
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 (as a Java or C++ object). Of course a grammar...
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 to construct binary data according to...
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 mangled through 20 different platforms. I've had...
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 (using prototypejs's wonderful unittest.js). See...
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'), ' ', Or('cat', 'dog'), Optional('s'),...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

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.