User Cowan - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T00:09:43Zhttp://stackoverflow.com/feeds/user/17041http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1807345/some-script-is-inserted-by-hacker-in-home-page/1807407#18074070Answer by Cowan for Some script is inserted by hacker in home pageCowan2009-11-27T08:26:37Z2009-11-27T08:26:37Z<p>If you're finding JavaScript injected into your web site content (not via XSS but actually present in the file contents) you've most likely been hit by a worm or virus.</p>
<p>A good example is <a href="http://en.wikipedia.org/wiki/Gumblar" rel="nofollow">the Gumblar virus</a>, which spread very rapidly indeed a few months ago; it used FTP password sniffing to find FTP details of people's sites and modified them, injecting malicious JavaScript to send site visitors to malware sites etc.</p>
<p>The specifics of removing such viruses depends on the specific virus, but a good start is:</p>
<ul>
<li>Replace the contents of the site with a known clean backup</li>
<li>Make sure all security patches are applied to your server and all software you're running on it, as well as e.g. any modules or 3rd-party libraries being used on the site</li>
<li>Make sure all computers which are used to access the site (via FTP or an administration interface, for example) have been marked as clean by a reputable and up-to-date virus scanner so you don't get any passwords sniffed</li>
<li>As the password for your site may already have leaked out into the big wide world via (say) a botnet, change all your FTP + administration passwords on the site so you don't just have to go right back to the start again.</li>
</ul>
<p>Good luck!</p>
http://stackoverflow.com/questions/1806198/detect-months-with-31-days/1806211#18062115Answer by Cowan for Detect months with 31 daysCowan2009-11-27T00:05:10Z2009-11-27T00:05:10Z<p>You don't specify the language, but if you're using Java then yes, you have do do it the second way, or otherwise use switch:</p>
<pre><code>switch(month) {
case 4:
case 6:
case 9:
case 11:
do something;
}
</code></pre>
<p>Alternatively, you might find it useful and cleaner (depending on the design) to not hard-code the values but keep them elsewhere:</p>
<pre><code>private static final Collection<Integer> MONTHS_TO_RUN_REPORT = Arrays.asList(4, 6, 9, 11);
....
if (MONTHS_TO_RUN_REPORT.contains(month)) {
do something;
}
</code></pre>
http://stackoverflow.com/questions/1803019/is-it-possible-to-have-a-jms-server-without-an-application-server/1803032#18030323Answer by Cowan for Is it possible to have a JMS server without an application server?Cowan2009-11-26T11:01:28Z2009-11-26T11:01:28Z<p>ActiveMQ comes with <a href="http://activemq.apache.org/run-broker.html" rel="nofollow">a standalone broker</a> which can be run independently from the command line.</p>
http://stackoverflow.com/questions/1802915/java-create-a-new-string-instance-with-specified-length-and-filled-with-specifi/1802970#18029705Answer by Cowan for Java - Create a new String instance with specified length and filled with specific character. Best solution?Cowan2009-11-26T10:47:53Z2009-11-26T10:47:53Z<p>Apache Commons Lang (probably useful enough to be on the classpath of any non-trivial project) has <a href="http://commons.apache.org/lang//api-2.4/org/apache/commons/lang/StringUtils.html#repeat%28java.lang.String,%20int%29" rel="nofollow">StringUtils.repeat()</a>:</p>
<pre><code>String filled = StringUtils.repeat("*", 10);
</code></pre>
<p>Easy!</p>
http://stackoverflow.com/questions/1802629/is-there-an-elegant-way-to-remove-nulls-while-transforming-a-collection-using-goo/1802941#18029415Answer by Cowan for Is there an elegant way to remove nulls while transforming a Collection using Google Collections?Cowan2009-11-26T10:43:16Z2009-11-26T10:43:16Z<p>There's already a predicate in <a href="http://google-collections.googlecode.com/svn/trunk/javadoc/com/google/common/base/Predicates.html" rel="nofollow">Predicates</a> that will help you here -- Predicates.notNull() -- and you can use Iterables.filter() and the fact that Lists.newArrayList() can take an Iterable to clean this up a little more.</p>
<pre><code>Collection<String> resourceIds = Lists.newArrayList(
Iterables.filter(
Iterables.transform(matchingComputers, ... your Function ...),
Predicates.<String>notNull();
)
);
</code></pre>
<p>If you don't actually need a Collection, just an Iterable, then the Lists.newArrayList() call can go away too and you're one step cleaner again!</p>
<p>I suspect you might find that the Function will come in handy again, and will be most useful declared as</p>
<pre><code>public class Computer {
....
public static Function<Computer, String> TO_ID = ...;
}
</code></pre>
<p>which cleans this up even more (and will promote reuse).</p>
http://stackoverflow.com/questions/1802809/javas-weakhashmap-and-caching-why-is-it-referencing-the-keys-not-the-values/1802879#180287912Answer by Cowan for Java's WeakHashMap and caching: Why is it referencing the keys, not the values?Cowan2009-11-26T10:32:28Z2009-11-26T10:32:28Z<p>WeakHashMap <em>isn't</em> useful as a cache, at least the way most people think of it. As you say, it uses weak <em>keys</em>, not weak <em>values</em>, so it's not designed for what most people want to use it for (and, in fact, I've <em>seen</em> people use it for, incorrectly).</p>
<p>WeakHashMap is mostly useful to keep metadata about objects whose lifecycle you don't control. For example, if you have a bunch of objects passing through your class, and you want to keep track of extra data about them without needing to be notified when they go out of scope, and without your reference to them keeping them alive.</p>
<p>A simple example (and one I've used before) might be something like:</p>
<pre><code>WeakHashMap<Thread, SomeMetaData>
</code></pre>
<p>where you might keep track of what various threads in your system are doing; when the thread dies, the entry will be removed silently from your map, and you won't keep the Thread from being garbage collected if you're the last reference to it. You can then iterate over the entries in that map to find out what metadata you have about active threads in your system.</p>
<p>See <a href="http://www.codeinstructions.com/2008/09/weakhashmap-is-not-cache-understanding.html" rel="nofollow">WeakHashMap in not a cache!</a> for more information.</p>
<p>For the type of cache you're after, either use a dedicated cache system (e.g. <a href="http://ehcache.org/" rel="nofollow">EHCache</a>) or look at <a href="http://code.google.com/p/google-collections/" rel="nofollow">google-collections'</a> <a href="http://google-collections.googlecode.com/svn/trunk/javadoc/com/google/common/collect/MapMaker.html" rel="nofollow">MapMaker class</a>; something like</p>
<pre><code>new MapMaker().weakValues().makeMap();
</code></pre>
<p>will do what you're after, or if you want to get fancy you can add timed expiration:</p>
<pre><code>new MapMaker().weakValues().expiration(5, TimeUnit.MINUTES).makeMap();
</code></pre>
http://stackoverflow.com/questions/1802277/lucene-seems-to-be-caching-search-results-why/1802799#18027993Answer by Cowan for Lucene seems to be caching search results - why?Cowan2009-11-26T10:14:26Z2009-11-26T10:14:26Z<p>To see changes made by IndexWriters against an index for which you have an open IndexReader, be sure to call <a href="http://lucene.apache.org/java/2%5F9%5F0/api/core/org/apache/lucene/index/IndexReader.html#reopen%28%29" rel="nofollow">IndexReader.reopen()</a> to see the latest changes. </p>
<p>Make sure also that your <a href="http://lucene.apache.org/java/2%5F9%5F0/api/core/org/apache/lucene/index/IndexWriter.html" rel="nofollow">IndexWriter</a> is committing the changes, either through an explicit commit(), a close(), or having autoCommit set to true.</p>
http://stackoverflow.com/questions/1795808/and-and-or-in-java-if-statements/1795946#17959464Answer by Cowan for && (AND) and || (OR) in Java IF statementsCowan2009-11-25T10:15:50Z2009-11-25T10:15:50Z<p>All the answers here are great but, just to illustrate where this comes from, for questions like this it's good to go to the source: the Java Language Specification.</p>
<p><a href="http://java.sun.com/docs/books/jls/third%5Fedition/html/expressions.html#15.23" rel="nofollow">Section 15:23, Conditional-And operator (&&)</a>, says:</p>
<blockquote>
<p>The && operator is like & (§15.22.2), but evaluates its right-hand operand only if the value of its left-hand operand is true. [...] At run time, the left-hand operand expression is evaluated first [...] if the resulting value is false, the value of the conditional-and expression is false and the right-hand operand expression is not evaluated. If the value of the left-hand operand is true, then the right-hand expression is evaluated [...] the resulting value becomes the value of the conditional-and expression. Thus, && computes the same result as & on boolean operands. It differs only in that the right-hand operand expression is evaluated conditionally rather than always.</p>
</blockquote>
<p>And similarly, <a href="http://java.sun.com/docs/books/jls/third%5Fedition/html/expressions.html#15.24" rel="nofollow">Section 15:24, Conditional-Or operator (||)</a>, says:</p>
<blockquote>
<p>The || operator is like | (§15.22.2), but evaluates its right-hand operand only if the value of its left-hand operand is false. [...] At run time, the left-hand operand expression is evaluated first; [...] if the resulting value is true, the value of the conditional-or expression is true and the right-hand operand expression is not evaluated. If the value of the left-hand operand is false, then the right-hand expression is evaluated; [...] the resulting value becomes the value of the conditional-or expression. Thus, || computes the same result as | on boolean or Boolean operands. It differs only in that the right-hand operand expression is evaluated conditionally rather than always.</p>
</blockquote>
<p>A little repetitive, maybe, but the best confirmation of exactly how they work. Similarly the conditional operator (?:) only evaluates the appropriate 'half' (left half if the value is true, right half if it's false), allowing the use of expressions like:</p>
<pre><code>int x = (y == null) ? 0 : y.getFoo();
</code></pre>
<p>without a NullPointerException.</p>
http://stackoverflow.com/questions/1791529/aspectj-using-annotations-to-implement-hashcode/1793929#17939291Answer by Cowan for AspectJ: using annotations to implement hashCode()?Cowan2009-11-25T00:29:11Z2009-11-25T00:29:11Z<p>This doesn't help you with your 'exploring AspectJ' goal, but for annotation-based hashing, look at the <a href="http://code.google.com/p/jau/" rel="nofollow">Java Annotation Based Utilities (JAU)</a>, which uses this approach for hashCode(), equals(), toString(), Comparable, deep copying/clone(), and property maps.</p>
<p>An example:</p>
<pre><code>@JAUHashCode
public class User {
private String username;
private int age;
@JAUHashCode(include=false)
private String password;
public int hashCode() {
return JAU.hashCode(this);
}
}
</code></pre>
<p>I personally don't like "include=false" (for most of our classes I'd rather be explicit), so instead you can use:</p>
<pre><code>@JAUHashCode(allFields=false)
public class User {
@JAUHashCode
private String username;
@JAUHashCode
private int age;
private String password;
</code></pre>
<p>You can also dictate whether the hashCode of the superclass is taken into account. Quite neat.</p>
http://stackoverflow.com/questions/1791610/java-find-the-first-cause-of-an-exception/1793904#17939041Answer by Cowan for Java find the first cause of an exceptionCowan2009-11-25T00:20:25Z2009-11-25T00:20:25Z<p>In the interests of not reinventing the wheel, if you're using <a href="http://commons.apache.org/lang/" rel="nofollow">Apache Commons Lang</a>, then look at <a href="http://commons.apache.org/lang/api-release/org/apache/commons/lang/exception/ExceptionUtils.html#getRootCause%28java.lang.Throwable%29" rel="nofollow">ExceptionUtils.getRootCause()</a>.</p>
<p>Is it worth including a library just for that? Maybe not. But if you already have it on your classpath, it's there for you, and note that it does some things that a 'naive' implementation might not do (e.g. deal with cycles in the cause chain... ugh!)</p>
http://stackoverflow.com/questions/1136659/how-can-i-suppress-java-compiler-warnings-about-sun-proprietary-api/1780323#17803230Answer by Cowan for How can I suppress java compiler warnings about Sun proprietary APICowan2009-11-22T22:52:23Z2009-11-22T22:52:23Z<p>Eclipse does have a setting which (should) pick this up, see e.g. the desciption in <a href="http://archive.eclipse.org/eclipse/downloads/drops/R-3.1-200506271435/eclipse-news-part2.html" rel="nofollow">the Eclipse 3.1 release notes</a>:</p>
<p>Preferences → Java → Compiler → Errors/Warnings → Deprecated And Restricted API → Forbidden/Discouraged Reference</p>
<p>(and the project properties page to allow project-specific overrides of this setting)</p>
http://stackoverflow.com/questions/1773221/closures-mean-fully-type-safe-criteria/1774613#17746131Answer by Cowan for closures mean fully type-safe criteria?Cowan2009-11-21T05:36:07Z2009-11-21T05:36:07Z<p>As Thomas points out, this doesn't strictly require closures. It's all up in the air at the moment, given no-one knows quite what proposal is being looked at. It's not clear if FCM is actually the basis of the proposal, particularly given that Stephen Colebourne seemed to be as susprised as anyone about the announcement.</p>
<p>A lot of people are pointing at <a href="http://javac.info/closures-v06a.html" rel="nofollow">Neal Gafter's mysteriously-revised-more-or-less-right-as-the-Devoxx-presentation-announcing-closures-was-being-given spec</a> as a hint as to what form closures might take. Mind you, the revised proposal looks (aesthetically) rather like FCM!</p>
<p>That spec does include the kind of references you refer to (under 'Method References' in the above line), and of course FCM has the same. Yes, this would definitely make you suggest possible. My very first thought when reading about this was how it would affect JPA/Hibernate, and/or our own abstraction layers around same, in this regard. Typesafe, refactorable method references in your criteria? Hell yeah.</p>
http://stackoverflow.com/questions/1756904/can-i-do-this-generic-thing/1759840#17598401Answer by Cowan for Can I do this Generic thing?Cowan2009-11-18T23:22:44Z2009-11-18T23:22:44Z<p>There is a way to do this using reflection, as long as your classes follow a consistent class hierarchy in terms of generics (i.e. any intermediate classes in the inheritance hierarchy between your base class and your concrete class use the same generic parameters in the same order).</p>
<p>We use something like this in our abstract class, defined as HibernateDAO where T is the entity type and K is the PK:</p>
<pre><code>private Class getBeanClass() {
Type daoType = getClass().getGenericSuperclass();
Type[] params = ((ParameterizedType) daoType).getActualTypeArguments();
return (Class) params[0];
}
</code></pre>
<p>which smells a bit but trades off the ickiness of passing a .class up from the concrete implementation in a constructor for the ickiness of insisting that you keep your type hierarchy consistent in that way.</p>
http://stackoverflow.com/questions/1751844/java-convert-liststring-to-a-joind-string/1752807#17528075Answer by Cowan for Java: convert List<String> to a join()d stringCowan2009-11-18T00:19:15Z2009-11-18T03:00:40Z<p>All the references to Apache Commons are fine (and that is what most people use) but I think the <a href="http://code.google.com/p/google-collections/" rel="nofollow">google-collections</a> equivalent, <a href="http://google-collections.googlecode.com/svn/trunk/javadoc/com/google/common/base/Joiner.html" rel="nofollow">Joiner</a>, has a much nicer API.</p>
<p>You can do the simple join case with</p>
<pre><code>Joiner.on(" and ").join(names)
</code></pre>
<p>but also easily deal with nulls:</p>
<pre><code>Joiner.on(" and ").skipNulls().join(names);
</code></pre>
<p>or</p>
<pre><code>Joiner.on(" and ").useForNull("[unknown]").join(names);
</code></pre>
<p>and (useful enough as far as I'm concerned to use it in preference to commons-lang), the ability to deal with Maps:</p>
<pre><code>Map<String, Integer> ages = .....;
String foo = Joiner.on(", ").withKeyValueSeparator(" is ").join(ages);
// Outputs:
// Bill is 25, Joe is 30, Betty is 35
</code></pre>
<p>which is extremely useful for debugging etc.</p>
http://stackoverflow.com/questions/1738068/a-collection-that-represents-a-concatenation-of-two-collections-in-java/1739059#17390593Answer by Cowan for A collection that represents a concatenation of two collections in JavaCowan2009-11-15T22:17:04Z2009-11-15T22:17:04Z<p>As always for any collections stuff, look at <a href="http://code.google.com/p/google-collections/" rel="nofollow">google-collections</a>. If you have Sets, specifically (not just a general collection), you want:</p>
<pre><code>Set<String> combined = Sets.union(foo, bar);
</code></pre>
<p>which creates an unmodifiable view of the two sets. That is, changes in 'foo' or 'bar' will be reflected in 'combined' (but combined.add() etc is not supported).</p>
<p>For the more generic case, you have Iterables.concat() but that merely lets you iterate over the joined item, the Iterable interface obviously doesn't include 'contains' so you're a little hosed there.</p>
<p>The other collections utilities classes in google-collections (com.google.common.collect.Lists and com.google.common.collect.Collections2) don't contain any concatenation methods. Don't see why they couldn't, but at the moment they don't.</p>
http://stackoverflow.com/questions/1712233/converting-java-collection-of-some-class-to-collection-of-string/1712322#17123220Answer by Cowan for Converting Java Collection of some class to Collection of StringCowan2009-11-11T00:57:12Z2009-11-11T00:57:12Z<p>I know you don't want to add additional libraries, but for anyone who finds this from a search engine, in google-collections you might use:</p>
<pre><code>List<String> strings = Lists.transform(uris, Functions.toStringFunction());
</code></pre>
<p>one way, and</p>
<pre><code>List<String> uris = Lists.transform(strings, new Function<String, URI>() {
public URI apply(String from) {
try {
return new URI(from);
} catch (URISyntaxException e) {
// whatever you need to do here
}
}
});
</code></pre>
<p>the other.</p>
http://stackoverflow.com/questions/80692/java-logger-that-automatically-determines-callers-class-name/1705696#17056960Answer by Cowan for Java logger that automatically determines caller's class nameCowan2009-11-10T04:54:49Z2009-11-10T04:54:49Z<p>We actually have something quite similar in a LogUtils class. Yes, it's kind of icky, but the advantages are worth it as far as I'm concerned. We wanted to make sure we didn't have any overhead from it being repeatedly called though, so ours (somewhat hackily) ensures that it can ONLY be called from a static initializer context, a la:</p>
<pre><code>private static final Logger LOG = LogUtils.loggerForThisClass();
</code></pre>
<p>It will fail if it's invoked from a normal method, or from an instance initializer (i.e. if the 'static' was left off above) to reduce the risk of performance overhead. The method is:</p>
<pre><code>public static Logger loggerForThisClass() {
// We use the third stack element; second is this method, first is .getStackTrace()
StackTraceElement myCaller = Thread.currentThread().getStackTrace()[2];
Assert.equal("<clinit>", myCaller.getMethodName());
return Logger.getLogger(myCaller.getClassName());
}
</code></pre>
<p>Anyone who asks what advantage does this have over </p>
<pre><code>= Logger.getLogger(MyClass.class);
</code></pre>
<p>has probably never had to deal with someone who copies and pastes that line from somewhere else and forgets to change the class name, leaving you dealing with a class which sends all its stuff to another logger.</p>
http://stackoverflow.com/questions/1696791/from-arraylist-to-long/1698098#16980981Answer by Cowan for From arrayList to long[]Cowan2009-11-08T22:12:55Z2009-11-08T22:12:55Z<p>At the risk of being a huge pimp for <a href="http://guava-libraries.googlecode.com/" rel="nofollow">Google's guava-libraries</a> (I really do love it!), the <a href="http://guava-libraries.googlecode.com/svn/trunk/javadoc/com/google/common/primitives/Longs.html" rel="nofollow">Longs</a> class makes this a one-liner:</p>
<pre><code>return Longs.toArray(foundLongs);
</code></pre>
<p>ta-daa!</p>
http://stackoverflow.com/questions/1679976/how-to-interleave-a-string-with-a-character-sequence/1685203#16852030Answer by Cowan for How to interleave a String with a character sequenceCowan2009-11-06T03:19:09Z2009-11-06T03:19:09Z<p>Using <a href="http://code.google.com/p/guava-libraries/" rel="nofollow">the prerelease Google Guava libraries</a>:</p>
<pre><code>Joiner.on("-").join(Splitter.fixedLength(3).split(inputString));
</code></pre>
<p>Short, clear, and expressive. Love it!</p>
http://stackoverflow.com/questions/1565214/is-there-a-way-to-check-if-two-collections-contain-the-same-elements-independent/1577170#15771703Answer by Cowan for Is there a way to check if two Collections contain the same elements, independent of order?Cowan2009-10-16T09:51:44Z2009-10-16T09:51:44Z<p>Apache commons-collections has <a href="http://commons.apache.org/collections/api/org/apache/commons/collections/CollectionUtils.html#isEqualCollection%28java.util.Collection,%20java.util.Collection%29" rel="nofollow">CollectionUtils#isEqualCollection</a>:</p>
<blockquote>
<p>Returns true iff the given Collections contain exactly the same elements with exactly the same cardinality.</p>
<p>That is, iff the cardinality of e in a is equal to the cardinality of e in b, for each element e in a or b.</p>
</blockquote>
<p>Which is, I think, exactly what you're after.</p>
http://stackoverflow.com/questions/1553850/is-the-lucene-2-9-tokenstream-api-faster-than-the-old-one/1553947#15539471Answer by Cowan for Is the Lucene 2.9 TokenStream API faster than the old one?Cowan2009-10-12T11:02:55Z2009-10-12T11:02:55Z<p>"When things are finalized" isn't really an accurate summary of Lucene 3.0 vs 2.9. The 2.9 release contains all the same updates and API changes as 3.0. </p>
<p>All the new features were added to 2.4, the release was numbered 2.9 (to make it clear that it was a 'special' release), and 3.0 just comes along and removes two of the things which were 'holding things back': namely, it will remove all the deprecated methods and classes (many of which have been hanging around for a LONG time), and the requirement for Java 1.4 compatibility will be dropped (so Java 1.5-level classes, generics, etc will be introduced as appropriate).</p>
<p>Basically, rather than doing a huge leap in both API breakage and features in a single release (meaning people who wanted the features had to change all their old deprecated calls), the features were added first, so people can take advantage of the changes, and then concentrate on removing the use of the deprecated APIs, knowing that 3.0 will basically be a drop-in replacement -- just cleaned up, with no new real features.</p>
http://stackoverflow.com/questions/1509591/good-blogs-about-multi-threaded-development/1517419#15174191Answer by Cowan for Good blogs about multi-threaded development?Cowan2009-10-04T21:24:55Z2009-10-04T21:24:55Z<p>Just a few recommendations on top of what's already been discussed, in approximate descending order of usefulness (according to me, anyway):</p>
<ul>
<li>Alex Miller (as mentioned by spdenne) maintains <a href="http://concurrency.tumblr.com/" rel="nofollow">a concurrency link blog on tumblr</a> which aggregates a lot of cool Java concurrency stuff</li>
<li><a href="http://blogs.azulsystems.com/cliff/" rel="nofollow">Cliff Click's blog</a> -- an incredibly smart guy who works at Azul Systems, where they pretty much take Java concurrency to the extreme (we're talking machines with, like, a bajillion cores and a squillion gig of RAM) </li>
<li><a href="http://jeremymanson.blogspot.com/" rel="nofollow">Jeremy Manson's blog</a> -- pretty much <em>the guy</em> (well, one of the guys) on Java memory model/concurrency/performance related issues (he was one of the authors of the new memory model)</li>
<li><a href="http://www.javaperformancetuning.com/" rel="nofollow">Java Performance Tuning</a> -- combination of articles and links related to performance, often touches on concurrency stuff</li>
<li><a href="http://kirk.blog-city.com/" rel="nofollow">Kirk Pepperdine</a>, Java performance wiz -- more about general performance than concurrency specifically, but talks about concurrency sometimes (of course)</li>
<li><a href="http://www.javaspecialists.eu/archive/archive.jsp" rel="nofollow">Java Specialist's Newsletter</a> -- again, mostly performance, concurrency stuff sometimes</li>
</ul>
http://stackoverflow.com/questions/1491519/any-concept-of-shared-memory-in-java/1492536#14925360Answer by Cowan for Any concept of shared memory in JavaCowan2009-09-29T13:24:48Z2009-09-29T13:24:48Z<p>One thing to look at is using <a href="http://en.wikipedia.org/wiki/Memory-mapped%5Ffile" rel="nofollow">memory-mapped files</a>, using <a href="http://java.sun.com/javase/6/docs/api/java/nio/channels/FileChannel.html" rel="nofollow">Java NIO's FileChannel</a> class or similar (see the map() method). We've used this very successfully to communicate (in our case one-way) between a Java process and a C native one on the same machine.</p>
<p>I'll admit I'm no filesystem expert (luckily we do have one on staff!) but the performance for us is absolutely blazingly fast -- effectively you're treating a section of the page cache as a file and reading + writing to it directly without the overhead of system calls. I'm not sure about the guarantees and coherency -- there are methods in Java to force changes to be written to the file, which implies that they are (sometimes? typically? usually? normally? not sure) written to the actual underlying file (somewhat? very? extremely?) lazily, meaning that some proportion of the time it's basically just a shared memory segment. </p>
<p>In theory, as I understand it, memory-mapped files CAN actually be backed by a shared memory segment (they're just file handles, I think) but I'm not aware of a way to do so in Java without JNI.</p>
http://stackoverflow.com/questions/1468159/how-can-i-insert-random-values-into-a-sql-server-table/1469385#14693851Answer by Cowan for How can I insert random values into a SQL Server table?Cowan2009-09-24T01:30:47Z2009-09-24T01:30:47Z<p>I've had a play with this, and found a rather hacky way to do it with the use of an intermediate table variable.</p>
<p>Once @randomStuff is set up, we do this (note in my case, @MyTable is a table variable, adjust accordingly for your normal table):</p>
<pre><code>DECLARE @randomMappings TABLE (id INT, val VARCHAR(100), sorter UNIQUEIDENTIFIER)
INSERT INTO @randomMappings
SELECT M.id, val, NEWID() AS sort
FROM @MyTable AS M
CROSS JOIN @randomstuff
</code></pre>
<p>so at this point, we have an intermediate table with every combination of (mytable id, random value), and a random sort value for each row specific to that combination. Then</p>
<pre><code>DELETE others FROM @randomMappings AS others
INNER JOIN @randomMappings AS lower
ON (lower.id = others.id) AND (lower.sorter < others.sorter)
</code></pre>
<p>This is an old trick which deletes all rows for a given MyTable.id except for the one with the lower sort value -- join the table to itself where the value is smaller, and delete any where such a join succeeded. This just leaves behind the lowest value. So for each MyTable.id, we just have one (random) value left.. Then we just plug it back into the table:</p>
<pre><code>UPDATE @MyTable
SET MyColumn = random.val
FROM @MyTable m, @randomMappings AS random
WHERE (random.id = m.id)
</code></pre>
<p>And you're done!</p>
<p>I <em>said</em> it was hacky...</p>
http://stackoverflow.com/questions/554769/alphabetically-sort-a-java-collection-based-upon-the-tostring-value-of-its-memb/1387093#13870932Answer by Cowan for Alphabetically Sort a Java Collection based upon the 'toString' value of its member items.Cowan2009-09-07T00:20:28Z2009-09-07T00:20:28Z<p><a href="http://code.google.com/p/google-collections/" rel="nofollow">google-collections</a> makes this really easy with <a href="http://google-collections.googlecode.com/svn/trunk/javadoc/com/google/common/collect/Ordering.html" rel="nofollow">Ordering</a>:</p>
<pre><code>Collections.sort(list, Ordering.usingToString());
</code></pre>
<p>Is bringing in a whole 3rd-party library just to use something you could write trivially using a Comparator (as others have provided) worthwhile? No, but google-collections is so cool you'll want to have it anyway for a bunch of other reasons.</p>
<p>On the sorting front, you can also easily do things like reversing:</p>
<pre><code>Ordering.usingToString().reverse();
</code></pre>
<p>or break ties:</p>
<pre><code>Ordering.usingToString().compound(someOtherComparator);
</code></pre>
<p>or deal with nulls:</p>
<pre><code>Ordering.usingToString().nullsFirst();
</code></pre>
<p>etc., but there's a bunch more stuff in there (not just sorting-related, of course) that leads to really expressive code. Check it out!</p>
http://stackoverflow.com/questions/1351168/volatile-semantic-with-respect-to-other-fields/1356376#13563763Answer by Cowan for Volatile semantic with respect to other fieldsCowan2009-08-31T08:12:11Z2009-08-31T12:25:36Z<p>Yes, this code is 'correct' as it stands, from Java 1.5 onwards.</p>
<p>Atomicity is not a concern, with or without the volatile (writes to object references are atomic), so you can cross that off the concerns list either way -- the only open question is visibility of changes and the 'correctness' of the ordering.</p>
<p>Any write to a volatile variable sets up a 'happens-before' relationship (the key concept of the new Java Memory Model, as specified in <a href="http://jcp.org/en/jsr/detail?id=133" rel="nofollow">JSR-133</a>) with any subsequent reads of the same variable. This means that the reading thread must have visibility into everything visible to the writing thread: that is, it must see all variables with <em>at least</em> their 'current' values at the time of the write.</p>
<p>We can explain this in detail by looking at <a href="http://java.sun.com/docs/books/jls/third%5Fedition/html/memory.html#17.4.5" rel="nofollow">section 17.4.5 of the Java Language Specification</a>, specifically the following key points:</p>
<ol>
<li>"If x and y are actions of the same thread and x comes before y in program order, then hb(x, y)" (that is, actions on the same thread cannot be reordered in a way to be inconsistent with program order)</li>
<li>"A write to a volatile field (§8.3.1.4) happens-before every subsequent read of that field." (this is clarifying text, explaining that write-then-read of a volatile field is a synchronization point)</li>
<li>"If hb(x, y) and hb(y, z), then hb(x, z)" (transitivity of happens-before) </li>
</ol>
<p>So in your example:</p>
<ul>
<li>the write to 'service' (a) happens-before the write to 'serviceReady' (b), due to rule 1</li>
<li>the write to 'serviceReady' (b) happens-before the read of same (c), due to rule 2</li>
<li>therefore, (a) happens-before (c) (3rd rule)</li>
</ul>
<p>meaning that you are guaranteed that 'service' is set correctly, in this instance, once serviceReady is true.</p>
<p>You can see some good write-ups using almost <em>exactly</em> the same example, one at <a href="http://www.ibm.com/developerworks/library/j-jtp03304/" rel="nofollow">IBM DeveloperWorks</a> -- see "New Guarantees for Volatile":</p>
<blockquote>
<p>values that were visible to A at the time that V was written are guaranteed now to be visible to B.</p>
</blockquote>
<p>and one at <a href="http://www.cs.umd.edu/~pugh/java/memoryModel/jsr-133-faq.html#volatile" rel="nofollow">the JSR-133 FAQ</a>, written by the authors of that JSR:</p>
<blockquote>
<p>Thus, if the reader sees the value true for v, it is also guaranteed to see the write to 42 that happened before it. This would not have been true under the old memory model. If v were not volatile, then the compiler could reorder the writes in writer, and reader's read of x might see 0.</p>
</blockquote>
http://stackoverflow.com/questions/1324064/performance-of-hashmap-with-different-initial-capacity-and-load-factor/1324701#13247010Answer by Cowan for Performance of HashMap with different initial capacity and load factorCowan2009-08-24T20:51:22Z2009-08-24T20:51:22Z<blockquote>
<p>Assuming (and this is a stretch) that the hash function is a simple mod 5 of the integer keys</p>
</blockquote>
<p>It's not. From HashMap.java:</p>
<pre><code>static int hash(int h) {
// This function ensures that hashCodes that differ only by
// constant multiples at each bit position have a bounded
// number of collisions (approximately 8 at default load factor).
h ^= (h >>> 20) ^ (h >>> 12);
return h ^ (h >>> 7) ^ (h >>> 4);
}
</code></pre>
<p>I'm not even going to pretend I understand that, but it looks like that's designed to handle just that situation.</p>
<p>Note also that the number of buckets is also always a power of 2, no matter what size you ask for.</p>
http://stackoverflow.com/questions/1322001/sql-left-outer-join-with-only-some-rows-from-the-right/1322047#13220470Answer by Cowan for SQL LEFT outer join with only some rows from the right?Cowan2009-08-24T12:22:58Z2009-08-24T12:22:58Z<p>Just to clarify -- all records from TABLE_A should appear, unless there are rows in table B with statues <em>other</em> than 'D'?</p>
<p>You'll need at least one non-null column on B (I'll use 'B.ID' as an example, and this approach should work):</p>
<pre><code>SELECT TABLE_A.EMPNO
FROM TABLE_A
LEFT OUTER JOIN TABLE_B ON
(TABLE_A.EMPNO = TABLE_B.EMPNO)
AND (TABLE_B.STATUS <> 'D' OR TABLE_B.STATUS IS NULL)
WHERE
TABLE_B.ID IS NULL
</code></pre>
<p>That is, reverse the logic you might think -- join onto TABLE_B only where you have rows that would <em>exclude</em> TABLE_A entries, and then use the IS NULL at the end to exclude those. This means that only those which didn't match (those with no row in TABLE_B, or with only 'D' rows) get included.</p>
<p>An alternative might be</p>
<pre><code>SELECT TABLE_A.EMPNO
FROM TABLE_A
WHERE NOT EXISTS (
SELECT * FROM TABLE_B
WHERE TABLE_B.EMPNO = TABLE_A.EMPNO
AND (TABLE_B.STATUS <> 'D' OR TABLE_B.STATUS IS NULL)
)
</code></pre>
http://stackoverflow.com/questions/1315262/sql-finding-longest-date-gap/1317147#13171473Answer by Cowan for SQL: finding longest date gapCowan2009-08-22T21:58:31Z2009-08-22T21:58:31Z<p>Database-agnostic, something of a variant of richardtallent's, but without the restrictions.</p>
<p>Starting with this setup:</p>
<pre><code>create table test(id int, userid int, time datetime)
insert into test values (1, 1, '2009-03-11 08:00')
insert into test values (2, 1, '2009-03-11 18:00')
insert into test values (3, 1, '2009-03-13 19:00')
insert into test values (4, 1, '2009-03-14 18:00')
</code></pre>
<p>(I'm SQL Server 2008 here, but it shouldn't matter)</p>
<p>Running this query:</p>
<pre><code>select
starttime.id as gapid, starttime.time as starttime, endtime.time as endtime,
/* Replace next line with your DB's way of calculating the gap */
DATEDIFF(second, starttime.time, endtime.time) as gap
from
test as starttime
inner join test as endtime on
(starttime.userid = endtime.userid)
and (starttime.time < endtime.time)
left join test as intermediatetime on
(starttime.userid = intermediatetime.userid)
and (starttime.time < intermediatetime.time)
and (intermediatetime.time < endtime.time)
where
(intermediatetime.id is null)
</code></pre>
<p>Gives the following:</p>
<pre><code>gapid starttime endtime gap
1 2009-03-11 08:00:00.000 2009-03-11 18:00:00.000 36000
2 2009-03-11 18:00:00.000 2009-03-13 19:00:00.000 176400
3 2009-03-13 19:00:00.000 2009-03-14 18:00:00.000 82800
</code></pre>
<p>You can then just ORDER BY the gap expression descending, and pick the top result.</p>
<p>Some explanation: like richardtallent's answer, you join the table onto itself to find a 'later' record -- this basically pairs all records with ANY of their later records (so pairs 1+2, 1+3, 1+4, 2+3, 2+4, 3+4). Then there's another self-join, this time a left join, to find rows in between the two previously selected so (1+2+null, 1+3+2, 1+4+2, 1+4+3, 2+3+null, 2+4+3, 3+4+null). The WHERE clause, though, filters these out (keeps only the rows with no intermediate row), hence keeping only 1+2+null, 2+3+null, and 3+4+null. Taa-daa!</p>
<p>If you could, potentially, have the same time in there twice (a 'gap' of 0) then you'll need a way to break ties, as Dems points out. If you can use ID as a tie-breaker, then change e.g.</p>
<pre><code>and (starttime.time < intermediatetime.time)
</code></pre>
<p>to</p>
<pre><code>and ((starttime.time < intermediatetime.time)
or ((starttime.time = intermediatetime.time) and (starttime.id < intermediatetime.id)))
</code></pre>
<p>assuming that 'id' is a valid way to break ties. </p>
<p>In fact, if you <em>know</em> that ID will be monotonically increasing (I know you said 'not sequential' - not clear if this means that they don't increase with each row, or just that the IDs of the two relevant entries may not be sequential because e.g. another user has entries in between), you can use ID instead of time in <em>all</em> the comparisons to make this even simpler.</p>
http://stackoverflow.com/questions/1311790/most-elegant-way-to-extract-data-from-multiple-lists-into-a-new-one-in-java/1312308#13123081Answer by Cowan for Most elegant way to extract data from multiple lists into a new one in Java?Cowan2009-08-21T14:31:15Z2009-08-21T14:31:15Z<p>Following the principle of 'use someone else's code', I think the cleanest implementation you'll find will be in <a href="http://google-collections.googlecode.com/svn/trunk/javadoc/com/google/common/collect/Iterables.html" rel="nofollow">Google Collections' Iterables class</a>.</p>
<p>You could do:</p>
<pre><code>for (SomeType input : Iterables.concat(a.getOneSet(), a.getAnotherSet()) {
rgResults.add(B.convert(input);
}
</code></pre>
<p>Or, if you rewrite B as a <a href="http://google-collections.googlecode.com/svn/trunk/javadoc/com/google/common/base/Function.html" rel="nofollow">Function</a> and use <a href="http://google-collections.googlecode.com/svn/trunk/javadoc/com/google/common/collect/Lists.html" rel="nofollow">Lists</a>:</p>
<pre><code>rgResults = Lists.transform(
Lists.newArrayList(Iterables.concat(a.getOneSet(), a.getAnotherSet()),
new B());
</code></pre>
<p>and you're done!</p>
http://stackoverflow.com/questions/1808376/does-simulation-of-closures-in-java-make-sense/1808466#1808466Comment by Cowan on Does simulation of closures in Java make sense?Cowan2009-11-27T12:31:48Z2009-11-27T12:31:48ZThis. As soon as you start introducting objects to do this, you end up being able to reuse them, rather than repeating the same loop 20 times scattered throughout your code.http://stackoverflow.com/questions/1788696/how-the-code-behaves-different-for-java-and-c-compiler/1788765#1788765Comment by Cowan on how the code behaves different for java and C compiler ?Cowan2009-11-26T20:52:23Z2009-11-26T20:52:23Z"you could just as well have gotten 24, segmentation fault, or a compile-time error"
Or, indeed, "a suffusion of yellow" -- <a href="http://www.thateden.co.uk/dirk/" rel="nofollow">thateden.co.uk/dirk</a>http://stackoverflow.com/questions/1802277/lucene-seems-to-be-caching-search-results-why/1802799#1802799Comment by Cowan on Lucene seems to be caching search results - why?Cowan2009-11-26T11:04:42Z2009-11-26T11:04:42Zreopen() is more efficient, as recreating it causes all the segment files to be read, but reopen() knows to only read the segments that have been updated since the last open.http://stackoverflow.com/questions/1802915/java-create-a-new-string-instance-with-specified-length-and-filled-with-specifi/1802940#1802940Comment by Cowan on Java - Create a new String instance with specified length and filled with specific character. Best solution?Cowan2009-11-26T11:03:13Z2009-11-26T11:03:13ZOr use repeat(), which doesn't require the empty string at the start and is arguably clearer in intent (see my answer)http://stackoverflow.com/questions/1802629/is-there-an-elegant-way-to-remove-nulls-while-transforming-a-collection-using-goo/1802686#1802686Comment by Cowan on Is there an elegant way to remove nulls while transforming a Collection using Google Collections?Cowan2009-11-26T10:44:00Z2009-11-26T10:44:00ZI'd call it NOT_NULL_FILTER, personally. :) And there's already a static method for this in the Predicates class (see my answer).http://stackoverflow.com/questions/1749687/stringutils-defaultstring-euphemism-for-collectionsComment by Cowan on StringUtils.defaultString euphemism for collections? Cowan2009-11-18T06:25:12Z2009-11-18T06:25:12ZHave reported this idea as an enhancement to google-collections... see <a href="http://code.google.com/p/google-collections/issues/detail?id=299" rel="nofollow">code.google.com/p/google-collections/…</a>http://stackoverflow.com/questions/1744164/how-to-keep-up-to-date-on-available-java-libraries/1744222#1744222Comment by Cowan on How to keep up to date on available Java libraries?Cowan2009-11-17T01:56:22Z2009-11-17T01:56:22Zgoogle-collections isn't Full of Win. It's Made Out Of 100% Pure Organic Free-Range Win, with a Rich Slathering Of Creamy Winsauce.http://stackoverflow.com/questions/1717625/is-the-following-utility-class-thread-safe/1717664#1717664Comment by Cowan on Is the following utility class thread-safe?Cowan2009-11-11T22:15:14Z2009-11-11T22:15:14Z@LES2: correct, exactly right. The JVM is quite entitled to make such observations if it wishes. It may not ever happen but this is exactly the kind of thing which can stop working when you switch from client to server VM, or from Hotspot to JRockit, or your method gets invoked for the 1,000,001st time which triggers some sort of JIT recompile, or whatever. Should be volatile at the very least.http://stackoverflow.com/questions/222108/getting-the-java-thread-id-and-stack-trace-of-run-away-java-thread/1199127#1199127Comment by Cowan on Getting the Java thread id and stack trace of run-away Java threadCowan2009-11-08T12:22:26Z2009-11-08T12:22:26ZJust for the record, 'nid' is 'native id' -- the underlying system's native identifier for the Java thread.http://stackoverflow.com/questions/1680189/getters-on-an-immutable-type/1680515#1680515Comment by Cowan on Getters on an immutable typeCowan2009-11-06T03:31:57Z2009-11-06T03:31:57Z+1 indeed. Use it for consistency if required, but it is (as you say) a convention for JAVABEANS. There's a weird persistent belief that every object in your system has to be a JavaBean -- JavaBeans are specific objects for specific purposes (see the first paragraph of <a href="http://en.wikipedia.org/wiki/JavaBean" rel="nofollow">en.wikipedia.org/wiki/JavaBean</a>) and there's no real reason to follow those conventions unless you're writing one. http://stackoverflow.com/questions/1642159/whats-the-most-elegant-way-to-concatenate-a-list-of-values-with-delimiter-in-jav/1642202#1642202Comment by Cowan on What's the most elegant way to concatenate a list of values with delimiter in Java?Cowan2009-10-29T08:29:54Z2009-10-29T08:29:54Z+1 for google-collections. Yes, yes, I know -- 'an external dependency just for string joining?!?!' -- but it can make your code so much shorter + more expressive that, if you learn the API, it will pay for itself in an hour. :)http://stackoverflow.com/questions/1571265/why-is-the-java-date-api-java-util-date-calendar-such-a-mess/1571329#1571329Comment by Cowan on Why is the Java date API (java.util.Date, .Calendar) such a mess?Cowan2009-10-17T23:04:13Z2009-10-17T23:04:13ZHa, came here to post just this! Can't edit your post (need more rep) but:
"... Date represents a specific instant in time, with millisecond precision. The design of this class is a very bad joke - a sobering example of how even good programmers screw up [...] GregorianCalendar is the only subclass of Calendar in the JDK. [...] Sun licensed this overengineered junk from Taligent - a sobering example of how average programmers screw up. "
From Peter van Der Linden's comp.lang.java.programmers "Java Programmer's FAQ", online at e.g. <a href="http://www.faqs.org/faqs/computer-lang/java/programmers/faq/" rel="nofollow">faqs.org/faqs/computer-lang/…</a>http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1556702#1556702Comment by Cowan on Most horrifying line of code you have ever seen?Cowan2009-10-13T00:06:45Z2009-10-13T00:06:45Z@onebyone... <i>I</i> would expect "if (i != 3)" and then reverse the order of the blocks just to make it that one step less clear.http://stackoverflow.com/questions/1453720/is-loc-correct-parameter-for-project-estimation/1453735#1453735Comment by Cowan on Is LOC correct parameter for project estimation?Cowan2009-09-21T10:09:07Z2009-09-21T10:09:07ZIndeed. Dijkstra also said "If we wish to count lines of code, we should not regard them as 'lines produced' but as 'lines spent': the current conventional wisdom is so foolish as to book that count on the wrong side of the ledger."http://stackoverflow.com/questions/1398113/sql-select-one-row-randomly-but-taking-into-account-a-weight/1398172#1398172Comment by Cowan on SQL : select one row randomly, but taking into account a weightCowan2009-09-10T09:07:39Z2009-09-10T09:07:39Zhacker, yes, the question is mysql but Dewfy said that was a 'working example for MSSQL', which it's not. :)