User Dave Griffiths - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T15:33:53Z http://stackoverflow.com/feeds/user/15379 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1675268/java-instance-variable-visibility-threadlocal 2 Java instance variable visibility (ThreadLocal) Dave Griffiths 2009-11-04T17:09:52Z 2009-11-04T17:27:43Z <p>In the class <a href="http://xref.jsecurity.net/openjdk-6/jdk/d2/dcb/%5Freentrant%5Fread%5Fwrite%5Flock%5F8java-source.html" rel="nofollow">ReentrantReadWriteLock</a> is the following curious comment:</p> <pre><code>transient ThreadLocalHoldCounter readHolds; Sync() { readHolds = new ThreadLocalHoldCounter(); setState(getState()); // ensures visibility of readHolds } </code></pre> <p>what does it mean by "ensures visibility"? The reason I ask is that I have a situation where it looks as though the thread local readHolds is being reset (thread locals are implemented as WeakReferences so that shouldn't happen as long as the containing Sync object is still alive). setState/getState simply alter another instance variable and don't touch readHolds.</p> http://stackoverflow.com/questions/217113/deadlock-in-java/1661294#1661294 0 Answer by Dave Griffiths for Deadlock in Java Dave Griffiths 2009-11-02T13:20:16Z 2009-11-02T13:20:16Z <p>Note that there is a type of deadlock using the concurrent package that is very hard to debug. That is where you have a ReentrantReadWriteLock and one thread grabs the read lock and then (say) tries to enter a monitor held by some other thread that is also waiting to grab the write lock. What makes it especially hard to debug is that there is no record of who has entered a read lock. It is simply a count. The thread might even have thrown an exception and died leaving the read count non-zero.</p> <p>Here is a sample deadlock that the findDeadlockedThreads method mentioned earlier won't get:</p> <pre><code>import java.util.concurrent.locks.*; import java.lang.management.*; public class LockTest { static ReentrantReadWriteLock lock = new ReentrantReadWriteLock(); public static void main(String[] args) throws Exception { Reader reader = new Reader(); Writer writer = new Writer(); sleep(10); System.out.println("finding deadlocked threads"); ThreadMXBean tmx = ManagementFactory.getThreadMXBean(); long[] ids = tmx.findDeadlockedThreads(); if (ids != null) { ThreadInfo[] infos = tmx.getThreadInfo(ids, true, true); System.out.println("the following threads are deadlocked:"); for (ThreadInfo ti : infos) { System.out.println(ti); } } System.out.println("finished finding deadlocked threads"); } static void sleep(int seconds) { try { Thread.currentThread().sleep(seconds*1000); } catch (InterruptedException e) {} } static class Reader implements Runnable { Reader() { new Thread(this).start(); } public void run() { sleep(2); System.out.println("reader thread getting lock"); lock.readLock().lock(); System.out.println("reader thread got lock"); synchronized (lock) { System.out.println("reader thread inside monitor!"); lock.readLock().unlock(); } } } static class Writer implements Runnable { Writer() { new Thread(this).start(); } public void run() { synchronized (lock) { sleep(4); System.out.println("writer thread getting lock"); lock.writeLock().lock(); System.out.println("writer thread got lock!"); } } } } </code></pre> http://stackoverflow.com/questions/65200/how-do-you-crash-a-jvm/1378388#1378388 0 Answer by Dave Griffiths for How do you crash a JVM? Dave Griffiths 2009-09-04T10:18:22Z 2009-09-04T10:18:22Z <p>Use this:</p> <pre><code>import sun.misc.Unsafe; public class Crash { private static final Unsafe unsafe = Unsafe.getUnsafe(); public static void crash() { unsafe.putAddress(0, 0); } public static void main(String[] args) { crash(); } } </code></pre> <p>This class must be on the boot classpath because it is using trusted code,so run like this:</p> <blockquote> <p>java -Xbootclasspath/p:. Crash</p> </blockquote> http://stackoverflow.com/questions/1363075/when-is-a-java-local-variable-eligible-for-gc 2 When is a Java local variable eligible for GC? Dave Griffiths 2009-09-01T15:23:29Z 2009-09-02T23:29:19Z <p>Given the following program:</p> <pre><code>import java.io.*; import java.util.*; public class GCTest { public static void main(String[] args) throws Exception { List cache = new ArrayList(); while (true) { cache.add(new GCTest().run()); System.out.println("done"); } } private byte[] run() throws IOException { Test test = new Test(); InputStream is = test.getInputStream(); ByteArrayOutputStream baos = new ByteArrayOutputStream(); byte[] buff = new byte[256]; int len = 0; while (-1 != (len = is.read())) { baos.write(buff, 0, len); } return baos.toByteArray(); } private class Test { private InputStream is; public InputStream getInputStream() throws FileNotFoundException { is = new FileInputStream("GCTest.class"); return is; } protected void finalize() throws IOException { System.out.println("finalize"); is.close(); is = null; } } } </code></pre> <p>would you expect the finalize to ever be called when the while loop in the run method is still executing and the local variable test is still in scope?</p> <p>More importantly, is this behaviour defined anywhere? Is there anything by Sun that states that it is implementation-defined?</p> <p>This is kind of the reverse of the way this question has been asked before on SO where people are mainly concerned with memory leaks. Here we have the GC aggressively GCing a variable we still have an interest in. You might expect that because test is still "in scope" that it would not be GC'd.</p> <p>For the record, it appears that sometimes the test "works" (i.e. eventually hits an OOM) and sometimes it fails, depending on the JVM implementation.</p> <p>Not defending the way this code is written BTW, it's just a question that came up at work.</p> http://stackoverflow.com/questions/320580/best-nntp-to-web-gateway 1 Best nntp to web gateway? Dave Griffiths 2008-11-26T12:44:52Z 2009-07-19T17:00:03Z <p>My company uses usenet groups on an internal nntp server and I would like to add a web server to this that would allow the usual browsing and searching but in addition provide an archive of old messages that may have expired on the server. This is mainly for searching the archives so ability to post is not important.</p> <p>Can anyone recommend a piece of software the would act as such a gateway? Most of the stuff I found on Google appears to be either no longer maintained or doesn't offer the archive ability.</p> http://stackoverflow.com/questions/249720/efficient-way-to-recursively-calculate-dominator-tree 11 Efficient way to recursively calculate dominator tree? Dave Griffiths 2008-10-30T10:00:52Z 2009-02-18T10:27:55Z <p>I'm using the Lengauer and Tarjan algorithm with path compression to calculate the dominator tree for a graph where there are millions of nodes. The algorithm is quite complex and I have to admit I haven't taken the time to fully understand it, I'm just using it. Now I have a need to calculate the dominator trees of the direct children of the root node and possibly recurse down the graph to a certain depth repeating this operation. I.e. when I calculate the dominator tree for a child of the root node I want to pretend that the root node has been removed from the graph.</p> <p>My question is whether there is an efficient solution to this that makes use of immediate dominator information already calculated in the initial dominator tree for the root node? In other words I don't want to start from scratch for each of the children because the whole process is quite time consuming.</p> <p>Naively it seems it must be possible since there will be plenty of nodes deep down in the graph that have idoms just a little way above them and are unaffected by changes at the top of the graph.</p> <p>BTW just as aside: it's bizarre that the subject of dominator trees is "owned" by compiler people and there is no mention of it in books on classic graph theory. The application I'm using it for - my FindRoots java heap analyzer - is not related to compiler theory.</p> <p>Clarification: I'm talking about directed graphs here. The "root" I refer to is actually the node with the greatest reachability. I've updated the text above replacing references to "tree" with "graph". I tend to think of them as trees because the shape is <em>mainly</em> tree-like. The graph is actually of the objects in a java heap and as you can imagine is reasonably hierarchical. I have found the dominator tree useful when doing OOM leak analysis because what you are interested in is "what keeps this object alive?" and the answer ultimately is its dominator. Dominator trees allow you to &lt;ahem&gt; see the wood rather than the trees. But sometimes lots of junk floats to the top of the tree so you have a root with thousands of children directly below it. For such cases I would like to experiment with calculating the dominator trees rooted at each of the direct children (in the original graph) of the root and then maybe go to the next level down and so on. (I'm trying not to worry about the possibility of back links for the time being :)</p> http://stackoverflow.com/questions/264950/using-samba-for-random-access-without-mounting-the-file-system/268478#268478 1 Answer by Dave Griffiths for Using Samba for random access without mounting the file system? Dave Griffiths 2008-11-06T12:21:25Z 2008-11-06T12:21:25Z <p>To answer my own question after digging around in the Samba source: there is a client library libsmbclient which includes all the usual file handling stuff: smbc_open, smbc_fstat, smbc_lseek, smbc_read etc. For instance, here is a snippet I just wrote which reads a file backwards (just to check it was doing a true seek):</p> <pre><code>fd = smbc_open(path, O_RDONLY, 0); smbc_fstat(fd, &amp;st); for (offset = st.st_size - BUFLEN; offset &gt; 0; offset -= BUFLEN) { smbc_lseek(fd, offset, SEEK_SET); smbc_read(fd, buffer, BUFLEN); } </code></pre> <p>(error checking removed for clarity)</p> http://stackoverflow.com/questions/264950/using-samba-for-random-access-without-mounting-the-file-system 1 Using Samba for random access without mounting the file system? Dave Griffiths 2008-11-05T12:05:29Z 2008-11-06T12:21:25Z <p>I am using a machine on which I do not have root access and would like to access files on a Samba server in random access mode. I know I can transfer the files in their entirety using smbclient but the files are very large (>1GB) and I would rather just treat them as remote files on which I can do random access.</p> <p>The problem as noted is that I don't have root access to this machine (a Linux box) so I can't mount the remote Samba file system. </p> <p>Is there a user-level solution that will let me randomly access the contents of a file on a Samba server? Seems it should be possible to do everything that the kernel file system client is doing but from a user-level application.</p> <p>I only need read-only access btw and the remote file is guaranteed not to change.</p> http://stackoverflow.com/questions/196913/which-wiki-will-let-me-dynamically-create-a-page-when-its-link-is-clicked 3 Which wiki will let me dynamically create a page when its link is clicked? Dave Griffiths 2008-10-13T07:23:34Z 2008-10-15T09:55:07Z <p>For an application (*) I'm developing I need a mixture of dynamically generated and static pages. It would be cool to use a wiki such that once a dynamic page has been accessed for the first time it becomes a static page that can be annotated by a user just like any other static wiki page.</p> <p>In other words, I want to override whatever outputs the message "This topic does not exist yet" (or whatever) with something that a) generates the new content in wiki format and stores it in the database then b) parses and displays that text.</p> <p>Oh and this should be recursive - the created page may have links to more dynamically generated pages and so on.</p> <p>I will generate the dynamic page based on its name (including category/namespace info to some arbitrary depth).</p> <p>One last thing - it would also be nice (but not essential) to do the creation of some of the dynamic pages upfront by a batch script (mainly for performance because these are pages it may take some time to generate).</p> <p>So my question is which wiki software would be easiest to modify/write a plugin for to do this?</p> <p>(*) Imagine a coredump analyser (think gdb) where you are presented with a list of dumps (maybe stored on some remote machine). You click on a dump, it gives you a list of threads. You click on a thread, it gives you the stack. You click on a stack frame it shows you the memory. You click on a word of memory and it displays the page of memory at that address and so on.</p> <p>As you navigate the dump, you add notes about what you've discovered about the problem to assist you later or to share with your colleagues who might also be looking at the dump.</p> <p>A few months later, the dump may have disappeared from the remote machine (takes a lot of space to archive all these dumps) but now you come across a similar problem. You enter one of the function names from a stack trace in your recent dump into the wiki search box and you retrieve the saved info about the previous occurrence.</p> <p>Update: thanks for all the answers. I may actually go with MediaWiki. It looks as though I can create an <a href="http://www.mediawiki.org/wiki/Category:ArticleViewHeader_extensions" rel="nofollow">ArticleViewHeader extension</a> that can then call <a href="http://organicdesign.co.nz/MediaWiki_code_snippets#Edit_or_create" rel="nofollow">doEdit</a> to create the page if it doesn't yet exist. There is a <a href="http://www.mediawiki.org/wiki/Extension:VirtualPage" rel="nofollow">VirtualPage extension</a> that appears to do something similar.</p> http://stackoverflow.com/questions/192920/generating-a-globally-unique-identifier-in-java/197003#197003 0 Answer by Dave Griffiths for Generating a globally unique identifier in Java Dave Griffiths 2008-10-13T08:25:04Z 2008-10-13T08:42:15Z <pre><code>public class UniqueID { private static long startTime = System.currentTimeMillis(); private static long id; public static synchronized String getUniqueID() { return "id." + startTime + "." + id++; } } </code></pre> http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/159945#159945 0 Answer by Dave Griffiths for Overriding equals and hashCode in Java Dave Griffiths 2008-10-01T21:56:47Z 2008-10-01T21:56:47Z <p>Make sure you produce a reasonably pseudo-random distribution of hashCodes otherwise you may end up with a lot of hash table entries in the same bucket and your performance will suffer. One simple technique I have sometimes used is to create a String representation of the object and return the hashCode of that.</p> http://stackoverflow.com/questions/156508/closing-a-java-fileinputstream/156721#156721 -2 Answer by Dave Griffiths for Closing a Java FileInputStream. Dave Griffiths 2008-10-01T08:37:48Z 2008-10-01T15:44:58Z <p>Are you concerned primarily with getting a clean report from FindBugs or with having code that works? These are not necessarily the same thing. Your original code is fine (although I would get rid of the redundant "if (fis != null)" check since an OutOfMemoryException would have been thrown otherwise). FileInputStream has a finalizer method which will close the stream for you in the unlikely event that you actually receive an IOException in your processing. It's simply not worth the bother of making your code more sophisticated to avoid the extremely unlikely scenario of a) you get an IOException and b) this happens so often that you start to run into finalizer backlog issues.</p> <p>Edit: if you are getting so many IOExceptions that you are running into problems with the finalizer queue then you have far far bigger fish to fry! This is about getting a sense of perspective.</p> http://stackoverflow.com/questions/58649/how-to-get-the-exif-data-from-a-file-using-c/156640#156640 3 Answer by Dave Griffiths for How to get the EXIF data from a file using C# Dave Griffiths 2008-10-01T08:00:51Z 2008-10-01T08:00:51Z <p>Check out this <a href="http://www.drewnoakes.com/code/exif/" rel="nofollow">metadata extractor</a>. It is written in Java but has also been ported to C#. I have used the Java version to write a small utility to rename my jpeg files based on the date and model tags. Very easy to use.</p> http://stackoverflow.com/questions/42017/what-is-the-best-exif-library-for-net/156621#156621 1 Answer by Dave Griffiths for What is the best EXIF library for .Net? Dave Griffiths 2008-10-01T07:54:18Z 2008-10-01T07:54:18Z <p>Check out this <a href="http://www.drewnoakes.com/code/exif/" rel="nofollow">metadata extractor</a>. It is written in Java but has also been ported to C#. I have used the Java version to write a small utility to rename my jpeg files based on the date and model tags. Very easy to use.</p> http://stackoverflow.com/questions/1675268/java-instance-variable-visibility-threadlocal Comment by Dave Griffiths on Java instance variable visibility (ThreadLocal) Dave Griffiths 2009-11-04T17:39:15Z 2009-11-04T17:39:15Z There is an example here: <a href="http://fuseyism.com/classpath/doc/java/util/concurrent/locks/AbstractQueuedSynchronizer-source.html" rel="nofollow">fuseyism.com/classpath/doc/&hellip;</a> http://stackoverflow.com/questions/1485708/how-do-i-do-a-http-get-in-java/1485885#1485885 Comment by Dave Griffiths on How do I do a HTTP GET in Java? Dave Griffiths 2009-09-28T10:18:07Z 2009-09-28T10:18:07Z Client - oops of course you're right. Got so used to seeing it the other way round :) http://stackoverflow.com/questions/1363075/when-is-a-java-local-variable-eligible-for-gc/1367336#1367336 Comment by Dave Griffiths on When is a Java local variable eligible for GC? Dave Griffiths 2009-09-04T11:40:46Z 2009-09-04T11:40:46Z Sure, but in order to write correct code, you need to be easily able to understand the rules. The link you quote mentions invisibility being a source of confusion to developers but then just adds to it by referring to the scope of a try/catch block. The reachable definition you quote is much more understandable IMO. (Of course if the developers weren't using finalisers the way they are none of this would be a problem!) http://stackoverflow.com/questions/1363075/when-is-a-java-local-variable-eligible-for-gc/1367336#1367336 Comment by Dave Griffiths on When is a Java local variable eligible for GC? Dave Griffiths 2009-09-03T11:52:16Z 2009-09-03T11:52:16Z I think that quote may be slightly misleading as it still encourages us to think in terms of local variable slots in a stack frame whereas the JIT compiler may optimize away any such notion. The earlier quote is maybe more accurate. For instance another colleague suggested that putting &quot;test = null;&quot; after the while loop would prevent the GC because it is keeping the variable &quot;in use&quot; but actually it makes no difference (doesn't count as &quot;computation&quot;) http://stackoverflow.com/questions/1363075/when-is-a-java-local-variable-eligible-for-gc/1363097#1363097 Comment by Dave Griffiths on When is a Java local variable eligible for GC? Dave Griffiths 2009-09-02T12:04:03Z 2009-09-02T12:04:03Z Excellent link Yishai, thanks! I find that case to be even more surprising - i.e. even though it is passed as a parameter to another method it is still eligible for GC http://stackoverflow.com/questions/1363075/when-is-a-java-local-variable-eligible-for-gc/1363260#1363260 Comment by Dave Griffiths on When is a Java local variable eligible for GC? Dave Griffiths 2009-09-02T10:47:56Z 2009-09-02T10:47:56Z I know, but not my code and it's anyway just a simplified testcase from a larger app that depends on variables &quot;in scope&quot; not disappearing. What I'm most interested in is whether there is any documentation that defines the notion of scope and states when an implementation is free to GC. Because a lot of people believe that the above test should work because the variable only drops out of scope (and becomes eligible for GC) when the run method returns. http://stackoverflow.com/questions/1363075/when-is-a-java-local-variable-eligible-for-gc/1363097#1363097 Comment by Dave Griffiths on When is a Java local variable eligible for GC? Dave Griffiths 2009-09-02T10:40:59Z 2009-09-02T10:40:59Z The reason why we care is because of the finalize method. That is causing the program to fail. Yes, there are easy ways to fix it but the person who raised this believes that the test instance should not be GC'd before the run method exits because it is still &quot;in scope&quot;. This testcase is a reduced version of a larger and more complex app. http://stackoverflow.com/questions/1363075/when-is-a-java-local-variable-eligible-for-gc/1363471#1363471 Comment by Dave Griffiths on When is a Java local variable eligible for GC? Dave Griffiths 2009-09-02T10:37:14Z 2009-09-02T10:37:14Z No, the instance of test is being GC'd <i>during</i> the while loop and before run completes. Because it is no longer actively in use (even though &quot;in scope&quot; as normally understood). Try it and see. http://stackoverflow.com/questions/264950/using-samba-for-random-access-without-mounting-the-file-system/264963#264963 Comment by Dave Griffiths on Using Samba for random access without mounting the file system? Dave Griffiths 2008-11-05T15:58:29Z 2008-11-05T15:58:29Z Hmmm, well I downloaded and installed samba and tried mount.cifs which appears to be the replacement for smbmount. That also fails and the reason appears to be that the command needs the suid root bit set. Catch 22! http://stackoverflow.com/questions/264950/using-samba-for-random-access-without-mounting-the-file-system/264963#264963 Comment by Dave Griffiths on Using Samba for random access without mounting the file system? Dave Griffiths 2008-11-05T13:23:11Z 2008-11-05T13:23:11Z Tried that. It says: mount: only root can do that http://stackoverflow.com/questions/249720/efficient-way-to-recursively-calculate-dominator-tree/252927#252927 Comment by Dave Griffiths on Efficient way to recursively calculate dominator tree? Dave Griffiths 2008-10-31T10:52:36Z 2008-10-31T10:52:36Z Yes, that may help, thanks. I worry about the other part of the algorithm though which normally takes of the same order of time as the dfs but is sometimes worse (and is why you definitely need the path compression). http://stackoverflow.com/questions/249720/efficient-way-to-recursively-calculate-dominator-tree/251731#251731 Comment by Dave Griffiths on Efficient way to recursively calculate dominator tree? Dave Griffiths 2008-10-31T08:36:49Z 2008-10-31T08:36:49Z Hi, you're right, please see clarification above. http://stackoverflow.com/questions/249720/efficient-way-to-recursively-calculate-dominator-tree/250771#250771 Comment by Dave Griffiths on Efficient way to recursively calculate dominator tree? Dave Griffiths 2008-10-30T17:05:40Z 2008-10-30T17:05:40Z Thanks Simon. Unfortunately the algorithm is fiendishly complex (at least to my eyes) and doesn't do anything straightforward like just recursively descending the tree. Eg it follows ancestor chains. Have a look at this just to get a feel for it: <a href="http://www.cl.cam.ac.uk/~mr10/lengtarj.pdf" rel="nofollow">cl.cam.ac.uk/~mr10/lengtarj.pdf</a>.