User kdgregory - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T19:31:17Zhttp://stackoverflow.com/feeds/user/42126http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1866886/warning-validation-was-turned-on-but-an-org-xml-sax-errorhandler/1866982#18669820Answer by kdgregory for Warning: validation was turned on but an org.xml.sax.ErrorHandler...kdgregory2009-12-08T13:29:16Z2009-12-08T13:29:16Z<p>The exception says that an <code>ErrorHandler</code> wasn't set. This means that the parser uses its built-in error handler, which simply writes messages to the console. If you actually want to validate, you need to create an <a href="http://java.sun.com/javase/6/docs/api/org/xml/sax/ErrorHandler.html" rel="nofollow">ErrorHandler</a> implementation and attach it to the <code>DocumentBuilder</code>.</p>
<p>For more information, read this: <a href="http://www.kdgregory.com/index.php?page=xml.parsing" rel="nofollow">http://www.kdgregory.com/index.php?page=xml.parsing</a> (error handlers are about 1/3 of the way down).</p>
<p>Or, as other responses have suggested, you can just turn validation off.</p>
http://stackoverflow.com/questions/1847597/how-to-best-output-large-single-line-xml-file-with-java-eclipse/1847837#18478371Answer by kdgregory for How to best output large single line XML file (with Java/Eclipse)?kdgregory2009-12-04T15:50:36Z2009-12-04T17:12:36Z<p>I'm going to assume that you're building an <code>org.w3c.Document</code>, and writing it using a serializer. If you're hand-building an XML string, you're all but guaranteed to be producing something that's almost-but-not-quite XML, and I strongly suggest fixing that first.</p>
<p>That said, if you're writing to a stream from the serializer (and System.out is a stream), then you should be writing directly to the stream rather than writing to a string and printing that (which you'd do with a StringWriter). The reason for this is that the XML serializer will properly handle character encodings, while serializer to String to stream may not.</p>
<p><hr></p>
<p>If you're not currently building a DOM, and are concerned about the memory requirements of doing so, then I suggest looking at the Practical XML library (which I maintain), in particular the <a href="http://practicalxml.sourceforge.net/apidocs/net/sf/practicalxml/builder/package-frame.html" rel="nofollow">builder</a> package. It uses lightweight nodes, that are then output via a serializer using a SAX transform.</p>
<p><hr></p>
<p>Edit in response to comment:</p>
<p>OK, you've got the serializer covered with XStream. I'm next going to assume that you are calling <code>XStream.toXML(Object)</code> to produce the string, and recommend that you call the variant <code>toXML(Object, OutputStream)</code>, and pass it the actual output. The reason for this is that XML is very sensitive to character encoding, which is something that often breaks when converting strings to streams.</p>
<p>This may, of course, cause issues with building your POST request, particularly if you're using a library that doesn't provide you an OutputStream.</p>
http://stackoverflow.com/questions/1847913/java-enum-behavior/1847982#18479821Answer by kdgregory for Java Enum behaviorkdgregory2009-12-04T16:11:35Z2009-12-04T16:11:35Z<p>You don't say what type "c" is, but I suspect its setter is not doing what you think it is -- the NullPointerException is an indication of auto-unboxing gone wrong. You enum itself doesn't appear to have an issue, although returning a <code>Long</code> when the member is <code>long</code> is a code smell.</p>
<p>Actually, calling <code>c.setComponentTypeId()</code> with the enum's ID is another code smell. Why aren't you using the enum itself, with <code>c.setComponentType()</code>? The way you're doing it pretty much loses you all the value of enums.</p>
http://stackoverflow.com/questions/1847240/gvim-replace-regex/1847267#18472670Answer by kdgregory for (g)vim replace regexkdgregory2009-12-04T14:25:14Z2009-12-04T14:25:14Z<p>While you can create capture groups (like you're doing), I think the easiest approach is to do the job in multiple steps, with very simple regexes and "flag" words. For example:</p>
<pre><code>:%s/print "testcode.*/printnlog(XXX&XXX);/
:%s/XXXprint //
:%s/;XXX//
</code></pre>
<p>In these examples, I use "XXX" to indicate boundaries that should later be trimmed (you can use anything that doesn't appear in your code). The ampersand (&) takes the entire match string and inserts it into the replacement string.</p>
<p>I don't know about other people, but I can type and execute these three regexes faster than I can think through a capture group.</p>
http://stackoverflow.com/questions/1833581/when-to-use-intern/1833726#183372612Answer by kdgregory for When to use intern()kdgregory2009-12-02T15:43:06Z2009-12-02T16:03:45Z<p>This is a technique to ensure that <code>CONSTANT</code> is not actually a constant.</p>
<p>When the Java compiler sees a reference to a final static primitive or String, it inserts the actual value of that constant into the class that uses it. If you then change the constant value in the defining class but don't recompile the using class, it will continue to use the old value.</p>
<p>By calling intern() on the "constant" string, it is no longer considered a static constant by the compiler, so the using class will actually access the defining class' member on each use.</p>
<p><hr></p>
<p>JLS citations:</p>
<ul>
<li><p>definition of a compile-time constant: <a href="http://java.sun.com/docs/books/jls/third%5Fedition/html/expressions.html#5313" rel="nofollow">http://java.sun.com/docs/books/jls/third%5Fedition/html/expressions.html#5313</a></p></li>
<li><p>implication of changes to a compile-time constant (about halfway down the page): <a href="http://java.sun.com/docs/books/jls/third%5Fedition/html/binaryComp.html#45139" rel="nofollow">http://java.sun.com/docs/books/jls/third%5Fedition/html/binaryComp.html#45139</a></p></li>
</ul>
http://stackoverflow.com/questions/1827543/java-threads-interpreting-thread-states-of-a-running-jvm/1827632#18276324Answer by kdgregory for Java threads: interpreting thread states of a running JVMkdgregory2009-12-01T17:18:50Z2009-12-01T17:25:40Z<p>This level of output doesn't provide enough information to make such statements.</p>
<p>As an example, consider the BLOCKED state: there are many things that can cause a thread to be blocked. Two of them are waiting for data to come from a client, and waiting for data to come back from a database. In the first case, your application is idle, in the second it's overloaded.</p>
<p>Edit: not having looked at the output from jstack, I suppose that these two conditions could also be represented as IN_NATIVE. However, the same comment holds: you don't know what they're doing, so you can't make any statements about the application as a whole.</p>
http://stackoverflow.com/questions/1823245/using-maven-to-distribute-a-swing-application-that-can-have-each-dependency-indiv/1826080#18260800Answer by kdgregory for Using maven to distribute a swing application that can have each dependency individually trackedkdgregory2009-12-01T13:03:41Z2009-12-01T13:03:41Z<p>It seems like this is a perfect case for <a href="http://java.sun.com/javase/technologies/desktop/javawebstart/index.jsp" rel="nofollow">Java Web Start</a>, particularly since you're already thinking of keeping the dependencies on a webserver. I don't know if Maven has a WS plugin; I remember writing code for Maven 1 to do the job.</p>
<p>If you'd like to see WebStart in action, I recommend the FindBugs demo page: <a href="http://findbugs.sourceforge.net/demo.html" rel="nofollow">http://findbugs.sourceforge.net/demo.html</a> -- you'll see a link in the second paragraph.</p>
http://stackoverflow.com/questions/1802689/svn-partial-branch/1822079#18220791Answer by kdgregory for SVN partial branchkdgregory2009-11-30T20:02:38Z2009-11-30T20:08:00Z<p>If I read your question correctly, this is a simple matter of using svn copy to copy only the desired directories into a branch -- basically, a combination of answers from <em>Mike Kushner</em> and <em>Ivan Krechetov</em>. I think, however, it might be easier to understand after running through the steps yourself, so the rest of this post will create a sample repository and show the copies and merges.</p>
<p>I'm going to assume that you're using the "standard" repository layout, which at the top level has three sub-directories, <em>trunk</em>, <em>branches</em>, and <em>tags</em>. And that your <em>10</em>, <em>20</em>, <em>30</em>, and <em>40</em> directories are under trunk. In other words:</p>
<pre><code>trunk
10
20
30
40
branches
tags
</code></pre>
<p>And, as Mike pointed out, your goal will be to have a structure that looks like this:</p>
<pre><code>trunk
10
20
30
40
branches
sandbox
20
40
tags
</code></pre>
<p>It's unclear from your posting (at least as-of the current edit), but you may have a directory structure in which <em>10</em>, <em>20</em>, et al are at the top level. In this case, you'll need to create a new top-level directory, which I'll call <em>dev</em>, so that your overall repository looks like the following:</p>
<pre><code>10
20
30
40
dev
20
40
</code></pre>
<p>Note that you cannot create <em>dev</em> under <em>20</em>. Well, physically you can, but you're almost guaranteed to break your build when doing so.</p>
<p>OK, so let's walk through an example, in which we create a new repository and put some files in it. You have to be able to run the <em>svnadmin</em> command (which you should be able to do, unless you have a paranoid sysadmin). So pick a temporary directory, and execute the following commands (I'm running Linux; if you're running Windows the commands will be the same, but you'll need to put a Windows-specific path in the REPO variable):</p>
<pre><code>svnadmin create temp.repo
REPO="file://`pwd`/temp.repo"
svn co $REPO temp
</code></pre>
<p>This creates a new (empty) repository, and checks out a working copy of it. The second line needs some explanation: it simply creates the repository URL from the current directory. In my workspace directory, the URL looks like this:</p>
<pre><code>file:///home/kgregory/Workspace/temp.repo
</code></pre>
<p>OK, now that you've got a working copy, let's create the sample directory structure and some files:</p>
<pre><code>cd temp
svn mkdir trunk
svn mkdir branches
svn mkdir tags
svn commit -m "standard repo structure"
pushd trunk
svn mkdir 10
svn mkdir 20
svn mkdir 30
svn mkdir 40
svn commit -m "example sub-project structure"
echo "this doesn't change" > 10/dontchange.txt
svn add 10/dontchange.txt
echo "this does change" > 20/change.txt
svn add 20/change.txt
svn status
svn commit -m "example files"
popd
</code></pre>
<p>At this point we have the sample directories and two files in them. Here's the output from <em>find</em>, excluding subversion's hidden directories:</p>
<pre><code>temp, 531> find . | grep -v svn
.
./tags
./trunk
./trunk/10
./trunk/10/dontchange.txt
./trunk/30
./trunk/20
./trunk/20/change.txt
./trunk/40
./branches
</code></pre>
<p>Next step is to create the sandbox directory, and make copies of the two directories that are going to be in it:</p>
<pre><code>svn mkdir branches/sandbox
pushd branches/sandbox
svn copy ${REPO}/trunk/20 .
svn copy ${REPO}/trunk/40 .
svn commit -m "make development branch"
popd
</code></pre>
<p>This is the important part: I creating the branch and copies in my working directory, as a copy from the repository. Normally, you just copy <code>trunk</code> into a child of <code>branches</code>, using <em>svn copy</em> with two repository arguments. That doesn't work here, because we want only two children of <code>trunk</code>. </p>
<p>After doing this, my working copy looks like this:</p>
<pre><code>temp, 539> find . | grep -v svn
.
./tags
./trunk
./trunk/10
./trunk/10/dontchange.txt
./trunk/30
./trunk/20
./trunk/20/change.txt
./trunk/40
./branches
./branches/sandbox
./branches/sandbox/20
./branches/sandbox/20/change.txt
./branches/sandbox/40
</code></pre>
<p>At this point, you'd normally check out the development branch into a new working directory and work there. So I'll do that (after a <em>cd</em> back to my Workspace directory):</p>
<pre><code>svn co ${REPO}/branches/sandbox sandbox
cd sandbox
</code></pre>
<p>And now make some changes:</p>
<pre><code>vi 20/change.txt
svn commit -m "changed on branch"
</code></pre>
<p>OK, now it's time to merge back to the trunk. So go back to the workspace, and check out just the trunk:</p>
<pre><code>svn co ${REPO}/trunk trunk
cd trunk
</code></pre>
<p>And merge from the sandbox. The merge process is described in the <a href="http://svnbook.red-bean.com/en/1.4/svn.branchmerge.commonuses.html#svn.branchmerge.commonuses.wholebr" rel="nofollow">Subversion docs</a>:</p>
<pre><code>svn merge -r 4:5 ${REPO}/branches/sandbox
svn status
</code></pre>
<p>That last command should show you that only the file <code>20/change.txt</code> was affected by the merge. Since you didn't copy the 10 or 30 directories into the branch, they won't be touched by the merge.</p>
http://stackoverflow.com/questions/1775622/detect-utf-16-file-content/1775730#17757300Answer by kdgregory for detect UTF-16 file contentkdgregory2009-11-21T15:11:15Z2009-11-21T18:29:39Z<p>First off, ASCII is 7-bit, so if any byte has its high bit set you know the file isn't ASCII.</p>
<p>The various "common" character sets such as ISO-8859-x, Windows-1252, etc, are 8-bit, so if every other byte is 0, you know that you're dealing with Unicode that only uses the ISO-8859 characters.</p>
<p>You'll run into problems where you're trying to distinguish between Unicode and some encoding such as UTF-8. In this case, almost every byte will have a value, so you can't make an easy decision. You can, as Pascal says do some sort of statistical analysis of the content: Arabic and Ancient Greek probably won't be in the same file. However, this is probably more work than it's worth.</p>
<p><hr></p>
<p>Edit in response to OP's comment:</p>
<p>I <em>think</em> that it will be sufficient to check for the presence of 0-value bytes (ASCII NUL) within your content, and make the choice based on that. The reason being that JavaScript keywords are ASCII, and ASCII is a subset of Unicode. Therefore any Unicode representation of those keywords will consist of one byte containing the ASCII character (low byte), and another containing 0 (the high byte).</p>
<p>My one caveat is that you carefully read the documentation to ensure that their use of the word "Unicode" is correct (I looked at <a href="https://developer.mozilla.org/en/JS%5FCompileScript" rel="nofollow">this page</a> to understand the function, did not look any further).</p>
http://stackoverflow.com/questions/1767264/java-hotspot-error/1770372#17703720Answer by kdgregory for Java HotSpot errorkdgregory2009-11-20T13:18:41Z2009-11-20T20:28:58Z<p>When I get unexpected segmentation violations, my first suspect is a third-party DLL. I see that you have one there, from SysIntellect. Is it something that you need to run? If not, then take it out of your classpath, and see if you still get the problem.</p>
<p>The crash appeared to have been triggered by a thread currently running JVM code (see "_thread_in_vm" in the thread listing), so it's possible that you've stumbled across a VM bug (but more likely that you're seeing memory corrupted by that third-party DLL).</p>
<p>On the off chance that it was a VM bug, I did a search on the <a href="http://bugs.sun.com/" rel="nofollow">Sun Bug Parade</a>, using the keywords "_thread_in_vm, jvm.dll+0xc8f23, 1.6.0_12-b04". No results returned, which indicates that either it's a rare bug or caused by outside interference. I mention the keywords because you'll generally see real bugs reporting the same PC ("jvm.dll+0xc8f23"), and it may be version-specific ("1.6.0_12-b04").</p>
<p>Good luck -- I've found that's the most helpful thing to say when faced with heap dumps.</p>
<p><hr></p>
<p>Edit: you say that SysIntellect is your codebase, and it's clearly being loaded as a DLL, but in a comment above you say that you're not using JNI. In that case, how are you accessing the DLL?</p>
<p>If you can reproduce in a Linux environment, I'd recommend <a href="http://valgrind.org/" rel="nofollow">Valgrind</a> to try to find any invalid accesses.</p>
http://stackoverflow.com/questions/1770216/error-at-json-missing-after-element-list-or-just-undefined/1770255#17702550Answer by kdgregory for Error at json: "missing ] after element list" or just "undefined"kdgregory2009-11-20T12:51:53Z2009-11-20T14:10:46Z<p>Taking out any suggestions as to the problem, as the OP's two postings have different content. But still recommending <a href="http://www.jsonlint.com/" rel="nofollow">JSONLint</a>.</p>
http://stackoverflow.com/questions/1762547/vtd-xml-inner-xpath-expressions/1762886#17628861Answer by kdgregory for VTD XML inner XPath Expressionskdgregory2009-11-19T12:15:00Z2009-11-19T12:15:00Z<p>The initial paragraphs seem to indicate that you want this:</p>
<pre><code>//test/bla
</code></pre>
<p>However, the ending paragraph seems to indicate that you want something different.</p>
http://stackoverflow.com/questions/1757363/java-hashmap-performance-optimization-alternative/1758881#17588811Answer by kdgregory for Java HashMap performance optimization / alternativekdgregory2009-11-18T20:36:08Z2009-11-18T20:46:13Z<p>Another poster already pointed out that your hashcode implementation will result in a lot of collisions due to the way that you're adding values together. I'm willing to be that, if you look at the HashMap object in a debugger, you'll find that you have maybe 200 distinct hash values, with extremely long bucket chains.</p>
<p>If you always have values in the range 0..51, each of those values will take 6 bits to represent. If you always have 5 values, you can create a 30-bit hashcode with left-shifts and additions:</p>
<pre><code> int code = a[0];
code = (code << 6) + a[1];
code = (code << 6) + b[0];
code = (code << 6) + b[1];
code = (code << 6) + b[2];
return code;
</code></pre>
<p>The left-shift is fast, but will leave you with hashcodes that aren't evenly distributed (because 6 bits implies a range 0..63). An alternative is to multiply the hash by 51 and add each value. This still won't be perfectly distributed (eg, {2,0} and {1,52} will collide), and will be slower than the shift.</p>
<pre><code> int code = a[0];
code *= 51 + a[1];
code *= 51 + b[0];
code *= 51 + b[1];
code *= 51 + b[2];
return code;
</code></pre>
http://stackoverflow.com/questions/1748874/will-serialized-object-contains-metadata/1748910#17489104Answer by kdgregory for will serialized object contains metadata?kdgregory2009-11-17T13:34:54Z2009-11-17T13:34:54Z<p>When an object is serialized, the object's class is written to the stream along with the contents of the object's non-transient fields. The deserializer will attempt to load that class (and there are several mechanisms for it to do that), then populate the non-transient fields.</p>
<p>The protocol spec is here: <a href="http://java.sun.com/javase/6/docs/platform/serialization/spec/protocol.html" rel="nofollow">http://java.sun.com/javase/6/docs/platform/serialization/spec/protocol.html</a></p>
<p>If by "metadata" you're referring to annotations on the class, then no, they are not serialized with the object itself, but are available on the class. If you mean something else, please describe what you mean.</p>
http://stackoverflow.com/questions/1745794/how-do-i-easily-change-a-xml-documents-doctype-in-java/1748811#17488110Answer by kdgregory for How do I easily change a XML document's doctype in Java?kdgregory2009-11-17T13:18:58Z2009-11-17T13:18:58Z<p>Why do you need to "remove whatever is already there and add the correct declarations"?</p>
<p>If you're using the XML file for input, and not writing it back out in some form, then the appropriate solution is to create an <code>EntityResolver</code>.</p>
<p>A complete description of the process is <a href="http://www.kdgregory.com/index.php?page=xml.parsing" rel="nofollow">here</a>, but the following code shows how to give the parser your own DTD, regardless of what the document says it wants:</p>
<pre><code>DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
dbf.setNamespaceAware(true);
dbf.setValidating(true);
DocumentBuilder db = dbf.newDocumentBuilder();
db.setEntityResolver(new EntityResolver()
{
public InputSource resolveEntity(String publicId, String systemId)
throws SAXException, IOException
{
return new InputSource(new StringReader(dtd));
}
});
</code></pre>
http://stackoverflow.com/questions/1746183/is-a-download-class-a-bad-candidate-for-immutability/1748778#17487781Answer by kdgregory for Is a Download class a bad candidate for immutability?kdgregory2009-11-17T13:12:10Z2009-11-17T13:12:10Z<p>I think your first mistake is trying to turn this class into a Swing model. Looking at the method list, it appears that the only reason you've done this is to let some Swing component interrogate the object to report progress. That violates the "tell, don't ask" principle of OO design.</p>
<p>So create a separate <code>DownloadProgress</code> object, and have your <code>Download</code> object update it on a regular basis. Since this object just contains data fields, its accessors can be synchronized. If you want it to push out notifications to the Swing component (again, tell don't ask), then your accessors queue up a callback using <a href="http://java.sun.com/javase/6/docs/api/javax/swing/SwingUtilities.html#invokeLater%28java.lang.Runnable%29" rel="nofollow">SwingUtilities.invokeLater()</a>.</p>
<p>That leaves controlling the actual download. If you use a <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/Semaphore.html" rel="nofollow">Semaphore</a>, then you can set it from one thread (I'll assume the Swing event dispatch thread) and read it from another (the thread that's actually doing the reading). You may have to take more drastic action, such as closing the socket underneath the reader. However, that's a completely different topic from synchronization.</p>
<p>Oh yeah, you are performing the download in a background thread, right? Not on the Swing event dispatch thread?</p>
http://stackoverflow.com/questions/1744533/jna-bytebuffer-not-getting-freed-and-causing-c-heap-to-run-out-of-memory/1744611#17446111Answer by kdgregory for JNA/ByteBuffer not getting freed and causing C heap to run out of memorykdgregory2009-11-16T20:21:52Z2009-11-16T20:21:52Z<p>I think that you've diagnosed properly: you never run out of Java heap, so the JVM doesn't garbage collect, and the mapped buffers aren't freed. The fact that you don't have problems when running GC manually seems to confirm this. You could also turn on verbose collection logging as a secondary confirmation.</p>
<p>So what can you do? Well, first thing I'd try is to keep the initial JVM heap size small, using the -Xms command-line argument. This can cause problems, if your program is constantly allocating small amounts memory on the Java heap, as it will run GC more frequently.</p>
<p>I'd also use the <em>pmap</em> tool (or whatever its equivalent is on Windows) to examine the virtual memory map. It's possible that you're fragmenting the C heap, by allocating variable-sized buffers. If that's the case, then you'll see an every larger virtual map, with gaps between "anon" blocks. And the solution there is to allocate constant-size blocks that are larger than you need.</p>
http://stackoverflow.com/questions/1741797/how-to-get-current-transfer-rate-in-commons-httpclient-3-x/1741954#17419543Answer by kdgregory for How to get current Transfer Rate in Commons HttpClient 3.x kdgregory2009-11-16T12:39:08Z2009-11-16T12:39:08Z<p>I haven't used HttpClient extensively, so there may be a simple hook. However, it appears that <a href="http://hc.apache.org/httpclient-3.x/apidocs/org/apache/commons/httpclient/HttpConnection.html#getResponseInputStream%28%29" rel="nofollow">HttpConnection.getResponseInputStream()</a> returns a simple <code>InputStream</code>. </p>
<p>To add the hook yourself, you'd need to override <code>HttpConnectionManager</code> and <code>HttpConnection</code>, to return a decorated stream that keeps track of the number of bytes read. You could then spin up a second thread to poll this stream and display the transfer rate, or (better) create the stream with a callback every N bytes (better because you don't have to care about concurrency, and you can also set N such that the callback is only invoked for large files).</p>
http://stackoverflow.com/questions/1730710/xpath-is-there-a-way-to-set-a-default-namespace-for-queries/1730778#17307781Answer by kdgregory for XPath: Is there a way to set a default namespace for queries?kdgregory2009-11-13T17:33:15Z2009-11-13T17:33:15Z<p>Unfortunately, no. There was some talk about defining a default namespace for <a href="http://commons.apache.org/jxpath/index.html" rel="nofollow">JxPath</a> a few years ago, but a quick look at the latest docs don't indicate that anything happened. You might want to spends some more time looking through the docs, though.</p>
<p>One thing that you could do, if you really don't care about namespaces, is to parse the document without them. Simply omit the call that you're currently making to <a href="http://java.sun.com/javase/6/docs/api/javax/xml/parsers/DocumentBuilderFactory.html#setNamespaceAware%28boolean%29" rel="nofollow">DocumentBuilderFactory.setNamespaceAware()</a>.</p>
<p>Also, note that your prefix can be anything you want; it doesn't have to match the prefix in the instance document. So you could use <code>h</code> rather than <code>html</code>, and minimize the visual clutter of the prefix.</p>
http://stackoverflow.com/questions/1721534/javacc-problem-generated-code-doesnt-find-all-parse-errors/1729122#17291221Answer by kdgregory for JavaCC Problem - Generated code doesn't find all parse errorskdgregory2009-11-13T13:08:51Z2009-11-13T13:08:51Z<p>The problem is that you don't get the error when using the parser, correct? Not that the parser generator is claiming that the grammar is incorrect (which seems to be the discussion in the other answer).</p>
<p>If that's the case, then I suspect that you're seeing the problem because the parser properly matches the <em>expression</em> production, then ignores subsequent input. I haven't used JavaCC for a long time, but iirc it didn't throw an error for not reaching end-of-stream.</p>
<p>Most grammars have an explicit top-level production to match the entire file, looking something like this (I'm sure the syntax is wrong, as I said, it's been a long time):</p>
<pre><code>input : ( expression ) *
</code></pre>
<p>Or, there's probably an EOF token that you can use, if you want to process just a single expression.</p>
http://stackoverflow.com/questions/1725287/how-can-i-uniquely-identify-a-desktop-application-making-a-request-to-my-api/1725390#17253901Answer by kdgregory for How can I uniquely identify a desktop application making a request to my API?kdgregory2009-11-12T21:03:42Z2009-11-12T21:19:59Z<p>You can't. As long as you put information in an uncontrolled place, you have to assume that information will be disseminated. Encryption doesn't really apply, because the only encryption-based approaches involve keeping a key on the client side.</p>
<p>The only real solution is to put the value of the service in the service itself, and make the desktop client be a low-value way to access that service. MMORPGs do this: you can download the games for free, but you need to sign up to play. The value is in the service, and the ability to connect to the service is controlled by the service (it authenticates players when they first connect).</p>
<p>Or, you just make it too much of a pain to break the security. For example, by putting a credential check at the start and end of every single method. And, because eventually someone will create a binary that patches out all of those checks, loading pieces of the application from the server. With credentials and timestamp checks in place, and using a different memory layout for each download.</p>
<p><hr></p>
<p>You comment proposes a much simpler scenario. Companies have a much stronger incentive to protect access to the service, and there will be legal agreements in effect regarding your liability if they fail to protect access.</p>
<p>The simplest approach is what Amazon does: provide a secret key, and require all clients to encrypt with that secret key. Yes, rogue employees within those companies can walk away with the secret. So you give the company the option (or maybe require them) to change the key on a regular basis. Perhaps daily.</p>
<p>You can enhance that with an IP check on all accesses: each customer will provide you with a set of valid IP addresses. If someone walks out with the desktop software, they still can't use it.</p>
<p>Or, you can require that your service be proxied by the company. This is particularly useful if the service is only accessed from inside the corporate firewall.</p>
http://stackoverflow.com/questions/1723861/something-funny-with-embedded-hsql/1725447#17254470Answer by kdgregory for something funny with embedded hsqlkdgregory2009-11-12T21:11:22Z2009-11-12T21:11:22Z<p>By default, HSQLDB keeps table contents in memory until the database is shut down: <a href="http://www.hsqldb.org/doc/guide/ch05.html#N10DD6" rel="nofollow">http://www.hsqldb.org/doc/guide/ch05.html#N10DD6</a></p>
<p>Depending on your needs (eg, working in a development environment) this may be sufficient. For production, however, I'd rather use a DBMS that writes each change to disk in multiple places (which for my means Oracle, although MySQL probably works just as well).</p>
http://stackoverflow.com/questions/1722029/what-is-the-difference-between-onclick-and-mouseclick/1722059#17220590Answer by kdgregory for what is the difference between onClick and mouseClick?kdgregory2009-11-12T13:05:39Z2009-11-12T13:05:39Z<p>Assuming that you're talking about Java, the difference is right there in the <a href="http://java.sun.com/javase/6/docs/api/java/awt/event/MouseEvent.html" rel="nofollow">documentation</a> for MouseEvent:</p>
<blockquote>
<p>Mouse Events</p>
<pre><code>* a mouse button is pressed
* a mouse button is released
* a mouse button is clicked (pressed and released)
* the mouse cursor enters the unobscured part of component's geometry
* the mouse cursor exits the unobscured part of component's geometry
</code></pre>
</blockquote>
<p>If you're talking about JavaScript, I'm going to assume that it's the difference between old style and new style <a href="http://www.quirksmode.org/js/introevents.html" rel="nofollow">event handling</a>. But I've only ever used onClick, so can't give a definitive answer.</p>
http://stackoverflow.com/questions/1714900/what-quirks-have-you-found-in-your-favorite-database/1715009#17150093Answer by kdgregory for What quirks have you found in your favorite database?kdgregory2009-11-11T12:52:19Z2009-11-11T12:52:19Z<p>Oracle's treatment of an empty VARCHAR as NULL is high on my list.</p>
http://stackoverflow.com/questions/1706859/how-to-handle-different-versions-of-xsd-files-in-one-java-application/1707980#17079801Answer by kdgregory for How to handle different versions of xsd files in one java application?kdgregory2009-11-10T13:30:26Z2009-11-10T13:30:26Z<p>First, you need some way to identify the schema appropriate for the particular instance document. You say that the documents have a <code>schemaLocation</code> attribute, so this is one solution. Note, however, that you have to specifically configure the parser to use this attribute, and a malicious document could specify a schema location that you don't control. Instead, I'd recommend getting the attribute value, and using it to find the appropriate schema in an internal table.</p>
<p>Next is access to the data. You don't say why you're using three different schemas. The only rational reason is an evolving data spec (ie, the schemas represent versions 1, 2, and 3 of the same data). If that's not your reason, then you need to rethink your design.</p>
<p>If you are trying to support an evolving data spec, then you need to answer the question "how do I deal with data that's missing." There are a couple of answers to this: one is to maintain multiple versions of the code. With refactoring of common functionality, this is not a bad idea, but it can easily become unmaintainable.</p>
<p>The alternative is to use a single codebase, and some sort of <a href="http://en.wikipedia.org/wiki/Adapter%5Fpattern" rel="nofollow">adapter</a> object that incorporates your rules. And if you go down this path, JAXB is the wrong solution, since it is tied to a schema. You might be able to use a permissive XML->Java converter: I believe <a href="http://xstream.codehaus.org/" rel="nofollow">XStream</a> will work, and I know that the 1.1 release of <a href="http://sourceforge.net/projects/practicalxml/" rel="nofollow">Practical XML</a> will work (since I wrote it) -- although you'd have to build it yourself.</p>
<p>Another, better alternative, depending on the complexity of the schema, is to develop a set of objects that use XPath to retrieve the data. I would probably implement using a "master" object that contains XPath expressions for every field, in every variant of the schema. Then create lightweight "wrapper" objects that hold a DOM version of your instance document, and use the XPath appropriate to the schema. Note, however, that this is limited tor read-only access.</p>
http://stackoverflow.com/questions/1707799/timezone-ids-in-java/1707846#17078460Answer by kdgregory for TimeZone ID's in Javakdgregory2009-11-10T13:09:20Z2009-11-10T13:09:20Z<p>Any timezone can be specified as "GMT" plus/minus an offset. The <a href="http://java.sun.com/javase/6/docs/api/java/util/TimeZone.html" rel="nofollow">timezone doc</a> refers to this as a "custom ID".</p>
<p>To populate a drop-down, I think you'd be better off coming up with a specific list of cities/offsets, with an association to the timezone. The array returned by <code>getAvailableIDs()</code> is huge -- 586 entries in my install -- and you definitely don't want to force your users to plod through this.</p>
http://stackoverflow.com/questions/1681218/is-it-possible-to-decouple-the-code-indexing-capabilities-of-eclipse/1700856#17008560Answer by kdgregory for Is it possible to decouple the code indexing capabilities of Eclipse?kdgregory2009-11-09T13:02:08Z2009-11-09T13:02:08Z<p>I would ignore Eclipse entirely: it's just going to distract you.</p>
<p>If you're performing static analysis, you'll almost certainly want to analyze bytecode. To find the call hierarchy, you look for the <em>invokeinstance</em>, <em>invokestatic</em>, and <em>invokespecial</em> bytecodes (see the <a href="http://java.sun.com/docs/books/jvms/second%5Fedition/html/Instructions2.doc6.html" rel="nofollow">JVM spec</a>). These reference a fully qualified class/methodname, and you can build your call hierarchy using a <code>Map<FuncRef,Set<FuncRef>></code>, where <code>FuncRef</code> is a class you define to hold the method call information.</p>
<p><a href="http://jakarta.apache.org/bcel/" rel="nofollow">BCEL</a> can help you with bytecode scanning.</p>
<p>However, you're going to have to do more work than that, particularly with <em>invokeinstance</em>, since you don't know what the real instance might be. Sometimes you can look backwards in the code to find an assignment, but more likely you're going to be guessing -- this is the Achilles heal of static analysis.</p>
http://stackoverflow.com/questions/1700650/checking-for-duplicate-files-without-storing-their-checksums/1700698#17006984Answer by kdgregory for Checking for Duplicate Files without Storing their Checksumskdgregory2009-11-09T12:26:51Z2009-11-09T12:32:14Z<p>Keep them in different places: have one directory where the client(s) upload files for processing, have another where those files are stored.</p>
<p>Or are you in a situation where the client can upload the same file multiple times? If that's the case, then you pretty much have to do a full comparison each time.</p>
<p>And checksums, while they give you confidence that two files are different (and, depending on the checksum, a very high confidence), are not 100% guaranteed. You simply can't take a practically-infinite universe of possible multi-byte streams and reduce them to a 32 byte checksum, and be guaranteed uniqueness.</p>
<p>Also: consider a layered directory structure. For example, a file <code>foobar.txt</code> would be stored using the path <code>/f/fo/foobar.txt</code>. This will minimize the cost of scanning directories (a linear operation) for the specific file.</p>
<p>And if you retain checksums, this can be used for your layering: <code>/1/21/321/myfile.txt</code> (using least-significant digits for the structure; the checksum in this case might be 87654321).</p>
http://stackoverflow.com/questions/1685985/is-4-5-years-the-midlife-crisis-for-a-programming-career/1694175#16941752Answer by kdgregory for Is 4-5 years the “Midlife Crisis” for a programming career?kdgregory2009-11-07T19:42:33Z2009-11-07T19:42:33Z<blockquote>
<p>I’ve also observed another issue that most so called “senior” programmer in “my working environment” are really not that senior skill wise. They are “senior” only because they’ve been a long time programmer, but the code they write or the decisions they make are absolutely rubbish! They don't want to learn, they don't want to be better they just want to get paid</p>
</blockquote>
<p>... followed by ...</p>
<blockquote>
<p>I’ve run into a mental state that I no longer intend to be a programmer for my future career. I started to think maybe there are better things out there to work on.</p>
</blockquote>
<p>Then it's time to start looking, and to take action. Because if you remain a programmer with this attitude, you will end up just like those "senior" people that you so clearly despise. The operative word is "trapped": you'll make enough money that you can't justify moving to something else, and your skills will be so narrow that you can't move within the industry.</p>
http://stackoverflow.com/questions/1661802/apache-server-keeps-crashing-caught-sigterm-shutting-down/1661888#16618880Answer by kdgregory for Apache server keeps crashing, "caught SIGTERM, shutting down"kdgregory2009-11-02T15:18:43Z2009-11-02T15:18:43Z<p>SIGTERM is used to restart Apache (provided that it's setup in init to auto-restart): <a href="http://httpd.apache.org/docs/2.2/stopping.html" rel="nofollow">http://httpd.apache.org/docs/2.2/stopping.html</a></p>
<p>The entries you see in the logs are almost certainly there because your provider used SIGTERM for that purpose. If it's truly crashing, not even serving static content, then that sounds like some sort of a thread/connection exhaustion issue. Perhaps a DoS that holds connections open?</p>
<p>Should definitely be something for your provider to investigate.</p>
http://stackoverflow.com/questions/1873983/what-does-the-leading-semicolon-in-javascript-libraries-doComment by kdgregory on What does the leading semicolon in JavaScript libraries do?kdgregory2009-12-09T13:47:25Z2009-12-09T13:47:25ZI think you've got the right answer already -- there's a lot of buggy JavaScript in the world, so insurance is important.http://stackoverflow.com/questions/1866886/warning-validation-was-turned-on-but-an-org-xml-sax-errorhandler/1866915#1866915Comment by kdgregory on Warning: validation was turned on but an org.xml.sax.ErrorHandler...kdgregory2009-12-08T13:55:18Z2009-12-08T13:55:18ZYou might want to read a bit about doctype declarations before giving advice: <a href="http://www.w3.org/TR/REC-xml/#NT-doctypedecl" rel="nofollow">w3.org/TR/REC-xml/#NT-doctypedecl</a> ... your "DOCTYPE schema" doesn't say "use this schema", it says "expect a root element named 'schema' and use this referenced doctype"http://stackoverflow.com/questions/473011/recurring-permgen-in-tomcat-6/473053#473053Comment by kdgregory on Recurring "PermGen" in Tomcat 6kdgregory2009-12-03T13:38:29Z2009-12-03T13:38:29ZSince this got touched today (thanks, to whoever upvoted), here's another link on diagnosing OOM (written by me): <a href="http://www.kdgregory.com/index.php?page=java.outOfMemory" rel="nofollow">kdgregory.com/index.php?page=java.outOfMemory/…</a>http://stackoverflow.com/questions/473011/recurring-permgen-in-tomcat-6/1839581#1839581Comment by kdgregory on Recurring "PermGen" in Tomcat 6kdgregory2009-12-03T13:29:10Z2009-12-03T13:29:10ZHowever, often the problem is simply that the web-app is too large to use the default. Particularly in a development environment, where you have a 64Mb permgen, and may be redeploying constantly. It takes time for all existing references to go out of scope (for example, a pooled thread hanging onto the last servlet that it ran).http://stackoverflow.com/questions/473011/recurring-permgen-in-tomcat-6/1839581#1839581Comment by kdgregory on Recurring "PermGen" in Tomcat 6kdgregory2009-12-03T13:25:24Z2009-12-03T13:25:24ZIt delays the problem if you maintain accidental classloader links. And, to be sure, there are a lot of cases where this can happen, and it can be next to impossible to find them unless you know your libraries inside and out (java.beans.Introspector, for example, maintains a cache of class data).http://stackoverflow.com/questions/1827147/sql-select-statement-to-find-ids-that-occur-the-most/1827151#1827151Comment by kdgregory on SQL select statement to find ID's that occur the mostkdgregory2009-12-01T16:05:18Z2009-12-01T16:05:18Zthrow a <i>having</i> clause in there and you're donehttp://stackoverflow.com/questions/1827017/how-to-add-file-to-a-previously-committed-changeset-in-subversion/1827039#1827039Comment by kdgregory on How to add file to a previously committed changeset in Subversion?kdgregory2009-12-01T15:47:51Z2009-12-01T15:47:51Z+1 (you beat me to it) - this exploits Subversion's treatment of tags as "branches that you never update"http://stackoverflow.com/questions/1802689/svn-partial-branchComment by kdgregory on SVN partial branchkdgregory2009-11-30T18:16:11Z2009-11-30T18:16:11ZWhy the requirement that directories 10 and 30 not be in the development branch? Is it to prevent them from being updated in the branch? Or do you believe (incorrectly) that you'd be wasting space with the copy?http://stackoverflow.com/questions/1767957/paying-great-programmers-more-than-average-programmers/1767981#1767981Comment by kdgregory on Paying great programmers more than average programmerskdgregory2009-11-21T01:15:30Z2009-11-21T01:15:30Z@duffymo - you're sounding like Joe with this answer ... I came here to escape that :-)http://stackoverflow.com/questions/1767957/paying-great-programmers-more-than-average-programmers/1767981#1767981Comment by kdgregory on Paying great programmers more than average programmerskdgregory2009-11-21T01:14:58Z2009-11-21T01:14:58ZDifferent fields have different hiring practices. You can't be an actor or ballplayer without an entire team to support you. You can be a solo programmer.http://stackoverflow.com/questions/1773042/joel-on-sowtware-ab-java-horseshoe-poemComment by kdgregory on Joel on Sowtware ab. Java (horseshoe poem)kdgregory2009-11-20T20:32:43Z2009-11-20T20:32:43ZYou're thinking of the wrong blogger. Here's what you're looking for: <a href="http://steve-yegge.blogspot.com/2006/03/execution-in-kingdom-of-nouns.html" rel="nofollow">steve-yegge.blogspot.com/2006/03/…</a>http://stackoverflow.com/questions/1770216/error-at-json-missing-after-element-list-or-just-undefined/1770255#1770255Comment by kdgregory on Error at json: "missing ] after element list" or just "undefined"kdgregory2009-11-20T14:09:38Z2009-11-20T14:09:38ZNot in the second posting.http://stackoverflow.com/questions/1770216/error-at-json-missing-after-element-list-or-just-undefined/1770255#1770255Comment by kdgregory on Error at json: "missing ] after element list" or just "undefined"kdgregory2009-11-20T13:23:19Z2009-11-20T13:23:19ZThanks, didn't notice that. But I did just notice the real problem.http://stackoverflow.com/questions/1767264/java-hotspot-error/1767373#1767373Comment by kdgregory on Java HotSpot errorkdgregory2009-11-20T13:11:08Z2009-11-20T13:11:08Z-1 = do you have any clue at all what you're writing or are you just pulling out pieces of the OP's post and trying to put some funny words next to them? Do you understand that thread IDs don't reference stack locations? (or maybe on Windows they do, if so, please post a reference).http://stackoverflow.com/questions/1770166/is-concurrenthashmap-get-guaranteed-to-see-a-previous-concurrenthashmap-put-bComment by kdgregory on Is ConcurrentHashMap.get() guaranteed to see a previous ConcurrentHashMap.put() by different thread?kdgregory2009-11-20T13:01:32Z2009-11-20T13:01:32ZOh, and when you write something, simply use System.err.println() -- note that it's System.err, not System.out; the latter is buffered, the former isn't.