active questions tagged parsers - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T05:06:23Zhttp://stackoverflow.com/feeds/tag/parsershttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1911779/practical-consequences-of-formal-grammar-power9Practical consequences of formal grammar power?Ben Karel2009-12-16T01:50:33Z2009-12-19T12:11:08Z
<p>Every undergraduate Intro to Compilers course reviews the commonly-implemented subsets of context-free grammars: LL(k), SLR(k), LALR(k), LR(k). We are also taught that for any given k, each of those grammars is a subset of the next.</p>
<p>What I've never seen is an explanation of what sorts of programming language syntactic features might require moving to a different language class. There's an obvious practical motivation for GLR parsers, namely, avoiding an unholy commingling of parser and symbol table when parsing C++. But what about the differences between the two "standard" classes, LL and LR? </p>
<p>Two questions:</p>
<ol>
<li><b>What (general) syntactic constructions can be parsed with LR(k) but not LL(k')?</b></li>
<li><b>In what ways, if any, do those constructions manifest as desirable language constructs?</b></li>
</ol>
<p>There's a plausible argument for reducing language power by making k as small as possible, because a language requiring many, many tokens of lookahead will be harder for humans to parse, as well as "harder" for machines to parse. Question (2) implicitly asks if the same reasoning ends up holding between classes, as well as within a class.</p>
<p><hr></p>
<p>edit: Here's one example to illustrate the sorts of answers I'm looking for, but for regular languages instead of context-free:</p>
<p>When describing a regular language, one usually gets three operators: <code>+</code>, <code>*</code>, and <code>?</code>. Now, you can remove <code>+</code> without reducing the power of the language; instead of writing <code>x+</code>, you write <code>xx*</code>, and the effect is the same. But if <code>x</code> is some big and hairy expression, the two <code>x</code>s are likely to diverge over time due to human forgetfulness, yielding a syntactically correct regular expression that doesn't match the original author's intent. Thus, even though adding <code>+</code> doesn't strictly add power, it does make the notation less error-prone.</p>
<p>Are there constructs with similar practical (human?) effects that must be "removed" when switching from LR to LL?</p>
http://stackoverflow.com/questions/1333440/simple-html-dom-parser-error-handling1Simple HTML DOM Parser error handlingPsyche2009-08-26T09:26:17Z2009-12-14T12:00:10Z
<p>Hello,</p>
<p>I'm using SimpleHTMLDOM Parser to scape a website and I would like to know if there's any error handling method. For example, if the link is broken there is no use to advance in the code and search the document. </p>
<p>Thank you. </p>
http://stackoverflow.com/questions/85230/which-language-is-useful-to-create-a-report-for-a-valid-c-program1Which language is useful to create a report for a valid C programudpsunil2008-09-17T16:48:59Z2009-12-11T18:33:00Z
<p>Can anyone suggest me a helpful programming language which can be used to create a tool which will analyse the given C program and generate a txt report or html report containing information about the given program (function list, variable list etc).
The program I intend to build is similar to doxygen but i want it for my personal use.</p>
http://stackoverflow.com/questions/243383/why-c-cannot-be-parsed-with-a-lr1-parser23Why C++ cannot be parsed with a LR(1) parser?Cheery2008-10-28T13:49:52Z2009-12-04T02:37:52Z
<p>I were reading about parsers and parser generators when I hit upon this statement in wikipedia's LR parsing -page:</p>
<p>"Many programming languages can be parsed using some variation of an LR parser. One notable exception is C++."</p>
<p>Why is it so? What particular property in C++ causes it to be impossible to parse with LR parsers?</p>
<p>I first tried google and only found out that C can be perfectly parsed with LR(1) but C++ requires LR(∞). But then I think this is a good question. I understand that it must be very interesting reason why this is so.</p>
<p>(PS. wikipedia's parser articles make much more sense if you have already written couple of parsers yourself with parser generators or perhaps by hand, before that you do not really understand much about them. It's interesting how you need to use the tool to learn about how to build good one, but then.. so obvious)</p>
http://stackoverflow.com/questions/1564448/format-parseexception-with-javacc0Format ParseException with JavaCCtsutomi2009-10-14T05:43:13Z2009-12-03T18:00:03Z
<p>I was wondering how could it be possible to format in a human-readable format a ParseException thrown by JavaCC: in fact it includes fields such as<code>beginLine</code>, <code>beginColumn</code>, <code>endColumn</code>, <code>endLine</code> in the token reference of the exception, but not the reference to the source parsed.</p>
<p>Thanks! :)</p>
http://stackoverflow.com/questions/1809932/resolving-a-shift-reduce-conflict-in-an-lalr-parser1Resolving a shift/reduce conflict in an LALR parserlazypython2009-11-27T17:42:35Z2009-11-27T18:15:16Z
<p>I've been using PLY to build up a parser for my language, however I've got a shift/reduce conflict that's causing me some trouble. My language has generic types with a syntax ala C++ templates. So right now I have rules like:</p>
<pre><code> expression : expression LESS expression %prec COMPARISON
expression : template
template : NAME
| NAME LESS templates GREATER
templates : template
| templates COMMA template
</code></pre>
<p>However, I've found that it's unable to parse:</p>
<pre><code>a < 2
</code></pre>
<p>(which is a problem for obvious reasons). The following is the debug output:</p>
<pre><code>PLY: PARSE DEBUG START
State : 0
Stack : . <Token: 'NAME' 'a'>
Action : Shift and goto state 42
State : 42
Stack : NAME . <Token: 'LESS' '<'>
Action : Shift and goto state 81
State : 81
Stack : NAME LESS . <Token: 'NUMBER' '2'>
ERROR: Error : NAME LESS . <Token: 'NUMBER' '2'>
</code></pre>
<p>If more of my parser is needed I can provide it. Thanks.</p>
<p>EDIT: One solution that was suggested to me was to make types their own token. This would require a little bit of work because my language doesn't use a preprocessor include system like C/C++ however I think it would still be possible, I'd prefer a solution restricted to the grammar however.</p>
http://stackoverflow.com/questions/1788796/what-is-parsing9What is parsing?Grace2009-11-24T09:02:28Z2009-11-24T11:20:35Z
<p>Parsing is something i come accross alot in development, but as a junior its one of those things i assume i will get the hang of at some point, when its needed. In my current project ive been told to find and use an HTML parser for a certain function, I have found a couple on the web, but what does an HTML parser actually do? And what does it mean to parse an object??</p>
http://stackoverflow.com/questions/379306/is-boost-guilty-of-being-un-boost-like3Is Boost guilty of being un-Boost-like?ApplePieIsGood2008-12-18T21:16:40Z2009-11-19T15:42:14Z
<p>I was just reading the intro to the Boost::Spirit LL Parser framework. The preface suggests that the author and creator likes to use such parsing technology to read in program options. Doesn't Boost have its own library for program options?</p>
<p>I am wondering, does the Boost committee review all the library notes for common themes and style? It seems the doc for each library have their own flavor to them.</p>
<p>Small gripe for an otherwise amazing piece of software, I just found it curious.</p>
http://stackoverflow.com/questions/428364/pure-javascript-yaml-library-that-supports-both-dump-and-load5Pure Javascript YAML library that supports both dump and load?dreftymac2009-01-09T14:57:54Z2009-11-16T22:54:59Z
<p>Does such a thing exist for <a href="http://en.wikipedia.org/wiki/Yaml" rel="nofollow">YAML</a> (aka <a href="http://yaml.org" rel="nofollow">YAML</a>)?</p>
<p>If this existed at one time, it must have been obliterated because the latest search turned up nada. It looks like there are plenty of implementations that <strong>dump</strong> from Javascript to YAML output only, but having trouble finding an implementation that supports both dump and load.</p>
<p>Is anyone working on such a thing ... or is the demand simply far too low for this.</p>
http://stackoverflow.com/questions/829643/processing-json-objects-in-jsp0processing json objects in jspunknown (google)2009-05-06T13:45:07Z2009-10-30T06:22:19Z
<p>i have a JSON object sent from the browser to the jsp page. how do i receive that object and process it in jsp. do i need any specific parsers? i have used the following piece of code. but it wouldnt work. essentially i should read the contents of the object and print them in the jsp. </p>
<p><%@page language="java" import="jso.JSONObject"%></p>
<p><%
JSONObject inp=request.getParameter("param1");
%></p>
<p><% for(int i=0;i
<%=inp.getString(i)%>
<%
}
%></p>
http://stackoverflow.com/questions/587441/roll-your-own-nmea-parser-or-use-an-open-source-gps-parser4Roll your own NMEA parser or use an open source GPS parser?Adam Davis2009-02-25T19:25:59Z2009-10-08T20:05:53Z
<p>I do a lot of location aware computing, often incorporating GPS. I have my own little simple NMEA parser that doesn't do anything special - just transforms the GPS specific sentences into usable numbers, flags, and so forth.</p>
<p>However, there is a lot of active development done on projects such as GPSD and Gypsy. If GPS were a simple matter, the projects would have finished long ago and simply gone into maintenance mode.</p>
<ul>
<li>What do they know/do that I don't know about, and therefore my code doesn't account for?</li>
</ul>
http://stackoverflow.com/questions/1509134/is-there-a-free-eml-parser-available-somewhere0Is there a free .eml parser available somewhere? Pace2009-10-02T12:04:46Z2009-10-02T12:13:05Z
<p>Hi, </p>
<p>I am writing an add-on for my intranet to allow my users to just email "itsupport" and parse the from as the user who logged the job and the body as the issue. </p>
<p>Does anyone know if their is a free parser available so I don't have to look at writing something myself? (no point re-inventing the wheel right :) )</p>
<p>Thanks for any advice / links / suggestions.
Barry</p>
http://stackoverflow.com/questions/489538/is-there-a-good-strict-date-parser-for-java2Is there a good *strict* date parser for Java?MetroidFan20022009-01-28T21:47:37Z2009-09-28T08:43:19Z
<p>Is there a good, <em>strict</em> date parser for Java? I have access to Joda-Time but I have yet to see this option. I found the "Is there a good date parser for Java" question, and while this is related it is sort of the opposite. Whereas that question was asking for a lenient, more fuzzy-logic and prone to human error parser, I would like a strict parser. For example, with both JodaTime (as far as I can tell) and simpleDateFormat, if you have a format "MM/dd/yyyy":</p>
<p>parse this: 40/40/4353</p>
<p>This becomes a valid date. I want a parser that knows that 40 is an invalid month and date. Surely some implementation of this exists in Java?</p>
http://stackoverflow.com/questions/28256/equation-expression-parser-with-precedence6Equation (expression) parser with precedence?Adam Davis2008-08-26T14:52:05Z2009-09-18T20:44:47Z
<p>I've developed an equation parser using a simple stack algorithm that will handle binary (+, -, |, &, *, /, etc) operators, unary (!) operators, and parenthesis.</p>
<p>Using this method, however, leaves me with everything having the same precedence - it's evaluated left to right regardless of operator, although precedence can be enforced using parenthesis.</p>
<p>So right now "1+11*5" returns 60, not 56 as one might expect.</p>
<p>While this is suitable for the current project, I want to have a general purpose routine I can use for later projects.</p>
<p><strong>Edited for clarity:</strong></p>
<p>What is a good algorithm for parsing equations with precedence?</p>
<p>I'm interested in something simple to implement and understand that I can code myself to avoid licensing issues with available code.</p>
<p><strong>Grammar:</strong></p>
<p>I don't understand the grammar question - I've written this by hand. It's simple enough that I don't see the need for YACC or Bison. I merely need to calculate strings with equations such as "2+3 * (42/13)".</p>
<p><strong>Language:</strong></p>
<p>I'm doing this in C, but I'm interested in an algorithm, not a language specific solution. C is low level enough that it'll be easy to convert to another language should the need arise.</p>
<p><strong>Code Example</strong></p>
<p>I posted the <a href="http://www.ubasics.com/simple%5Fc%5Fequation%5Fparser" rel="nofollow">test code for the simple expression parser</a> I was talking about above. The project requirements altered and so I never needed to optimize the code for performance or space as it wasn't incorporated into the project. It's in the original verbose form, and should be readily understandable. If I do anything further with it in terms of operator precedence, I'll probably choose <a href="http://stackoverflow.com/questions/28256/equation-expression-parser-with-precedence/783132#783132">the macro hack</a> because it matches the rest of the program in simplicity. If I ever use this in a real project, though, I'll be going for a more compact/speedy parser.</p>
<p><strong>Related question</strong> </p>
<blockquote>
<p><a href="http://stackoverflow.com/questions/114586/smart-design-of-a-math-parser">Smart design of a math parser?</a></p>
</blockquote>
<p>-Adam</p>
http://stackoverflow.com/questions/905168/html-parser-redirection-limit-reached-error0HTML Parser: Redirection limit reached errorNaroito2009-05-25T02:55:50Z2009-09-14T18:00:00Z
<p>Hello all, I am using DOM Simple HTML Parser, and return this error:</p>
<p>Warning: file_get_contents(h**p://info.xxxx.org/eng/txt_detail.jsp?cid=2_8&channelid=3&primarykeyvalue=132234142&libid=2&doctype=1) [function.file-get-contents]: failed to open stream: Redirection limit reached</p>
<p>Somebody please help.</p>
http://stackoverflow.com/questions/83405/xml-parser-for-javascript6XML Parser for JavascriptGulzar2008-09-17T13:47:42Z2009-09-09T10:52:09Z
<p>I am looking for a good JavaScript library for parsing XML data. It should be much easier to use than the built-in <a href="http://www.w3schools.com/Xml/xml_parser.asp" rel="nofollow">XML DOM parsers</a> bundled with the browsers.</p>
<p>I got spoiled a bit working with JSON and looking forward to something on similar lines for XML.</p>
http://stackoverflow.com/questions/1065031/is-the-html-agility-pack-still-the-best-net-html-parser1Is the Html Agility Pack still the best .NET HTML parser?Ian Ringrose2009-06-30T17:45:31Z2009-08-25T11:19:21Z
<p><a href="http://www.codeplex.com/htmlagilitypack" rel="nofollow">Html Agility Pack</a> was given as the answer to a <a href="http://stackoverflow.com/questions/100358/looking-for-c-html-parser">StackOverflow question</a> some time ago, is it still the best option? What other options should be considered? Is there something more lightweight?</p>
http://stackoverflow.com/questions/1315441/what-is-the-best-programming-language-to-write-parsers-and-compilers0what is the best programming language to write parsers and compilers ?radi2009-08-22T07:55:46Z2009-08-22T10:04:05Z
<p>please i need some resources to begin (i am a cs student)</p>
http://stackoverflow.com/questions/1250038/best-practices-to-parse-emails-with-ruby1Best practices to parse emails with RubyDan Sosedoff2009-08-08T22:18:59Z2009-08-21T03:06:34Z
<p>Hello Ruby/Rails/Merb developers!</p>
<p>Im currently working on a web project that will have a feature to communicate with clients by email. So, let`s say i created account for a customer in my admin panel, then created a topic/thread to discuss questions, tasks and other work-related stuff. So, the customer will receive email notification. Also customer will be able to log-in into the system and write responses within the system. But what im trying to do is: after customer responded to notification (which contains special identification code of message), i need to import that response into the thread. It makes communication between clients really convenient. </p>
<p>Also, the solution needs to operate with file attachments too.</p>
<p>The only one way i can do this right now is to develop special mail-checking daemon, that will be fetching mail from notifications account and automatically add data to central database. Probably, it is not a best idea.</p>
<p>I have seen such example in 37signals` BaseCamp software. </p>
<p><strong>Question: What is the best practices do to this?</strong> </p>
http://stackoverflow.com/questions/369675/looking-for-xml-parser0Looking for XML parserMichael J2008-12-15T20:58:33Z2009-08-15T21:48:46Z
<p>I have been tasked with finding an open source DOM XML parser. The parser must minimally support XPath 1.0. Schema support is desired, but not a deal breaker</p>
<p>The files we are parsing will be small so speed and memory consumption are not a large concern. </p>
<p>Any OO language (C++, C#, Java, etc.). </p>
<p>To clarify, the plan is to integrate an XML parser into an application much tighter than can be done with an external parser. We are creating an adaptive object model based on XML (change the XML, change the object model.) To do this we need to integrate the parser at a pretty low level. This results in a level of elegance that needs to be experienced to be understood (thank you Mr. Yoder). Part of that elegance disappears if we don't have the ability to navigate this object model via XPath. </p>
<p>We have created a prototype that uses an operating system provided parser. It worked pretty well, but suffers from complexity and performance problems. But hey, it was a prototype. Now I want to do the real thing and I can write the parser from scratch. (I've done that part and it was kinda easy.) Now, the XPath engine is a different story. I'm pretty sure I won't get that done in a weekend. </p>
http://stackoverflow.com/questions/623503/what-is-the-difference-between-flex-lex-and-yacc-bison4What is the difference between Flex/Lex and Yacc/Bison ?Dumb Questioner2009-03-08T12:31:52Z2009-07-27T20:33:31Z
<p>What is the difference between Flex & Lex and Yacc & Bison. I searched the Internet wildly and I didn't find any solid answer.</p>
<p>Can I install pure Lex and Yacc on Ubuntu, or I can install only flex and bison. I am confused.</p>
<p>Is Lex or Yacc still being maintained by someone ?</p>
<p>Are all of them free ?</p>
<p>If Lex is not free why do I have it installed on my Ubuntu distribution ?</p>
<p>lex --version</p>
<p>lex 2.5.35</p>
http://stackoverflow.com/questions/489783/is-scalas-haskells-parser-combinators-sufficient5Is Scalas/Haskells parser combinators sufficient?DanielSwe2009-01-28T22:51:28Z2009-07-08T21:58:58Z
<p>I'm wondering if Scalas/Haskells parser combinators are sufficient for parsing a programming language. More specifically the language MiniJava. I'm currently reading compiller construction and jflex and java cup is quite painful to work with so I'm wondering if I could/should use parser combinators instead.
The MiniJava syntax is very small.
MiniJavas BNF: <a href="http://www.cambridge.org/us/features/052182060X/grammar.html" rel="nofollow">http://www.cambridge.org/us/features/052182060X/grammar.html</a></p>
http://stackoverflow.com/questions/770577/is-the-antlr-parser-generator-best-for-a-c-app-with-constrained-memory1Is the ANTLR parser generator best for a C++ app with constrained memory?Crashworks2009-04-21T00:15:35Z2009-06-27T02:15:00Z
<p>I'm looking for a good parser generator that I can use to read a custom text-file format in our large commercial app. Currently this particular file format is read with a handmade recursive parser but the format has grown and complexified to the point where that approach has become unmanageable.</p>
<p>It seems like the ultimate solution would be to build a proper grammar for this format and then use a real parser generator like yacc to read it, but I'm having trouble deciding which such generator to use or even if they're worth the trouble at all. I've looked at ANTLR and Spirit, but our project has specific constraints beyond <a href="http://stackoverflow.com/questions/428892/what-parser-generator-do-you-recommend">earlier answers</a> that make me wonder if they're as appropriate for us. In particular, I need:</p>
<ul>
<li><strong>A parser that generates C or C++ code with MSVC.</strong> ANTLR 3 doesn't support C++; it claims to generate straight C but the docs on getting it to actually work are sort of confusing.</li>
<li><strong>Severely constrained memory usage.</strong> Memory is at a huge premium in our app and even tiny leaks are fatal. I need to be able to override the parser's memory allocator to use our custom malloc(), or at the very least I need to give it a contiguous pool from which it draws all its memory (and which I can deallocate en bloc afterwards). I can spare about 200kb for the parser executable itself, but whatever dynamic heap it allocates in parsing has to get freed afterwards.</li>
<li><strong>Good performance.</strong> This is less critical but we ought to be able to parse 100kb of text in no more than a second on a 3ghz processor. </li>
<li><strong>Must be GPL-free.</strong> We can't use GNU code.</li>
</ul>
<p>I like ANTLRworks' IDE and debugging tools, but it looks like getting its C target to actually work with our app will be a huge undertaking. Before I embark on that palaver, is ANTLR the right tool for this job?</p>
<p>The text format in question looks something like:</p>
<pre><code>attribute "FluxCapacitance" real constant
asset DeLorean
{
//comment foo bar baz
model "delorean.mdl"
animation "gullwing.anm"
references "Marty"
loadonce
}
template TimeMachine
{
attribute FluxCapacitance 10
asset DeLorean
}
</code></pre>
http://stackoverflow.com/questions/514475/help-building-a-regular-expression-in-python-using-the-re-module1Help building a regular expression in python using the re moduleFlyingToaster2009-02-05T03:51:27Z2009-06-22T01:23:16Z
<p>Hi guys, im writing a simple propositional logic formula parser in python which uses regular expressions re module and the lex/yacc module for lexing/parsing. Originally my code could pick out implication as ->, but adding logical equivalence (<->) caused issues with the compiled expressions</p>
<pre><code>IMPLICATION = re.compile('[\s]*\-\>[\s]*')
EQUIVALENCE = re.compile('[\s]*\<\-\>[\s]*')
...
elif self.IMPLICATION.search(formula[0].strip()):
...
elif self.EQUIVALENCE.search(formula[0].strip()):
...
</code></pre>
<p>I originally tried adding [^<] to the front of -> to make it ignore instances of equivalence but this just made it not accept any instances of implication at all. Any possible help would be warmly welcome :)</p>
http://stackoverflow.com/questions/599188/javamail-question-or-bug0JavaMail Question or Bug?bnantz2009-03-01T03:25:33Z2009-06-18T18:08:13Z
<p>I have a question about Java Mail and how it works with streams. In Java Mail 1.4.1 there is a <a href="http://java.sun.com/products/javamail/javadocs/javax/mail/internet/MimeMessage.html#MimeMessage%28javax.mail.Session,%20java.io.InputStream%29" rel="nofollow">MimeMessage constructor that accepts a stream</a>. My understanding is that I could pass a stream to this constructor and it would parse it for me into a MimeMessage. I wrote 2 tests to prove this. The first test sends in a stream that contains only a partial multi-part MIME message. The second test sends in a stream that contains 2 complete multi-part MIME messages. Neither work the way I expected. The first does not throw an exception and the second reads the entire stream into a single message somehow. Is this a bug in Java Mail or am I using the wrong kind of streams? Or am I missing something bigger?</p>
<p>It is a little long but here is the test code:</p>
<pre><code>import java.io.BufferedInputStream;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Properties;
import javax.activation.DataHandler;
import javax.activation.DataSource;
import javax.mail.BodyPart;
import javax.mail.MessagingException;
import javax.mail.Multipart;
import javax.mail.Session;
import javax.mail.internet.MimeBodyPart;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMultipart;
import javax.mail.util.ByteArrayDataSource;
import junit.framework.TestCase;
public class mimeTest extends TestCase {
public void testPartialMulitpartMessage() throws MessagingException, IOException
{
Properties props = new Properties();
Session session = Session.getInstance(props, null);
String testMsg1 = "test";
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
// Step 1 - Create first MIME message
MimeMessage mesg = new MimeMessage(session);
Multipart mp = new MimeMultipart("mixed");
//create a child part
BodyPart bodyPart = new MimeBodyPart();
bodyPart.setContent(testMsg1, "application/x-special");
bodyPart.setHeader("Content-Length", String.valueOf(testMsg1.length()));
DataSource ds = new ByteArrayDataSource(testMsg1, "application/x-special");
bodyPart.setDataHandler(new DataHandler(ds));
bodyPart.setHeader("Content-Transfer-Encoding", "8bit");
// Add the child part to the multipart
mp.addBodyPart(bodyPart);
// Put the MultiPart into the Message
mesg.setContent(mp);
// Step 2 - write to a stream
mesg.writeTo(byteArrayOutputStream);
byte bytes[] = byteArrayOutputStream.toByteArray();
ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream(bytes, 0, 10);
BufferedInputStream bufferedInputStream = new BufferedInputStream(byteArrayInputStream);
boolean thrown = false;
try
{
//Why does this not throw a messageexception.
MimeMessage mesg2 = new MimeMessage(session, bufferedInputStream);
}
catch(MessagingException me){
thrown = true;
}
if(!thrown) {
assertTrue("Expected exception not thrown.", false);
}
}
public void testMulitpleMulitpartMessages() throws MessagingException, IOException {
Properties props = new Properties();
Session session = Session.getInstance(props, null);
String testMsg1 = "test";
String testMsg2 = "test1";
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
// Step 1 - Create first MIME message
MimeMessage mesg = new MimeMessage(session);
Multipart mp = new MimeMultipart("mixed");
//create a child part
BodyPart bodyPart = new MimeBodyPart();
bodyPart.setContent(testMsg1, "application/x-special");
bodyPart.setHeader("Content-Length", String.valueOf(testMsg1.length()));
DataSource ds = new ByteArrayDataSource(testMsg1, "application/x-special");
bodyPart.setDataHandler(new DataHandler(ds));
bodyPart.setHeader("Content-Transfer-Encoding", "8bit");
// Add the child part to the multipart
mp.addBodyPart(bodyPart);
// Put the MultiPart into the Message
mesg.setContent(mp);
// Step 2 - write to a stream
mesg.writeTo(byteArrayOutputStream);
// Step 3 - Create second MIME message
MimeMessage mesg2 = new MimeMessage(session);
mp = new MimeMultipart("mixed");
//create a child part
bodyPart = new MimeBodyPart();
bodyPart.setContent(testMsg2, "application/x-special");
bodyPart.setHeader("Content-Length", String.valueOf(testMsg2.length()));
ds = new ByteArrayDataSource(testMsg2, "application/x-special");
bodyPart.setDataHandler(new DataHandler(ds));
bodyPart.setHeader("Content-Transfer-Encoding", "8bit");
// Add the child part to the multipart
mp.addBodyPart(bodyPart);
// Put the MultiPart into the Message
mesg2.setContent(mp);
// Step 4 - write to the same stream
mesg2.writeTo(byteArrayOutputStream);
// Step 6 - read the two messages back
ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream(byteArrayOutputStream.toByteArray());
BufferedInputStream bufferedInputStream = new BufferedInputStream(byteArrayInputStream);
List<MimeMessage> listMessages = new ArrayList<MimeMessage>();
while (bufferedInputStream.available() > 0) {
//http://java.sun.com/products/javamail/javadocs/javax/mail/internet/MimeMessage.html#MimeMessage(javax.mail.Session,%20java.io.InputStream)
//The InputStream will be left positioned at the end of the data for the message.
//WHY does this not work? It reads the whole stream.
mesg = new MimeMessage(session, bufferedInputStream);
//output the message
listMessages.add(mesg);
}
assertEquals(2, listMessages.size());
assertTrue(listMessages.get(0).equals(mesg));
assertTrue(listMessages.get(1).equals(mesg2));
}
}
</code></pre>
http://stackoverflow.com/questions/675255/c-parser-model-for-java1C++ Parser/Model for JavaJoseph2009-03-23T21:12:21Z2009-06-17T13:12:20Z
<p>I was wondering if anyone knows of existing C++ parsers/code models that can be used programmatically in Java. I'm looking for something similar to the Eclipse CDT that can be used as a library from Java (and that does not rely upon Eclipse). Thanks in advance.</p>
http://stackoverflow.com/questions/92537/abstract-syntax-tree1Abstract Syntax Treecmd2008-09-18T13:30:45Z2009-06-17T09:31:20Z
<p>I have an AST derived from the ANTLR Parser Generator for Java. What I want to do is somehow construct a control flow graph of the source code, where each statement or expression is a unique Node. I understand there must be some recursiveness to this identification, I was wondering what you would suggest as the best option and if ANTLR has a toolset I can use for this job.
Cheers,
Chris</p>
<p><hr /></p>
<p>EDIT - My main concern is to get a control flow graph(CFG) from the AST. This way I can get a tree representation of the source. To clarify, both the source code and the implementation language is Java.</p>
http://stackoverflow.com/questions/244253/writing-a-parser-in-the-need-of-guides-and-research-papers2Writing a parser - In the need of guides and research papers.kitsune2008-10-28T18:11:25Z2009-06-17T08:32:02Z
<p>My knowledge about implementing a parser is a bit rusty.</p>
<p>I have no idea about the current state of research in the area, and could need some links regarding recent advances and their impact on performance. </p>
<p>General resources about writing a parser are also welcome, (tutorials, guides etc.) since much of what I had learned at college I have already forgotten :)</p>
<p>I have the Dragon book, but that's about it.</p>
<p>And does anyone have input on parser generators like ANTLR and their performance? (ie. comparison with other generators)</p>
<p><strong>edit</strong> My main target is RDF/OWL/SKOS in N3 notation. </p>
http://stackoverflow.com/questions/215517/whats-the-best-way-to-strip-literal-values-out-of-sql-to-correctly-identify-db-w4What's the best way to strip literal values out of SQL to correctly identify db workload?Mark S2008-10-18T20:08:04Z2009-06-17T08:27:12Z
<p>Does anyone know of any code or tools that can strip literal values out of SQL statements?</p>
<p>The reason for asking is I want to correctly judge the SQL workload in our database and I'm worried I might miss out on bad statements whose resource usage get masked because they are displayed as separate statements. When, in reality, they are pretty much the same thing except for different IDs being passed in. </p>
<p>I'd prefer a database independent solution if any exists. I had thought there might be a nifty Perl module for this but I haven't found any.</p>
<p>Thanks for your help.</p>
http://stackoverflow.com/questions/41785/learning-resources-on-parsers-interpreters-and-compilers7Learning Resources on Parsers, Interpreters, and Compilersakdom2008-09-03T14:25:57Z2009-06-17T07:58:49Z
<p>I've been wanting to play around with writing my own language for a while now (ostensibly for the learning experience) and as such need to be relatively grounded in the construction of Parsers, Interpreters, and Compilers. So:</p>
<ul>
<li><strong>Does anyone know of any good resources on constructing Parsers, Interpreters, and Compilers?</strong></li>
</ul>
<p>EDIT: I'm not looking for compiler-compilers/parser-compilers such as Lex, Yacc and Bison...</p>