User toluju - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T14:26:08Zhttp://stackoverflow.com/feeds/user/12457http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1850468/parsing-string-interpolation-in-antlr1Parsing string interpolation in ANTLRtoluju2009-12-05T00:04:18Z2009-12-08T17:00:56Z
<p>I'm working on a simple string manipulation DSL for internal purposes, and I would like the language to support string interpolation as it is used in Ruby.</p>
<p>For example:</p>
<pre><code>name = "Bob"
msg = "Hello ${name}!"
print(msg) # prints "Hello Bob!"
</code></pre>
<p>I'm attempting to implement my parser in ANTLRv3, but I'm pretty inexperienced with using ANTLR so I'm unsure how to implement this feature. So far, I've specified my string literals in the lexer, but in this case I'll obviously need to handle the interpolation content in the parser.</p>
<p>My current string literal grammar looks like this:</p>
<pre><code>STRINGLITERAL : '"' ( StringEscapeSeq | ~( '\\' | '"' | '\r' | '\n' ) )* '"' ;
fragment StringEscapeSeq : '\\' ( 't' | 'n' | 'r' | '"' | '\\' | '$' | ('0'..'9')) ;
</code></pre>
<p>Moving the string literal handling into the parser seems to make everything else stop working as it should. Cursory web searches didn't yield any information. Any suggestions as to how to get started on this?</p>
http://stackoverflow.com/questions/1850640/objective-reasons-for-using-python-or-ruby-for-a-new-rest-web-api/1850653#18506534Answer by toluju for Objective reasons for using Python or Ruby for a new REST Web APItoluju2009-12-05T00:57:40Z2009-12-05T00:57:40Z<p>Choose the one you're most familiar with and most likely to get things done with the fastest.</p>
http://stackoverflow.com/questions/1842845/hudson-build-defaults0Hudson build defaultstoluju2009-12-03T20:52:46Z2009-12-04T15:57:33Z
<p>This has been a fairly long-standing problem for us with our Hudson installation, and searching around the Hudson Wiki / Issue Tracker hasn't yielded any insight to this.</p>
<p>The question: Is it possible to set certain default values for a maven2 build in Hudson? For example, we want all our projects to run the "clean" goal before a build, we want all our builds to poll the SCM hourly, and we want all our builds to deploy to our maven repository on build success. </p>
<p>Right now, we have to manually set these setting for every project individually, which can be rather time consuming as we have 30+ different projects all being managed by Hudson. This is especially annoying if we need to change a particular setting that will affect all projects (e.g. change the repository URL). </p>
<p>Given that I couldn't find any mention of this on the Wiki or Issue Tracker leads me to believe that I'm missing something obvious, but I cannot find an answer on my own.</p>
http://stackoverflow.com/questions/1773541/java-static-reflection-on-subclasses/1773705#17737050Answer by toluju for Java static reflection on subclassestoluju2009-11-20T22:48:13Z2009-11-20T22:48:13Z<p>A word to the wise: It's probably a bad idea to try and implement your own ORM. Projects like <a href="https://www.hibernate.org/" rel="nofollow">hibernate</a> have covered this task in great detail, so if you roll your own you are likely to reinvent the wheel and possibly attempt to solve problems that have already been solved.</p>
<p>More on topic, ChssPly76 is correct in that you cannot accomplish this because of how static methods are handled in Java. When the VM loads the bytecode for the static method invocation, it will perform a lookup to find where the method actually is located. It won't find it on the <code>Item</code> class, so it will instead bind the call to <code>DB.find</code>. </p>
<p>However! It may be possible to achieve what you are trying to do with some bytecode wrangling. Viewing the bytecode (using <code>javap -c</code>) for the static method call in your example, we get the following:</p>
<pre><code>invokestatic Method Item.find:(I)Ljava/lang/Object
</code></pre>
<p>Thus, once your call reaches <code>DB.find</code>, you could follow the stacktrace back to the callsite, and then inspect the bytecode at the callsite to retrive the actual target of the call. In theory, anyway, as I haven't seen this myself in practice. Also, beware of hacking bytecode like this, for here be dragons.</p>
<p>Kudos for identifying the <a href="http://en.wikipedia.org/wiki/Active%5Frecord%5Fpattern" rel="nofollow">active record pattern</a>, and wanting to use it in Java. I do agree it's a design pattern that makes more sense than most DB access patterns found in Java, and it's one of the strengths of Ruby and PHP.</p>
http://stackoverflow.com/questions/1773349/java-coding-practice-runtime-exceptions-and-this-scenario/1773458#17734581Answer by toluju for Java coding practice, runtime exceptions and this scenariotoluju2009-11-20T21:49:50Z2009-11-20T21:49:50Z<p>Whether or not to handle an exception or simply rethrow it depends on your use case. </p>
<p>For example, if you're reading a file to load data into your application, and some IO error occurs, you're unlikely to recover from the error, so rethrowing the error to the top and consequently terminating the application isn't a bad course of action.</p>
<p>Conversely, if you're anticipating recoverable errors then you should absolutely catch and handle the errors. For example, you may have users entering data in a form. If they enter data incorrectly, your input processing code may throw an exception (e.g. <code>NumberFormatException</code> when parsing a malformed number string). Your code should catch these exceptions and return an error the user, prompting for correct input. </p>
<p>On an additional note, it's probably bad form to wrap all your exceptions with <code>RuntimeException</code>. If your code is going to be reused somewhere else, it is very helpful to have checked exceptions to signify that your code can fail in certain ways. </p>
<p>For example, assume your code is to parse configuration data from a file. Obviously, an IO error may occur, so you will have to catch an <code>IOException</code> somewhere in your code. You probably won't be able to do anything about the error, so you will have to rethrow it. However, someone calling into your code may well be able to handle such an error, for example by backing off to configuration defaults if the configuration can't be loaded from the file. By marking your API with checked exceptions, someone using your code can clearly see where an error may occur, and can thus write the error handling code at the appropriate place. If instead you simply throw a <code>RuntimeException</code>, the developer using your code won't be aware of possible errors until they creep up during testing.</p>
http://stackoverflow.com/questions/1725315/how-to-get-full-rest-request-body-using-jersey/1767494#17674940Answer by toluju for How to get full REST request body using Jersey?toluju2009-11-20T00:03:58Z2009-11-20T00:03:58Z<p>It does seem you would have to use a <code>MessageBodyReader</code> here. Here's an example, using jdom:</p>
<pre><code>import org.jdom.Document;
import javax.ws.rs.ext.MessageBodyReader;
import javax.ws.rs.ext.Provider;
import javax.ws.rs.ext.MediaType;
import javax.ws.rs.ext.MultivaluedMap;
import java.lang.reflect.Type;
import java.lang.annotation.Annotation;
import java.io.InputStream;
@Provider // this annotation is necessary!
@ConsumeMime("application/xml") // this is a hint to the system to only consume xml mime types
public class XMLMessageBodyReader implements MessageBodyReader<Document> {
private SAXBuilder builder = new SAXBuilder();
public boolean isReadable(Class type, Type genericType, Annotation[] annotations, MediaType mediaType) {
// check if we're requesting a jdom Document
return Document.class.isAssignableFrom(type);
}
public Document readFrom(Class type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String, String> httpHeaders, InputStream entityStream) {
try {
return builder.build(entityStream);
}
catch (Exception e) {
// handle error somehow
}
}
}
</code></pre>
<p>Add this class to the list of resources your jersey deployment will process (usually configured via web.xml, I think). You can then use this reader in one of your regular resource classes like this:</p>
<pre><code>@Path("/somepath") @POST
public void handleXMLData(Document doc) {
// do something with the document
}
</code></pre>
<p>I haven't verified that this works exactly as typed, but that's the gist of it. More reading here:</p>
<ul>
<li><a href="http://weblogs.java.net/blog/mhadley/archive/2008/02/integrating%5Fjer%5F2.html" rel="nofollow">http://weblogs.java.net/blog/mhadley/archive/2008/02/integrating_jer_2.html</a></li>
<li><a href="http://blogs.sun.com/sandoz/entry/jersey%5Fand%5Fabdera%5Fwith%5Fa" rel="nofollow">http://blogs.sun.com/sandoz/entry/jersey_and_abdera_with_a</a></li>
</ul>
http://stackoverflow.com/questions/1766715/when-not-to-use-the-static-keyword-in-java/1767334#17673341Answer by toluju for When NOT to use the static keyword in Java?toluju2009-11-19T23:30:30Z2009-11-19T23:30:30Z<p>Static methods are usually written for two purposes. The first purpose is to have some sort of global utility method, similar to the sort of functionality found in <a href="http://java.sun.com/javase/6/docs/api/java/util/Collections.html" rel="nofollow">java.util.Collections</a>. These static methods are generally harmless. The second purpose is to control object instantiation and limit access to resources (such as database connections) via various design patterns such as <a href="http://en.wikipedia.org/wiki/Singleton%5Fpattern" rel="nofollow">singletons</a> and <a href="http://en.wikipedia.org/wiki/Factory%5Fpattern" rel="nofollow">factories</a>. These can, if poorly implemented, result in problems.</p>
<p>For me, there are two downsides to using static methods:</p>
<ol>
<li>They make code less modular and harder to test / extend. Most answers already addressed this so I won't go into it any more.</li>
<li>Static methods tend to result in some form of global state, which is frequently the cause of insidious bugs. This can occur in poorly written code that is written for the second purpose described above. Let me elaborate.</li>
</ol>
<p>For example, consider a project that requires logging certain events to a database, and relies on the database connection for other state as well. Assume that normally, the database connection is initialized first, and then the logging framework is configured to write certain log events to the database. Now assume that the developers decide to move from a hand-written database framework to an existing database framework, such as hibernate. </p>
<p>However, this framework is likely to have its own logging configuration - and if it happens to be using the same logging framework as yours, then there is a good chance there will be various conflicts between the configurations. Suddenly, switching to a different database framework results in errors and failures in different parts of the system that are seemingly unrelated. The reason such failures can happen is because the logging configuration maintains global state accessed via static methods and variables, and various configuration properties can be overridden by different parts of the system.</p>
<p>To get away from these problems, developers should avoid storing any state via static methods and variables. Instead, they should build clean APIs that let the users manage and isolate state as needed. <a href="http://www.oracle.com/technology/products/berkeley-db/je/index.html" rel="nofollow">BerkeleyDB</a> is a good example here, encapsulating state via an <a href="http://www.oracle.com/technology/documentation/berkeley-db/je/java/com/sleepycat/je/Environment.html" rel="nofollow">Environment</a> object instead of via static calls.</p>
http://stackoverflow.com/questions/1764840/hadoop-determine-if-a-file-is-being-written-to/1766592#17665921Answer by toluju for hadoop- determine if a file is being written totoluju2009-11-19T21:11:42Z2009-11-19T21:11:42Z<p>The Hadoop filesystem API doesn't appear to provide any information if a file is currently being written to or not. However, as a workaround you could check the modification time of the file in question - if no write has occurred in some time (for example, 20 minutes), then it is probably safe to assume the copy has either completed or has died.</p>
http://stackoverflow.com/questions/1093036/parsing-wikimedia-markup-are-ebnf-based-parsers-poorly-suited7Parsing wikimedia markup - are EBNF-based parsers poorly suited?toluju2009-07-07T15:31:41Z2009-11-13T20:24:43Z
<p>I am attempting to parse (in Java) Wikimedia markup as found on Wikipedia. There are a number of existing packages out there for this task, but I have not found any to fit my needs particularly well. The best package I have worked with is the <a href="http://www.matheclipse.org/en/Java%5FWikipedia%5FAPI" rel="nofollow">Mathclipse Bliki parser</a>, which does a decent job on most pages. </p>
<p>This parser is incomplete, however, and fails to parse certain pages or parses incorrectly on others. Sadly the code is rather messy and thus fixing the problems in this parsing engine is very time consuming and error prone.</p>
<p>In attempting to find a better parsing engine I have investigated using an EBNF-based parser for this task (specifically ANTLR). After some attempts however it seems that this approach isn't particularly well suited for this task, as the Wikimedia markup is relatively relaxed and thus cannot be easily fit into a structured grammar. </p>
<p>My experience with ANTLR and similar parsers is very limited however, so it may be my inexperience that is causing problems rather than such parsers being inherently poorly suited for this task. Can anyone with more experience on these topics weigh in here?</p>
<p>@Stobor: I've mentioned that I've looked at various parsing engines, including the ones returned by the google query. The best I've found so far is the Bliki engine. The problem is that fixing problems with such parsers becomes incredibly tedious, because they are all essentially long chains of conditionals and regular expressions, resulting in spaghetti code. I am looking for something more akin to the EBNF method of parsing, as that method is much clearer and more concise, and thus easier to understand and evolve. I've seen the mediawiki link you posted, and it seems to confirm my suspicions that EBNF out of the box is poorly suited for this task. Thus I am looking for a parsing engine that is clear and understandable like EBNF, but also capable of handling the messy syntax of wiki markup.</p>
http://stackoverflow.com/questions/1647181/dynamic-pie-charts0Dynamic Pie Chartstoluju2009-10-29T23:31:35Z2009-10-30T01:23:32Z
<p>I am searching for a free charting library, either in Java, JS, or Flash, that allows for drill-down type interaction. An example of this sort of behavior can be found in the trends section on mint.com. JFreeChart seems like the generally recommended choice for charting purposes, but from a little browsing of their API there doesn't seem to be any obvious way to detect mouse clicks on a particular slice and change the chart in response. </p>
<p>Any advice on how to handle this sort of behavior using JFreeChart, or if this is not possible any recommendations for other libraries that do support this behavior?</p>
http://stackoverflow.com/questions/76595/soap-or-rest/76811#768117Answer by toluju for SOAP or RESTtoluju2008-09-16T20:42:10Z2009-10-20T15:46:10Z<p>REST is a fundamentally different paradigm from SOAP. A good read on REST can be found here: <a href="http://tomayko.com/writings/rest-to-my-wife" rel="nofollow">How I explained REST to my wife</a>. </p>
<p>If you don't have time to read it, here's the short version: REST is a bit of a paradigm shift by focusing on "nouns", and restraining the number of "verbs" you can apply to those nouns. The only allowed verbs are "get", "put", "post" and "delete". This differs from SOAP where many different verbs can be applied to many different nouns (i.e. many different functions). </p>
<p>For REST, the three verbs map to the corresponding HTTP requests, while the nouns are identified by URLs. This makes state management much more transparent than in SOAP, where its often unclear what state is on the server and what is on the client.</p>
<p>In practice though most of this falls away, and REST usually just refers to simple HTTP requests that return results in <a href="http://www.json.org/" rel="nofollow">JSON</a>, while SOAP is a more complex API that communicates by passing XML around. Both have their advantages and disadvantages, but I've found that in my experience REST is usually the better choice because you rarely if ever need the full functionality you get from SOAP.</p>
http://stackoverflow.com/questions/1225375/multi-part-gzip-file-random-access-in-java1Multi-part gzip file random access (in Java)toluju2009-08-04T01:32:41Z2009-08-04T01:53:12Z
<p>This may fall in the realm of "not really feasible" or "not really worth the effort" but here goes.</p>
<p>I'm trying to randomly access records stored inside a multi-part gzip file. Specifically, the files I'm interested in are compressed <a href="http://crawler.archive.org/" rel="nofollow">Heretrix</a> Arc files. (In case you aren't familiar with multi-part gzip files, the gzip spec allows multiple gzip streams to be concatenated in a single gzip file. They do not share any dictionary information, it is simple binary appending.)</p>
<p>I'm thinking it should be possible to do this by seeking to a certain offset within the file, then scan for the gzip magic header bytes (i.e. 0x1f8b, as per the <a href="http://www.ietf.org/rfc/rfc1952.txt" rel="nofollow">RFC</a>), and attempt to read the gzip stream from the following bytes. The problem with this approach is that those same bytes can appear inside the actual data as well, so seeking for those bytes can lead to an invalid position to start reading a gzip stream from. Is there a better way to handle random access, given that the record offsets aren't known a priori?</p>
http://stackoverflow.com/questions/1190646/ant-jar-files-and-class-path-oh-my/1190964#11909640Answer by toluju for ant, jar files, and Class-Path oh mytoluju2009-07-27T22:14:16Z2009-07-27T22:14:16Z<p>Since you're in Ant, you probably don't want to switch, but Maven is pretty good at identifying all your dependencies, and has several facilities for copying or combining your lib jars together for distribution purposes. For my purposes I have a Maven plugin that creates a run script during build, which in turn sets the classpath for me so I don't need to worry about it.</p>
http://stackoverflow.com/questions/1168931/how-to-create-an-object-from-a-string-in-java-how-to-eval-a-string/1169771#11697711Answer by toluju for How to create an object from a string in Java (how to eval a string)?toluju2009-07-23T05:30:13Z2009-07-23T05:30:13Z<p>Here's a possible way to get most of the way there via using javax.tools. Note that this code is rather long and not exactly the most efficient or portable way to do this, but you should get the idea.</p>
<pre><code>import javax.tools.*;
import java.util.*;
import java.io.*;
import java.lang.reflect.*;
public class Test {
public static void main(String[] args) throws Exception {
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
JavaFileObject fileObj =
new StringJavaFileObject("public class InterpTest { public static void test() { System.out.println(\"Hello World\"); } }");
List<JavaFileObject> tasks = new ArrayList<JavaFileObject>();
tasks.add(fileObj);
JavaFileManager defFileMgr = compiler.getStandardFileManager(null, null, null);
MemoryJavaFileManager fileMgr = new MemoryJavaFileManager(defFileMgr);
compiler.getTask(null, fileMgr, null, null, null, tasks).call();
ClassLoader loader = new ByteArrayClassLoader();
Class clazz = loader.loadClass("InterpTest");
Method method = clazz.getMethod("test");
method.invoke(null);
}
public static class StringJavaFileObject extends SimpleJavaFileObject {
protected String str;
public StringJavaFileObject(String str) {
super(java.net.URI.create("file:///InterpTest.java"), JavaFileObject.Kind.SOURCE);
this.str = str;
}
@Override
public CharSequence getCharContent(boolean ignoreEncErrors) {
return str;
}
}
public static class MemoryJavaFileObject extends SimpleJavaFileObject {
public static ByteArrayOutputStream out = new ByteArrayOutputStream();
public MemoryJavaFileObject(String uri, JavaFileObject.Kind kind) {
super(java.net.URI.create(uri), kind);
}
@Override
public OutputStream openOutputStream() {
return out;
}
}
public static class ByteArrayClassLoader extends ClassLoader {
public Class findClass(String name) {
byte[] bytes = MemoryJavaFileObject.out.toByteArray();
return super.defineClass(name, bytes, 0, bytes.length);
}
}
public static class MemoryJavaFileManager implements JavaFileManager {
protected JavaFileManager parent;
public JavaFileObject getJavaFileForOutput(JavaFileManager.Location location, String className, JavaFileObject.Kind kind, FileObject sibling) throws IOException {
return new MemoryJavaFileObject("file:///InterpTest.class", kind);
}
public MemoryJavaFileManager(JavaFileManager parent) { this.parent = parent; }
public void close() throws IOException { parent.close(); }
public void flush() throws IOException { parent.flush(); }
public ClassLoader getClassLoader(JavaFileManager.Location location) { return parent.getClassLoader(location); }
public FileObject getFileForInput(JavaFileManager.Location location, String packageName, String relName) throws IOException { return parent.getFileForInput(location, packageName, relName); }
public FileObject getFileForOutput(JavaFileManager.Location location, String packageName, String relName, FileObject sibling) throws IOException { return parent.getFileForOutput(location, packageName, relName, sibling); }
public JavaFileObject getJavaFileForInput(JavaFileManager.Location location, String className, JavaFileObject.Kind kind) throws IOException { return parent.getJavaFileForInput(location, className, kind); }
public boolean handleOption(String current, Iterator<String> remaining) { return parent.handleOption(current, remaining); }
public boolean hasLocation(JavaFileManager.Location location) { return parent.hasLocation(location); }
public String inferBinaryName(JavaFileManager.Location location, JavaFileObject file) { return parent.inferBinaryName(location, file); }
public boolean isSameFile(FileObject a, FileObject b) { return parent.isSameFile(a, b); }
public Iterable<JavaFileObject> list(JavaFileManager.Location location, String packageName, Set<JavaFileObject.Kind> kinds, boolean recurse) throws IOException { return parent.list(location, packageName, kinds, recurse); }
public int isSupportedOption(String option) { return parent.isSupportedOption(option); }
}
}
</code></pre>
http://stackoverflow.com/questions/1167284/is-it-possible-to-switch-class-versions-at-runtime-with-java/1167449#11674492Answer by toluju for Is it possible to switch Class versions at runtime with Java??toluju2009-07-22T19:00:27Z2009-07-22T19:00:27Z<p>You can't really change out a class file once it's been loaded, so there's really no way to replace a class at runtime. Note that projects like <a href="http://www.zeroturnaround.com/javarebel/" rel="nofollow">JavaRebel</a> get around this with some clever use of instrumentation via the javaagent - but even what you can do with that is limited. </p>
<p>From the sounds of it you just need to have two parallel implementations in your environment at the same time, and don't need to reload classes at runtime. This can be accomplished pretty easily. Assume your runtime consists of the following files:</p>
<ul>
<li>analyzer.jar - this contains the analyzer / test code from above</li>
<li>api.jar - this is the common forward-facing api code, e.g. interfaces</li>
<li>api-impl-v1.jar - this is the older version of the implementation</li>
<li>api-impl-v2.jar - this is the newer version of the implementation</li>
</ul>
<p>Assume your worker interface code looks like this:</p>
<pre><code>package com.example.api;
public interface Worker {
public Object connectAndDoStuff();
}
</code></pre>
<p>And that your implementations (both in v1 and v2) look like this:</p>
<pre><code>package com.example.impl;
import com.example.api.Worker;
public class WorkerImpl implements Worker {
public Object connectAndDoStuff() {
// do stuff - this can be different in v1 and v2
}
}
</code></pre>
<p>Then you can write the analyzer like this:</p>
<pre><code>package com.example.analyzer;
import com.example.api.Worker;
public class Analyzer {
// should narrow down exceptions as needed
public void analyze() throws Exception {
// change these paths as need be
File apiImplV1Jar = new File("api-impl-v1.jar");
File apiImplV2Jar = new File("api-impl-v2.jar");
ClassLoader apiImplV1Loader =
new URLClassLoader(new URL[] { apiImplV1Jar.toURL() });
ClassLoader apiImplV2Loader =
new URLClassLoader(new URL[] { apiImplV2Jar.toURL() });
Worker workerV1 =
(Worker) apiImplV1Loader.loadClass("com.example.impl.WorkerImpl")
.newInstance();
Worker workerV2 =
(Worker) apiImplV2Loader.loadClass("com.example.impl.WorkerImpl").
.newInstance();
Comparator c = new Comparator(workerV1.connectAndDoStuff(),
workerV2.connectAndDoStuff());
c.generateReport();
}
}
</code></pre>
<p>To run the analyzer you would then include analyzer.jar and api.jar in the classpath, but <strong>leave out</strong> the api-impl-v1.jar and api-impl-v2.jar.</p>
http://stackoverflow.com/questions/1166533/randomly-accessing-a-compressed-file-without-using-zipfile-since-zipfile-has-a-m/1166577#11665773Answer by toluju for Randomly accessing a compressed file without using ZipFile (since ZipFile has a major bug).toluju2009-07-22T16:40:51Z2009-07-22T16:40:51Z<p>For this task, you may want to look at <a href="http://commons.apache.org/compress/" rel="nofollow">Apache Commons Compress</a>, <a href="http://commons.apache.org/vfs/" rel="nofollow">Apache Commons VFS</a>, or <a href="https://truezip.dev.java.net/" rel="nofollow">TrueZip</a>. All of these should be Java 1.4 compatible, and probably support the features you need.</p>
http://stackoverflow.com/questions/1160406/generation-xpath-expression-in-runtime/1160971#11609710Answer by toluju for Generation Xpath expression in runtimetoluju2009-07-21T18:41:35Z2009-07-21T18:41:35Z<p>This is a little tricky. You many want to look at the <a href="http://jaxen.codehaus.org/" rel="nofollow">Jaxen</a> project, as it has built in parsers for creating XPath objects from their string representations. You may be able to dig through the parser code and figure out how to construct and XPath object directly without needing to call the parser - from the looks of it I'd recommend starting with the <a href="http://jaxen.codehaus.org/xref/org/jaxen/JaxenHandler.html" rel="nofollow">JaxenHandler class</a>.</p>
http://stackoverflow.com/questions/1160437/java-embedded-database-w-ability-to-store-as-one-file/1160856#11608561Answer by toluju for java embedded database w/ ability to store as one filetoluju2009-07-21T18:24:12Z2009-07-21T18:24:12Z<p>If you only need read access then H2 is able to <a href="http://www.h2database.com/html/features.html#database%5Fin%5Fzip" rel="nofollow">read the database files from a zip file</a>.</p>
<p>Likewise if you don't need persistence it's possible to have an in-memory only version of H2.</p>
<p>If you need both read/write access and persistence, then you may be out of luck with standard SQL-type databases, as these pretty much all uniformly maintain the index and data files separately.</p>
http://stackoverflow.com/questions/1156552/java-package-introspection/1157352#11573524Answer by toluju for Java Package Introspectiontoluju2009-07-21T04:46:07Z2009-07-21T18:14:54Z<p>Here's a more complete way to solve this for jars, based on the idea posted by JG.</p>
<pre><code>/**
* Scans all classloaders for the current thread for loaded jars, and then scans
* each jar for the package name in question, listing all classes directly under
* the package name in question. Assumes directory structure in jar file and class
* package naming follow java conventions (i.e. com.example.test.MyTest would be in
* /com/example/test/MyTest.class)
*/
public Collection<Class> getClassesForPackage(String packageName) throws Exception {
String packagePath = packageName.replace(".", "/");
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
Set<URL> jarUrls = new HashSet<URL>();
while (classLoader != null) {
if (classLoader instanceof URLClassLoader)
for (URL url : ((URLClassLoader) classLoader).getURLs())
if (url.getFile().endsWith(".jar") // may want better way to detect jar files
jarUrls.add(url);
classLoader = classLoader.getParent();
}
Set<Class> classes = new HashSet<Class>();
for (URL url : jarUrls) {
JarInputStream stream = new JarInputStream(url.openStream()); // may want better way to open url connections
JarEntry entry = stream.getNextJarEntry();
while (entry != null) {
String name = entry.getName();
int i = name.lastIndexOf("/");
if (i > 0 && name.endsWith(".class") && name.substring(0, i).equals(packagePath))
classes.add(Class.forName(name.substring(0, name.length() - 6).replace("/", ".")));
entry = stream.getNextJarEntry();
}
stream.close();
}
return classes;
}
</code></pre>
http://stackoverflow.com/questions/1088192/getting-data-in-and-out-of-hadoop/1157360#11573601Answer by toluju for getting data in and out of hadooptoluju2009-07-21T04:51:07Z2009-07-21T04:51:07Z<p>A hadoop job can run over multiple input files, so there's really no need to keep all your data as one file. You won't be able to process a file until its file handle is properly closed, however.</p>
http://stackoverflow.com/questions/1149454/non-ajax-get-post-using-jquery-plugin/1150331#1150331-2Answer by toluju for Non-ajax GET/POST using jQuery (plugin?)toluju2009-07-19T17:05:00Z2009-07-19T17:05:00Z<p>The accepted answer doesn't seem to cover your POST requirement, as setting document.location will always result in a GET request. Here's a possible solution, although I'm not sure jQuery permits loading the entire contents of the page like this:</p>
<pre><code>$.post(url, params, function(data) {
$(document).html(data);
}, "html");
</code></pre>
http://stackoverflow.com/questions/1149747/jquery-click-function-not-working-for-me/1150290#11502901Answer by toluju for [jquery] .click function not working for metoluju2009-07-19T16:45:24Z2009-07-19T16:45:24Z<p>I don't know if this applies in your context, but if you have parts of the page that are getting loaded by AJAX then you'll need to bind the click handlers after that content is loaded, meaning a $(document).ready isn't going to work. I've run into this problem a number of times, where certain events will fire fine until parts of the page are reloaded, then all the sudden the events seem to stop firing.</p>
http://stackoverflow.com/questions/1150208/javascript-want-to-access-the-contents-of-another-domain-with-ajax/1150266#11502661Answer by toluju for javascript - Want to access the contents of another domain with ajax?toluju2009-07-19T16:33:46Z2009-07-19T16:33:46Z<p>The blog post linked by Dan shows you how to solve this problem, but here's the background:</p>
<p>The only way you can make a cross-domain Javascript call from a web page is via JSONP. If you aren't offered JSONP, then you will have to resort to using a Proxy script, as browsers purposefully prevent site scripts from making such calls. </p>
<p>Note that if you're writing a Firefox extension you are executing in a privileged space, and thus are able to make such cross-domain calls without restrictions.</p>
http://stackoverflow.com/questions/1106916/looking-for-java-map-implementation-that-supports-getkeysforvalue/1106965#11069651Answer by toluju for Looking for Java Map implementation that supports getKeysForValuetoluju2009-07-09T23:30:32Z2009-07-09T23:30:32Z<p>What you're looking for here is a <a href="http://en.wikipedia.org/wiki/Bidirectional%5Fmap" rel="nofollow">bidirectional map</a>, for which there is an implementation in <a href="http://commons.apache.org/collections/api-3.1/org/apache/commons/collections/BidiMap.html" rel="nofollow">commons collections</a>.</p>
http://stackoverflow.com/questions/1104952/example-code-archive-using-maven/1106951#11069511Answer by toluju for Example code archive using maventoluju2009-07-09T23:26:14Z2009-07-09T23:26:14Z<p>Nate covered this for the most part, but I'll give concrete examples.</p>
<p>Here's how your directory layout should look like:</p>
<pre><code>pom.xml
src/main/assembly/assembly.xml
core/pom.xml
core/src/main/java/...
core/src/test/java/...
examples/pom.xml
examples/src/main/java/...
</code></pre>
<p>In the base pom, you'll denote your submodules as follows:</p>
<pre><code><modules>
<modules>core</modules>
<modules>examples</modules>
</modules>
</code></pre>
<p>Assuming your base groupId is "com.company.example" and your artifactId is "xy", then your module poms will begin with the following (adjusting for names and versions, of course):</p>
<pre><code><parent>
<groupId>com.company.example</groupId>
<artifactId>xy</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<groupId>com.company.example</groupId>
<artifactId>xy-core</artifactId>
<version>1.0.0-SNAPSHOT</version>
</code></pre>
<p>To make sure the assembly runs in the base project, include the following in your build configuration:</p>
<pre><code><plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.1</version>
<configuration>
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
</plugin>
</code></pre>
<p>Also, to build a separate jar for the test classes, add this to the core/pom.xml file:</p>
<pre><code><plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar</goal>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</code></pre>
<p>The assembly.xml itself will look like this:</p>
<pre><code><assembly>
<id>assembly</id>
<formats>
<format>tar.gz</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<moduleSets>
<moduleSet>
<binaries>
<dependencySets>
<dependencySet>
<outputDirectory>lib</outputDirectory>
</dependencySet>
</dependencySets>
<outputDirectory>lib</outputDirectory>
</binaries>
</moduleSet>
</moduleSets>
</assembly>
</code></pre>
<p>I'm probably missing a few things here but that's the general idea.</p>
http://stackoverflow.com/questions/1102369/augmenting-instead-of-overriding-maven-configuration/1105989#11059890Answer by toluju for Augmenting instead of overriding Maven configuration.toluju2009-07-09T19:28:40Z2009-07-09T19:28:40Z<p>I need to test this so let me get back to you on this, but I think the correct way to do this is to use <a href="http://maven.apache.org/pom.html#Properties" rel="nofollow">properties</a>, as noted <a href="http://maven.apache.org/guides/introduction/introduction-to-the-pom.html#Project%5FInterpolation" rel="nofollow">here</a>. In your case the code would look as follows:</p>
<pre><code><properties>
<aspect.library.groupId>name.seller.rich</aspect.library.groupId>
<aspect.library.artifactId>tracing</aspect.library.artifactId>
</properties>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<executions>
<execution>
<id>compile_with_aspectj</id>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
<configuration>
<aspectLibraries>
<aspectLibrary>
<groupId>${aspect.library.groupId}</groupId>
<artifactId>${aspect.library.artifactId}</artifactId>
</aspectLibrary>
</aspectLibraries>
</configuration>
<dependencies>
<dependency>
<groupId>aspectj</groupId>
<artifactId>aspectjtools</artifactId>
<version>1.5.3</version>
</dependency>
</dependencies>
</plugin>
</code></pre>
<p>Then in the child you would be able to change those properties, and the parent would automatically pick up the new values:</p>
<pre><code><properties>
<aspect.library.groupId>name.seller.rich</aspect.library.groupId>
<aspect.library.artifactId>something-else</aspect.library.artifactId>
</properties>
</code></pre>
<p>I think you may be asking for the ability to append configuration, however, so as to have an additional node in your child's configuration ontop of the one specified in your parent. For that case I can't think of an obvious solution.</p>
http://stackoverflow.com/questions/1104975/for-loop-to-interate-over-enum-in-java/1104996#11049963Answer by toluju for for loop to interate over enum in Java?toluju2009-07-09T16:27:19Z2009-07-09T16:27:19Z<p>You can do this as follows:</p>
<pre><code>for (Direction direction : EnumSet.allOf(Direction.class)) {
// do stuff
}
</code></pre>
http://stackoverflow.com/questions/1028687/best-way-to-gracefully-shutdown-a-java-command-line-program/1028831#10288310Answer by toluju for Best Way to Gracefully Shutdown a Java Command Line Programtoluju2009-06-22T18:53:42Z2009-06-22T18:53:42Z<p>If you wanted to go with the socket version, it is very simple to implement. Here's the code:</p>
<pre><code>ServerSocket server = new ServerSocket(8080);
System.out.println("Socket listening!");
server.accept();
System.out.println("Connection received!");
</code></pre>
<p>You could easily embed this code in a separate thread that you start with your program, and then have it modify global state to initiate shutdown.</p>
http://stackoverflow.com/questions/1016495/ie8-vs-firefox-and-google-chrome/1016521#10165210Answer by toluju for IE8 vs Firefox and Google Chrometoluju2009-06-19T06:01:13Z2009-06-19T06:01:13Z<p>This is just silly marketing nonsense. If you run a JavaScript benchmark like <a href="http://www2.webkit.org/perf/sunspider-0.9/sunspider.html" rel="nofollow">Sunspider</a> you'll find Chrome and Firefox 3.5 outperform IE. On their other points:</p>
<ul>
<li>Security. IE has been proven time and time again to be less secure than other browsers.</li>
<li>Privacy. Chrome has complete icognito mode that disables saving anything at all. The same feature is coming in FF soon. Don't know how this compares to IE, but to say the other browsers don't have privacy is just plain false.</li>
<li>Developer tools. I'm not sure how IE's tools compare to addons like Firebug. And IE is supposed to win this because you don't need to install an addon? That doesn't sound like a convincing argument.</li>
<li>Reliability. Firefox crash recovery is really good. Chrome is really stable and isolates tabs well. Perhaps IE does both, but IE is also somewhat unstable, at least compared to Chrome.</li>
<li>Compatability. Ok this is just a joke. IE continues to fail the Acid tests dramatically, and <a href="http://a.deveria.com/caniuse/" rel="nofollow">there are some pretty convincing counterpoints about compatibility</a>.</li>
<li>Manageability. IE has enterprise and other browsers don't? I don't even know what they're trying to say here. IE doesn't have built in enterprise tools, and the only reason it has any hold in the enterprise is because many corps are unwilling to upgrade.</li>
</ul>
http://stackoverflow.com/questions/971052/autocomplete-server-side-implementation8Autocomplete server-side implementationtoluju2009-06-09T16:10:52Z2009-06-11T22:29:05Z
<p>What is a fast and efficient way to implement the server-side component for an autocomplete feature in an html input box? </p>
<p>I am writing a service to autocomplete user queries in our web interface's main search box, and the completions are displayed in an ajax-powered dropdown. The data we are running queries against is simply a large table of concepts our system knows about, which matches roughly with the set of wikipedia page titles. For this service obviously speed is of utmost importance, as responsiveness of the web page is important to the user experience. </p>
<p>The current implementation simply loads all concepts into memory in a sorted set, and performs a simple log(n) lookup on a user keystroke. The tailset is then used to provide additional matches beyond the closest match. The problem with this solution is that it does not scale. It currently is running up against the VM heap space limit (I've set -Xmx2g, which is about the most we can push on our 32 bit machines), and this prevents us from expanding our concept table or adding more functionality. Switching to 64-bit VMs on machines with more memory isn't an immediate option. </p>
<p>I've been hesitant to start working on a disk-based solution as I am concerned that disk seek time will kill performance. Are there possible solutions that will let me scale better, either entirely in memory or with some fast disk-backed implementations?</p>
<p>Edits:</p>
<p>@Gandalf: For our use case it is important the the autocompletion is comprehensive and isn't just extra help for the user. As for what we are completing, it is a list of concept-type pairs. For example, possible entries are [("Microsoft", "Software Company"), ("Jeff Atwood", "Programmer"), ("StackOverflow.com", "Website")]. We are using Lucene for the full search once a user selects an item from the autocomplete list, but I am not yet sure Lucene would work well for the autocomplete itself.</p>
<p>@Glen: No databases are being used here. When I'm talking about a table I just mean the structured representation of my data.</p>
<p>@Jason Day: My original implementation to this problem was to use a <a href="http://en.wikipedia.org/wiki/Trie" rel="nofollow">Trie</a>, but the memory bloat with that was actually worse than the sorted set due to needing a large number of object references. I'll read on the ternary search trees to see if it could be of use.</p>
http://stackoverflow.com/questions/1850468/parsing-string-interpolation-in-antlr/1868345#1868345Comment by toluju on Parsing string interpolation in ANTLRtoluju2009-12-08T17:22:24Z2009-12-08T17:22:24ZWow that looks great! Let me test it to see if it works for my setup.http://stackoverflow.com/questions/1850640/objective-reasons-for-using-python-or-ruby-for-a-new-rest-web-api/1850684#1850684Comment by toluju on Objective reasons for using Python or Ruby for a new REST Web APItoluju2009-12-05T02:25:43Z2009-12-05T02:25:43ZIf you're looking for something equivalent to Heroku for Python, I'd say that Google App Engine is a good bet.http://stackoverflow.com/questions/1766715/when-not-to-use-the-static-keyword-in-java/1767334#1767334Comment by toluju on When NOT to use the static keyword in Java?toluju2009-11-20T16:21:20Z2009-11-20T16:21:20ZRight, that's what I was trying to outline in the first paragraph - static methods that don't alter any state outside of their parameters are usually fine, but static methods that manage state can be troublesome. So I guess as a quick rule of thumb for deciding when to write a static method, you should see if any state will be affected by the method.http://stackoverflow.com/questions/1647181/dynamic-pie-charts/1647252#1647252Comment by toluju on Dynamic Pie Chartstoluju2009-10-30T20:56:03Z2009-10-30T20:56:03ZConfirmed working as needed, thanks!http://stackoverflow.com/questions/1647181/dynamic-pie-charts/1647252#1647252Comment by toluju on Dynamic Pie Chartstoluju2009-10-30T19:34:48Z2009-10-30T19:34:48ZThanks for the link to ChartPanel and ChartMouseEvent, those may be just what I'm looking for.http://stackoverflow.com/questions/76595/soap-or-rest/76811#76811Comment by toluju on SOAP or RESTtoluju2009-10-23T23:03:33Z2009-10-23T23:03:33ZHEAD, OPTIONS, and TRACE are all methods that inquire about server meta-information rather than about the content at the URL itself. As such they are of marginal use for REST-style applications.
I stand corrected in as far a specification. The main specification of significance to REST is the HTTP spec itself.http://stackoverflow.com/questions/76595/soap-or-rest/76811#76811Comment by toluju on SOAP or RESTtoluju2009-10-20T15:45:38Z2009-10-20T15:45:38ZSorry, I forgot to mention POST. OPTIONS (and HEAD) is not considered part of the REST specification, however.http://stackoverflow.com/questions/1166178/thumb-rules-to-decide-between-web-service-implementations-soap-rest/1166249#1166249Comment by toluju on Thumb-rules to decide between web service implementations: SOAP / REST?toluju2009-07-23T05:36:03Z2009-07-23T05:36:03ZThis really isn't the best place for arguments...
For starters I have read Fielding's explanation of REST, and am not ignorant to what it takes to implement correctly - I just realize that in most cases it isn't practical. Second, Google doesn't follow the REST spec at all as many of their APIs let you modify state that is never encoded in the URIs at all. Third, the open web is often described as being an implementation of REST (see the wiki page), so in that sense dismissing basic HTTP as not being sufficient for REST is flat out wrong.http://stackoverflow.com/questions/1166178/thumb-rules-to-decide-between-web-service-implementations-soap-rest/1166249#1166249Comment by toluju on Thumb-rules to decide between web service implementations: SOAP / REST?toluju2009-07-22T22:40:03Z2009-07-22T22:40:03ZThis isn't my doing. Both Google and Yahoo call their APIs RESTful, despite not adhering to Fielding's definition. Go take your semantic nit-picking to them. I will meanwhile keep using terms everyone else is using and understands.http://stackoverflow.com/questions/1166178/thumb-rules-to-decide-between-web-service-implementations-soap-rest/1166249#1166249Comment by toluju on Thumb-rules to decide between web service implementations: SOAP / REST?toluju2009-07-22T20:22:14Z2009-07-22T20:22:14ZI'm not using the Fielding's definition of REST here - most people who talk about REST don't. What is meant in this case is a service interface that is interacted with via HTTP GET/POST, and where the interchange format is either plain text, JSON, or XML. The Yelp API fits this bill nicely, despite not strictly adhering to the REST specification - and neither do any of the other APIs I mentioned either.http://stackoverflow.com/questions/1166533/randomly-accessing-a-compressed-file-without-using-zipfile-since-zipfile-has-a-m/1166561#1166561Comment by toluju on Randomly accessing a compressed file without using ZipFile (since ZipFile has a major bug).toluju2009-07-22T17:04:24Z2009-07-22T17:04:24ZIt doesn't? <a href="http://commons.apache.org/compress/apidocs/org/apache/commons/compress/archivers/zip/ZipFile.html" rel="nofollow">commons.apache.org/compress/apidocs/…</a>http://stackoverflow.com/questions/1159168/should-one-call-close-on-httpservletresponse-getoutputstream-getwriter/1159244#1159244Comment by toluju on Should one call .close() on HttpServletResponse.getOutputStream()/.getWriter() ?toluju2009-07-21T18:45:22Z2009-07-21T18:45:22ZThis is correct. One thing to note is that in some cases you may need to flush the stream, and that is perfectly permissible.http://stackoverflow.com/questions/1156552/java-package-introspection/1157352#1157352Comment by toluju on Java Package Introspectiontoluju2009-07-21T18:15:13Z2009-07-21T18:15:13ZAdded a javadoc header for a better explanation. :)http://stackoverflow.com/questions/1093036/parsing-wikimedia-markup-are-ebnf-based-parsers-poorly-suited/1140766#1140766Comment by toluju on Parsing wikimedia markup - are EBNF-based parsers poorly suited?toluju2009-07-17T02:33:49Z2009-07-17T02:33:49ZPerfect, this was the answer I was looking for. Thanks!http://stackoverflow.com/questions/1028687/best-way-to-gracefully-shutdown-a-java-command-line-programComment by toluju on Best Way to Gracefully Shutdown a Java Command Line Programtoluju2009-06-22T18:33:24Z2009-06-22T18:33:24ZWhy is sending the kill signal not an option? As mentioned in answers below, you can catch and handle the kill signal gracefully with shutdown hooks.