User Andrzej Doyle - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T13:11:06Zhttp://stackoverflow.com/feeds/user/45664http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1879897/order-of-items-in-a-hashmap-differ-when-the-same-program-is-run-in-jvm5-vs-jvm6/1879927#18799277Answer by Andrzej Doyle for Order of items in a HashMap differ when the same program is run in JVM5 vs JVM6?Andrzej Doyle2009-12-10T09:52:54Z2009-12-10T09:52:54Z<p>Probably because a <code>Map</code> is not defined to have any particular iteration order; the order in which the elements come back is likely to be an artifact of its internal implementation and does not need to stay consistent.</p>
<p>If the implementation gets updated between Java 5 and 6 (especially for performance reasons), there's no benefit or obligation of Sun to make sure the iteration order stays consistent between the two.</p>
http://stackoverflow.com/questions/1874991/moving-from-state-to-state-in-this-automaton-via-hashmap/1875178#18751781Answer by Andrzej Doyle for Moving from state to state in this automaton via HashMapAndrzej Doyle2009-12-09T16:45:18Z2009-12-09T16:45:18Z<p>Well, for one thing the <code>processState</code> method doesn't seem to update the <code>currentState</code> field of the Automaton at all. In fact, you don't seem to modify this anywhere.</p>
<p>It would help though if you explained what you're doing a little better. You've just dumped a lot of uncommented source code and says "it gets stuck on state 0", even though we don't know what state 0 is or how this condition could be detected. I'm <em>guessing</em> that currentState points to this, though the <code>State</code> instances don't have numbers either, so it's tough to know where to start analysing this...</p>
<p>At the very least, provide two bits of information (though more would be much better):</p>
<ol>
<li>The field values/output you'd expect to see to indicate success, and what you're currently seeing (be <em>explicit</em> about the specific values of specific fields);</li>
<li>The place you would expect these fields to be updated and under what conditions.</li>
</ol>
http://stackoverflow.com/questions/1873330/why-is-getentryobject-key-not-exposed-on-hashmap/1873379#18733794Answer by Andrzej Doyle for Why is getEntry(Object key) not exposed on HashMap?Andrzej Doyle2009-12-09T11:45:51Z2009-12-09T14:13:38Z<p>I can't answer your actual question (why is the method not exposed) beyond the rather obvious, "because the authors decided not to expose it."</p>
<p>However your question leads me to believe that you have a rather strange synchronization scheme going on; from my understanding you're only trying to call it to get a canonical representation of equal objects for synchronization. That sounds like a really bad idea, as I noted in my comment to the question.</p>
<p>A better approach would be to revisit how and why you want to synchronize on these key objects, and rework your synchronization to be clearer and saner, preferably at a level higher up or by using an alternative approach altogether.</p>
<p>It might help if you posted a code snippet of what you want to do with this synchronization so that others can give their opinions on a cleaner way to implement it. One example would simply be to use a thread-safe map class (such as <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ConcurrentHashMap.html" rel="nofollow">ConcurrentHashMap</a>), if this is indeed what you're trying to achieve here.</p>
<p>Edit: Have a look at <a href="http://www.catb.org/~esr/faqs/smart-questions.html#goal" rel="nofollow">How To Ask Questions The Smart Way</a>, in particular the bullet point I've linked as this is a classic example of that deficiency. It seems likely that your overall design is a bit off and needs to go in a different direction; so while you're stuck on this specific issue it's a symptom of a larger problem. Giving us the broader context will lead to you getting much better overall answers.</p>
http://stackoverflow.com/questions/1872317/java-process-is-frozen-on-linux/1872585#18725850Answer by Andrzej Doyle for java process is frozen(?) on linuxAndrzej Doyle2009-12-09T09:18:16Z2009-12-09T09:18:16Z<p>The first step is to get a thread dump of where the program is when it "freezes". If this were on Java 6, you could connect JVisualVM or JConsole to it by default, and get the stacktraces of all the threads from there. Since it's Java 5, you should be able to use the <code>jstack</code> command to get a thread dump (or you could enable JMX with a command-line option to attach the aforementioned tools, but I don't think it's worth it in this case). In all cases, pressing Ctrl-Break from the console that launched the application may also produce a thread dump, depending on the environment.</p>
<p>Do this several times a few seconds apart and then compare the thread dumps. If they're always identical, then it looks like your application is deadlocked; and the top line of the dump will show exactly where the threads are blocking (which will give a very good clue, when you look at that line of the code, which resources they're blocked on).</p>
<p>On the other hand if the thread dumps change from time to time, the program is not strictly deadlocked but looks like it's running in an infinite loop - perhaps one of your loop conditions is not declared properly so the threads never exit or something of that sort. Again, look at the set of thread dumps to see what area of code each thread is looping around in, which will give you an idea of the loop condition that is never evaluating to an exit condition.</p>
<p>If the issue isn't obvious from this analysis, post back the dumps as it will help people debug your above code.</p>
http://stackoverflow.com/questions/1847122/connection-refused-exception-when-trying-to-run-a-jar-via-web-start/1847149#18471490Answer by Andrzej Doyle for connection refused exception when trying to run a jar via web startAndrzej Doyle2009-12-04T14:08:04Z2009-12-04T14:08:04Z<p>The spaces after <code>localhost</code> make me suspicious - is there a chance you've defined the hostname with trailing spaces somewhere and web start isn't having any of it?</p>
<p>Also, have you tried simply <code>wget</code>ting (or similar) the listed jnlp URL? The response from the request will let you see what's happening when Java makes the same request.</p>
http://stackoverflow.com/questions/1827518/modelling-a-temporal-style-relational-table-in-hibernate1Modelling a temporal-style relational table in HibernateAndrzej Doyle2009-12-01T16:57:02Z2009-12-04T13:28:36Z
<p>Hi all,</p>
<p>I'm trying to wrap Hibernate around an existing data model, which as expected has its ups and downs.</p>
<p>My current sticking point is that one of the entity tables has a quasi-temporal model; no rows are ever deleted or updated; instead, the "is_current" column is set to false (and a new row is created with the new fields on an update, with a different primary key).</p>
<p>Being relatively new to Hibernate I'm struggling on how to model this, or even ascertain whether it's possible at all. Well, the deletes are simple enough with a custom <code>@SQLDelete</code> annotation, but it's the updates that seem tricky. Theoretically this seems like it <em>could</em> be quite a simple thing to do (in meta-code, <code>@SQLUpdate(sql = @SQLDelete + "; " + @SQLInsert)</code>) but there are obvious complications (asides from the fact that this syntax doesn't exist), partly around the fact that the primary key would need to be nullified in between the two statements and updated in the second, and I'm sure there are other data consistency issues that I haven't considered yet.</p>
<p>Is there a realistic way to manage this, i.e. model updates as delete + insert in Hibernate?</p>
<p>EDIT: Just to clarify, I'm aware that I could get this to work in a brute-force way, by explicitly specifying the insert SQL, and then using the above snippet (with legal references to SQL constants) to do the update. However, I don't really want to do this as I'm happy with the SQL Hibernate chooses to generate by default for the inserts, and writing this out by hand would be very brittle should the class change at all. It's a last-ditch solution to force this through, but it would seem to undermine the point of an ORM mapper somewhat if I have to write the SQL by hand...</p>
<p>DOUBLE EDIT: Even the above presumably won't work as I will need to specify the primary key bind parameter twice in the SQL (not possible with question marks), <em>and</em> I can't persuade Hibernate to go assign me a new one from the SequenceGenerator. So it looks like I'll need a programmatic approach here, rather than a configurational one - unless there's some particularly relevant config elements I've missed.</p>
http://stackoverflow.com/questions/1827518/modelling-a-temporal-style-relational-table-in-hibernate/1846940#18469400Answer by Andrzej Doyle for Modelling a temporal-style relational table in HibernateAndrzej Doyle2009-12-04T13:28:36Z2009-12-04T13:28:36Z<p>Having looked into this further, I believe that there isn't going to be an easy way to do it. One approach I'm intrigued to try is to hide the raw table behind an updateable view, so that Hibernate can be presented with something that looks sane while the triggers on the view map simple CRUD operations to the sequence of manipulations required in the underlying table.</p>
<p>However, I am suspicious that this might not work too well, because I believe Hibernate maintains its own concept of the contents of the database at any point in time; and e.g. if I delete an entity, Hibernate's cache will think that physical row no longer exists in the table (while it does but with is_current now false). I would not be surprised if this mismatch could lead to either data consistency problems in the worst case, or perhaps inefficient batch optimisation.</p>
<p>The existing tables are horrible anyway, so making them saner in the context of this change is the approach I'm going to take. At least this evaluation stage has made some of the deficiencies of the existing model clearer.</p>
http://stackoverflow.com/questions/1839969/generics-and-the-question-mark/1840709#18407091Answer by Andrzej Doyle for Generics and the question markAndrzej Doyle2009-12-03T15:37:01Z2009-12-03T15:37:01Z<p>Another option in this case would be to declare your list to be a</p>
<pre><code>List<? super String>
</code></pre>
<p>since this models <em>exactly</em> what you know about it. You say that you don't know exactly what its type bounds are, but from your second line it's fair to assume that it must be able to contain strings.</p>
<p>This compiles and to my mind, is a little nicer than a <code>List<Object></code> as it encodes your uncertainty as to what can actually go in the list. Basically, you can only <em>add</em> Strings to it, but when you call <code>get()</code> the returned element could be anything (and Java will correctly infer this type to be <code>Object</code>).</p>
<p>In practical terms, the only difference between this and <code>List<Object></code> is that the latter would allow <code>tmpColumnList.add(3)</code> or <code>tmpColumnList.add(new Thread())</code> etc. I much prefer the semantics it carries as well as the practicality.</p>
http://stackoverflow.com/questions/1840296/how-do-you-pronounce-string/1840328#18403280Answer by Andrzej Doyle for How do you pronounce String[]?Andrzej Doyle2009-12-03T14:45:56Z2009-12-03T14:45:56Z<p>It's obviously subjective, but for what it's worth I read that as "array of String".</p>
<p>This is coming from a Java background and never having touched C#.</p>
http://stackoverflow.com/questions/1840015/modify-js-to-accept-an-image-instead-of-a-text-string/1840086#18400860Answer by Andrzej Doyle for Modify js to accept an image instead of a text stringAndrzej Doyle2009-12-03T14:12:09Z2009-12-03T14:12:09Z<p>You may want to rephrase your question, as "accept an image" doesn't mean anything specific.</p>
<p>I can think of three things you might mean:</p>
<ol>
<li><p>The caller of the function passes in the URL of an image, and wants that image to be rendered instead of a hyperlink. In which case you could just set:</p>
<p><code>s.textb = unescape('<img src="' + imgParameter + '"></img>');</code></p></li>
<li><p>The caller passes in the URL of an image to use as the contents of the hyperlink. In which case you'd basically put the above unescaped code between the existing anchor tags:</p>
<p><code>s.textb = unescape('<a href="http://www.link.com" target="_blank"><img src="' + imgParameter + '"></img></a>');</code></p></li>
<li><p>One of the above options but taking a Javascript Image object instead of the URL; in which case, you extract the URL from the image via <code>image.src</code> and then proceed with one of the above options.</p></li>
</ol>
<p>If none of these cover your case, then please clarify what you meant, perhaps with a pseudocode example. Don't forget to say what the expected output is rather than "it doesn't work". :-)</p>
http://stackoverflow.com/questions/1834559/targetblank-to-show-in-new-window-not-new-tab-possible/1834579#183457912Answer by Andrzej Doyle for Target='_blank' to show in new window, NOT new tab, possible?Andrzej Doyle2009-12-02T17:39:56Z2009-12-02T17:39:56Z<p>You cannot control this - it's entirely at the discretion of the user-agent; which is the point, after all. All you can specify is that the page be opened in a different viewpane context, and it's up to the user to decide how they want your window to take up their screen space/taskbar list/Alt-Tab shortcuts etc.</p>
<p>In fact I'd go even further and say that if at all possible you should avoid opening up a new tab/window at all. I know that I get a little annoyed when websites do this, and it feels a bit clunky and 1990s what with all the Ajax and floating divs and magic we have nowadays.</p>
http://stackoverflow.com/questions/1834362/java-bufferedreader-reads-more-than-a-line/1834394#18343944Answer by Andrzej Doyle for Java: BufferedReader reads more than a line?Andrzej Doyle2009-12-02T17:12:30Z2009-12-02T17:12:30Z<p>I'm not sure I've followed your explanation.</p>
<p>However, yes - you have no real control over how much a BufferedReader will actually read. The point of such a reader is that it optimistically reads chunks of the underlying resource as needed to replenish its buffer. So when you first call <code>readLine</code>, it will see that its internal buffer doesn't have enough to serve youthe request, and will <strong>go off and read however many bytes it feels like into its buffer</strong> from the underlying source, which will generally be much more than you asked for just then. Once the buffer's been populated, it returns your line from the buffered content.</p>
<p>Thus once you wrap an input stream in a BufferedReader, you should be sure to only read that stream through the same buffered reader. If you don't you'll end up losing data (as some bytes will have been consumed and are now sitting in the BufferedReader's cache waiting to be served).</p>
http://stackoverflow.com/questions/1832385/error-marshalling-return/1832402#18324022Answer by Andrzej Doyle for error marshalling return;Andrzej Doyle2009-12-02T11:39:36Z2009-12-02T11:39:36Z<p>Chances are, one of your (non-transient) fields in PmsService does not itself implement Serializable.</p>
<p>Serializability is a recursive property; a class is not, and cannot be serialised unless all of its fields can be serialised too. Check your fields for classes that cannot be serialised, and either make that class serializable (if it's your own class), switch to a serializable alternative, or declare the field transient (only do this latter case if it isn't <em>really</em> part of the object's state; e.g. the thread your task is currently running in).</p>
http://stackoverflow.com/questions/1832203/is-it-ok-to-instantiate-an-exception-without-throwing-it/1832255#18322553Answer by Andrzej Doyle for Is it ok to instantiate an exception without throwing it?Andrzej Doyle2009-12-02T11:11:18Z2009-12-02T11:11:18Z<p>This isn't bad at all.</p>
<p>Like most warnings, they're there to indicate situations that are less likely to legitimately occur, than they are to be someone invoking them by mistake. Another recent example on SO was the warnings about synchronizing on a local variable; it's not often you want to do that and it's easy to mess up concurrency by doing it inadvertently.</p>
<p>IntelliJ is just warning you that exceptions are usually created to be thrown immediately, so if you aren't doing this it flags that perhaps your code is behaving unexpectedly. In your case, you're doing exactly what's right so feel free to ignore the warning. (In fact in my project the structure means I often create exceptions without throwing them for various reasons, so I downgraded the warning to an "info" level in IntelliJ's config).</p>
http://stackoverflow.com/questions/1827768/input-values-to-a-normal-java-se-program/1827792#18277922Answer by Andrzej Doyle for Input values to a normal JAVA SE programAndrzej Doyle2009-12-01T17:49:56Z2009-12-01T17:49:56Z<p>If I remember correctly, you can actually type in Eclipse's Java console and that will be sent through the standard input stream, <code>System.in</code> (probably depending on the application's run configuration).</p>
<p>However the standard way of doing this is to pass a number of strings on the command line, which will appear as the elements of the <code>String[]</code> parameter to your application's <code>main</code> method.</p>
<p>Alternatively you can get input in via flat files, from a database, through sockets etc. though this is, as you might expect, a lot more complex and should certainly not be considered for a "Hello World" type application. Java web services, for example, do take their input via network sockets rather than via the command line as this latter would restrict them somewhat. ;-)</p>
http://stackoverflow.com/questions/1825806/javascript-trigger-a-function-when-two-divs-touch-overlap/1825830#18258301Answer by Andrzej Doyle for JavaScript: Trigger a function when two divs touch / overlap. Andrzej Doyle2009-12-01T12:16:41Z2009-12-01T12:16:41Z<p>How are you causing the divs to move? One way to do it, certainly, would be to write a simple boolean-returning function that, given two divs, works out whether they overlap (get the coordinates of the corners and just compare for an intersection). Then, at the end of the function that causes the divs to move, call this function and take appropriate action if so.</p>
<p>In fact depending on how you're doing the moving you may even have the coordinates of both divs available making this very efficient.</p>
<p>Beyond that I'm not aware of any "onoverlap" event or similar, so periodically checking is the only generally-applicable way I can think of. There may be a faster method available depending on how your code is structured.</p>
http://stackoverflow.com/questions/705357/calling-javascript-variable-parameters-from-global-function-on-the-a-href-oncl/1825528#18255280Answer by Andrzej Doyle for Calling javascript variable parameters from global function on the <a href > onclick evenAndrzej Doyle2009-12-01T11:18:21Z2009-12-01T11:18:21Z<p>Echoing other responses I don't know quite what you're asking here. In particular <strong>never say "it doesn't work</strong> - state what actions you performed, what your <em>expected</em> output was and what your <em>actual</em> output was. Though anyway:</p>
<ol>
<li>You shouldn't use a <code>javascript:</code> prefix in a href; you should actually use the onclick event that you referenced in your question title.</li>
<li>You can just use <code>xmldoc</code> and <code>rootnode</code> unprefixed.</li>
<li>If you don't want the hyperlink to actually go anywhere, make sure you <code>return false</code> from the onclick handler to prevent the click from being handled. Also set the URL to "#" (which will typically point to the top of the current page), so that the link will degrade gracefully with Javascript disabled and so that the address in the status bar on hover makes sense (unless you want to override that too).</li>
<li>I hope that code ends abruptly, since looping over all elements just to perform some action on the first one is suboptimal, to say the least.</li>
</ol>
<p>Thus I believe your last line could be written as</p>
<pre><code>pagesref = pagesref+"<a href='#' onclick='newsdatainfo(xmldoc,newsresult,6,10); return false' >"+p+"</a> | ";
</code></pre>
<p>and things might work as you expect, however that may be.</p>
http://stackoverflow.com/questions/1825392/do-ie-conditional-comments-slow-down-page-load/1825428#18254284Answer by Andrzej Doyle for Do IE Conditional Comments slow down page load?Andrzej Doyle2009-12-01T10:56:10Z2009-12-01T10:56:10Z<p>This isn't <em>really</em> about conditional comments per se, it's like conditional compilation.</p>
<p>An IE browser will see your page as including</p>
<pre><code><link type="text/css" rel="stylesheet" href="ie-specific.css" />
</code></pre>
<p>(with a tiny bit of extra processing to evaluate the comment condition).</p>
<p>A non-IE browser will just see a comment there.</p>
<p>So the only potential performance impact is that IE browsers will need to evaluate the conditional comment condition (which is going to be negligible), and then is going to include another CSS file. While of course other browsers just see the generic file and completely ignore the comment.</p>
<p>The question then is what the pros and cons of serving IE a (say) 5Kb standards-compliant CSS file followed by a (say) 2Kb "hacks" file, and having everyone else get just the 5Kb file; vs serving everyone a 7Kb file with dodgy CSS in it. Depending on various factors including network speed and latency, the size of the file, the number of resources used on the page overall, etc., this may or may not make a noticeable impact on performance in the IE case (it will unquestionably be faster for non-IE user agents).</p>
<p>As with all performance questions, you'll have to profile <strong>your</strong> code in your environment to see what the impact is - but as a general guideline I would expect the impact to be negligible for IE, a small performance increase for all other browsers, as well as the fuzzy feeling being able to write "proper" CSS in your actual file and then fix IE separately.</p>
http://stackoverflow.com/questions/1825346/java-filechooser/1825373#18253731Answer by Andrzej Doyle for java filechooserAndrzej Doyle2009-12-01T10:43:13Z2009-12-01T10:43:13Z<p>I don't believe this is directly possible - and judging by <a href="http://java.sun.com/javase/6/docs/api/javax/swing/JFileChooser.html" rel="nofollow">the API</a>, I believe this is not the case. You could probably simulate it by registering a listener that cleared the text box after every keypress.</p>
<p>However, are you <em>sure</em> that you want to do this? Personally I'd be very upset if I was using a file selector that was crippled in this way, especially if I'd copied a file path to the clipboard from somewhere and was forced to manually descend through a bunch of directories, amongst other situations.</p>
<p>Is there a particular reason you want to cripple the user interface? Because I can't see any legitimate reason to do so...</p>
http://stackoverflow.com/questions/1825286/which-name-is-more-correct-in-my-case-manager-or-factory-or-something-else/1825299#18252991Answer by Andrzej Doyle for Which name is more correct in my case: manager or factory (or something else)?Andrzej Doyle2009-12-01T10:26:33Z2009-12-01T10:39:08Z<p>At a very high level, I'd call it a Factory if it's only responsible for creating instances of classes; and a Manager if it needs to oversee the ongoing existence of objects, and how they relate to other objects, etc.</p>
<p>In the code snippets you've posted you're only creating objects and thus, in my opinion, Factory is an appropriate name. Though you should bear in mind what the conceptual responsibilities of the class are and whether they might expand in future.</p>
<p>That said, I would classically expect a factory to not have to worry about creating sessions itself but rather have sessions passed into their <code>createFoo</code> calls as required, so there's definitely some fudge factor as things are set up. I think personally I would have some other abstract entity responsible for creating sessions, and then pass these into the PhotoFactory.</p>
http://stackoverflow.com/questions/1821510/java-google-collections-library-problem-with-abstractiterator/1821619#18216190Answer by Andrzej Doyle for Java, Google Collections Library; problem with AbstractIterator?Andrzej Doyle2009-11-30T18:43:38Z2009-11-30T18:48:50Z<p>I expect the problem is with your use of the postincrement operator, in conjunction with the ternary operator as well. Because asides from that, the two snippets should be entirely equivalent - and it's hardly the AbstractIterator's fault if they're not as none of its code is being called at that point.</p>
http://stackoverflow.com/questions/1821327/get-the-slope-from-one-point-and-an-angle-in-degrees/1821376#1821376-1Answer by Andrzej Doyle for Get the slope from one point and an angle in degrees.Andrzej Doyle2009-11-30T18:02:42Z2009-11-30T18:13:33Z<p><a href="http://www.catb.org/~esr/faqs/smart-questions.html" rel="nofollow">Don't be lazy</a> - learn the very simple formulae for <a href="http://en.wikipedia.org/wiki/Trigonometry" rel="nofollow">trigonometry</a>.</p>
<p>And just so this isn't a flame (:)), you can use the <code>Math.sin</code>, <code>Math.cos</code> and <code>Math.tan</code> functions to do your dirty work.</p>
http://stackoverflow.com/questions/1821178/java-ajax-webapp-security/1821208#18212080Answer by Andrzej Doyle for Java AJAX webapp securityAndrzej Doyle2009-11-30T17:31:49Z2009-11-30T17:31:49Z<p>I've used Spring Security in the past, and while I didn't use it to do this specifically, I remember it was very pluggable. While the classic action to take if a user was unauthenticated is issue a redirect to a login form page, you can use one of several classes provided to change the behaviour in this case, or it's quite easy to write your own which will do whatever you want (in this case return an appropriate AJAX response by the looks of it).</p>
<p>The logic I ended up having to implement was pretty horrible, for legacy reasons, and I was still able to do it without any specific hassles. I don't doubt that you could get Spring Security to work in this respect too (and I wouldn't be surprised if they already have the specific classes for your requirements).</p>
http://stackoverflow.com/questions/1820995/error-403-forbidden-the-http-request-was-forbidden-with-client-authentication-s/1821174#18211740Answer by Andrzej Doyle for Error 403: Forbidden. The HTTP request was forbidden with client authentication scheme 'Anonymous'.Andrzej Doyle2009-11-30T17:26:37Z2009-11-30T17:26:37Z<p>Get an HTTP sniffer hooked into the loop, and see what they're sending in their request compared to what you're sending. It looks like for whatever reason, your requests aren't sending appropriate authentication with them.</p>
<p>Note that depending on how things are set up this may not depend on your source tree and could defer to, for example, IE's Internet Settings on your machine.</p>
http://stackoverflow.com/questions/1820505/how-do-i-implement-a-test-framework-in-a-legacy-project/1820779#18207794Answer by Andrzej Doyle for How do I implement a test framework in a legacy projectAndrzej Doyle2009-11-30T16:17:25Z2009-11-30T16:17:25Z<p>Just to add to the other excellent answers, I'd agree that going from 0% to 100% coverage in one go is unrealistic - but that you should definitely <strong>add unit tests every time you fix a bug</strong>.</p>
<p>You say that there are quite a lot of bugs and unhappy customers - I'd be very positive about incorporating strict TDD into the bugfixing process, which is much easier than implementing it overall. After all, if there really is a bug there that needs to be fixed, then creating a test that reproduces it serves various goals:</p>
<ul>
<li>It's likely to be a minimal test case to demonstrate that there really is an issue</li>
<li>With confidence that the (currently failing) test highlights the reported problem, you'll know for sure if your changes have fixed it</li>
<li>It will forever stand as a regression test that will prevent this same issue recurring in future.</li>
</ul>
<p>Introducing tests to an existing project is difficult and likely to be a long process, but doing them at the same time as fixing bugs is such an ideal time to do so (parallel to introducing tests gradually in a "normal" sense) that it would be a shame not to take that chance and make lemonade from your bug reports. :-)</p>
http://stackoverflow.com/questions/1820593/search-a-javascript-object/1820643#18206430Answer by Andrzej Doyle for Search a JavaScript objectAndrzej Doyle2009-11-30T15:52:43Z2009-11-30T15:52:43Z<p>The straightforward way to do this is simply to iterate over every property of the object and apply a test function to them (in this case, <code>value.contains("FC")</code>).</p>
<p>If you want it to go faster, you'd either need to implement some kind of caching (which could be eagerly populated in the background ahead of any queries), or perhaps precalculate the result of various popular test functions.</p>
http://stackoverflow.com/questions/1808878/expected-illegal-start-of-expression/1808921#18089211Answer by Andrzej Doyle for expected ), illegal start of expressionAndrzej Doyle2009-11-27T13:56:13Z2009-11-27T13:56:13Z<p>You appear to have a spurious open curly brace in front of <code>public void actionPerformed</code>.</p>
<p>But really, you need to be able to sort these out yourself. You can't post your code to SO every time it doesn't compile... Something that may help here is an editor that can do folding (just about every IDE would do this), or even the functionality that vi has when you press <code>%</code> on a brace/bracket/quote etc. (which jumps to the closing symbol letting you match up start and end).</p>
<p>Plus, whenever you ask a question, <strong>always provide the diagnostic information</strong> - which in this case would be the compiler output. It's basically rude to expect people to help you while withholding pertinent information.</p>
http://stackoverflow.com/questions/1782933/java-alternative-to-iterator-hasnext-if-using-for-each-to-loop-over-a-collecti/1782986#17829862Answer by Andrzej Doyle for Java: Alternative to iterator.hasNext() if using for-each to loop over a collectionAndrzej Doyle2009-11-23T12:52:01Z2009-11-23T12:52:01Z<p>As others have said - this isn't possible.</p>
<p>Just remember that the foreach construct isn't the be-all and end-all. It was introduced to make the very common task of <em>performing the same operations on each element of a collection</em> simpler to denote.</p>
<p>In your case, you don't want to do exactly the same thing to each element - and thus a foreach loop is not the right tool for the job. Trying to "hack" it into doing this is silly, just use an explicit iterator in a classic for loop.</p>
http://stackoverflow.com/questions/1770166/is-concurrenthashmap-get-guaranteed-to-see-a-previous-concurrenthashmap-put-b/1770895#17708951Answer by Andrzej Doyle for Is ConcurrentHashMap.get() guaranteed to see a previous ConcurrentHashMap.put() by different thread?Andrzej Doyle2009-11-20T14:46:23Z2009-11-20T14:46:23Z<p>One thing to consider, is whether your keys are equal and have identical hashcodes at both times of the "get" call. If they're just <code>String</code>s then yes, there's not going to be a problem here. But as you haven't given the generic type of the keys, and you have elided "unimportant" details in the pseudocode, I wonder if you're using another class as a key.</p>
<p>In any case, you may want to additionally log the hashcode of the keys used for the gets/puts in threads 1 and 2. If these are different, you have your problem. Also note that <code>key1.equals(key2)</code> must be true; this isn't something you can log definitively, but if the keys aren't final classes it would be worth logging their fully qualified class name, then looking at the equals() method for that class/classes to see if it's possible that the second key could be considered unequal to the first.</p>
<p>And to answer your title - yes, ConcurrentHashMap.get() is guaranteed to see any previous put(), where "previous" means there is a <strong>happens-before</strong> relationship between the two as specified by the Java Memory Model. (For the ConcurrentHashMap in particular, this is essentially what you'd expect, with the caveat that you may not be able to tell which happens first if both threads execute at "exactly the same time" on different cores. In your case, though, you should definitely see the result of the put() in thread 2).</p>
http://stackoverflow.com/questions/1769749/using-exceptions-exceptionally/1769802#17698021Answer by Andrzej Doyle for Using Exceptions exceptionallyAndrzej Doyle2009-11-20T11:09:35Z2009-11-20T11:09:35Z<p>You need to think about what exceptions can be thrown from the methods in the <code>try</code> block, as well as which ones of those you can deal with at the current level of abstraction.</p>
<p>In your case, I'd expect that the <code>getFirstLineFromFile</code> methods, for example, can definitely throw exceptions you'd want to catch here. Now whether you wrap and rethrow the exception, or take other action, depends on whether you can actually deal with the exception at this level. Consider the case where you have a default file you can fall back to - the approach may just be to log a warning and continue with the default. Or if the whole application is based on reading a file supplied by the user, then this is more likely to be a fatal exception that should be propagated up to the top level and communicated to the user there.</p>
<p>There's no hard-and-fast rule like "always throw" or "never throw"; in general, I consider that one should throw exceptions whenever there's an exceptional-type situation that is not considered a normal result of the method, and consequently cannot be adequately described by the return type of the method. (For example, an <code>isValidDbUser</code> method returning boolean might be able to handle <code>SQLException</code>s as just <code>return false</code>; but a <code>getNumProductsRegisteredInDB</code> returning an int should almost certainly propagate an exception).</p>
http://stackoverflow.com/questions/1879897/order-of-items-in-a-hashmap-differ-when-the-same-program-is-run-in-jvm5-vs-jvm6/1879935#1879935Comment by Andrzej Doyle on Order of items in a HashMap differ when the same program is run in JVM5 vs JVM6?Andrzej Doyle2009-12-10T09:58:45Z2009-12-10T09:58:45Z+1; Michael, I've added the equivalent code from JDK 5 to illustrate the point; revert my edit if you feel it's not appropriate in your answer.http://stackoverflow.com/questions/1874991/moving-from-state-to-state-in-this-automaton-via-hashmap/1875093#1875093Comment by Andrzej Doyle on Moving from state to state in this automaton via HashMapAndrzej Doyle2009-12-09T16:45:45Z2009-12-09T16:45:45Z<a href="http://www.ibm.com/developerworks/java/library/j-jtp05273.html" rel="nofollow">ibm.com/developerworks/java/…</a>http://stackoverflow.com/questions/1873330/why-is-getentryobject-key-not-exposed-on-hashmap/1873428#1873428Comment by Andrzej Doyle on Why is getEntry(Object key) not exposed on HashMap?Andrzej Doyle2009-12-09T14:11:53Z2009-12-09T14:11:53ZI'm saying that the problem will still exist with Strings and other value objects; the solution you've proposed won't resolve the issue (asides from the fact that the problem the querent posed is not the one that needs solving anyway).http://stackoverflow.com/questions/1873316/how-to-map-a-database-query-into-an-object-in-java/1873371#1873371Comment by Andrzej Doyle on How to map a database query into an Object [in Java]?Andrzej Doyle2009-12-09T12:10:44Z2009-12-09T12:10:44ZThen those subproperties should be different classes; e.g. in the above case, a <code>ServiceUser</code> is a subclass of <code>User</code> and contains an otherprops <code>Map</code> and a reference to a <code>Service</code> instance etc. A single class itself should typically be defined in a single table, even though you may need to look up multiple tables to fully populate its dependencies.http://stackoverflow.com/questions/1873142/why-cant-i-find-the-api-documentation-for-com-sun-classes-in-rt-jar/1873157#1873157Comment by Andrzej Doyle on Why can't I find the API documentation for com.sun.* classes in rt.jar?Andrzej Doyle2009-12-09T12:03:50Z2009-12-09T12:03:50Z+1 - the public interface to them, that is the methods with a well-defined locked-down implementation that you can call with confidence <b>is</b> documented; it's the empty set. Your code should not even <i>know</i> (explicitly) about the existence of these classes, and casting references to them should be setting off warning bells rather than requests for documentation. ;-)http://stackoverflow.com/questions/1873330/why-is-getentryobject-key-not-exposed-on-hashmap/1873428#1873428Comment by Andrzej Doyle on Why is getEntry(Object key) not exposed on HashMap?Andrzej Doyle2009-12-09T12:01:43Z2009-12-09T12:01:43ZThat may not necessarily be the problem here - for example, a <code>String</code> key would still lead to the same problems declared above (unless you `intern`ed all the Strings which is a bad idea); and I've never heard someone say that Strings are unsuitable map keys.http://stackoverflow.com/questions/1873330/why-is-getentryobject-key-not-exposed-on-hashmap/1873354#1873354Comment by Andrzej Doyle on Why is getEntry(Object key) not exposed on HashMap?Andrzej Doyle2009-12-09T11:52:33Z2009-12-09T11:52:33ZI suspect what is desired is to have all calls for equal objects (i.e. that would map to the same key <i>within</i> the hash map), get access to a consistent object obstance for synchronization. The querent hasn't said why he wants this but it sounds like some kind of attempt to prevent two threads from modifying the mapping for a given key at once.http://stackoverflow.com/questions/1873330/why-is-getentryobject-key-not-exposed-on-hashmapComment by Andrzej Doyle on Why is getEntry(Object key) not exposed on HashMap?Andrzej Doyle2009-12-09T11:42:17Z2009-12-09T11:42:17Z@Geo: I would be dubious about using reflection to obtain an object to synchronize on; partly because of performance concerns but mainly because explicit synchronization on non-constant objects is hard to grok anyway, never mind when you're obtaining that reference opaquely via reflection. It would likely be <i>very</i> hard to understand, follow and debug, making maintenance a nightmare.http://stackoverflow.com/questions/1871482/speed-up-sequential-java-iterator-possible/1871502#1871502Comment by Andrzej Doyle on speed up sequential java iterator possible?Andrzej Doyle2009-12-09T09:31:28Z2009-12-09T09:31:28Z@cometta: if you don't call <code>awaitTermination</code> then the "main" thread won't block at all waiting for the tasks, it'll carry on with whatever code comes next. And if you don't call <code>shutdown</code> then awaitTermination will never return. Both are required.http://stackoverflow.com/questions/1790360/median-of-medians-in-java/1852040#1852040Comment by Andrzej Doyle on Median of Medians in JavaAndrzej Doyle2009-12-05T12:22:51Z2009-12-05T12:22:51ZThis ought to be a comment as it's not really an answer to the question. And even better, you can't get downvoted for comments. ;-)http://stackoverflow.com/questions/1851995/can-i-use-php-in-javascript/1852013#1852013Comment by Andrzej Doyle on Can I use php in javascript?Andrzej Doyle2009-12-05T12:21:13Z2009-12-05T12:21:13ZTo be accurate the answer is "no" - since you can't run PHP from "within" Javascript. However, as you say, the PHP will be evaluated on teh server side to dynamically create appropriate Javascript. The distinction might be important, if only so the querent doesn't get confused between you saying "yes" while everyone else says "no". :-)http://stackoverflow.com/questions/1839289/why-should-functions-always-return-the-same-type/1839350#1839350Comment by Andrzej Doyle on Why should functions always return the same type?Andrzej Doyle2009-12-03T11:39:20Z2009-12-03T11:39:20Z+1 for the last sentence. Maintainability is the real cost that should be considered with 99% of code.http://stackoverflow.com/questions/1833538/comparing-strings-in-java/1833569#1833569Comment by Andrzej Doyle on Comparing strings in javaAndrzej Doyle2009-12-02T15:24:06Z2009-12-02T15:24:06Z+1. It's also worth noting that in general there are very few guarantees about what instance of an object you'll get back from a method - methods can generally do much nicer things if they're free to use instance caching, use dynamic proxies etc. So it's important not to get hung up on object equality and use <code>equals()</code> in the general case, comparing references only if you're really sure you need it.http://stackoverflow.com/questions/1833486/java-newbie-questionComment by Andrzej Doyle on java newbie questionAndrzej Doyle2009-12-02T15:13:29Z2009-12-02T15:13:29ZNote that by Java convention, classes start with an uppercase character while methods are in lower camel case. And as Java is case-sensitive you need to get them right; none of the three lines in your code fragment would compile, for this reason...http://stackoverflow.com/questions/1832509/string-relate-source-codeComment by Andrzej Doyle on String relate source code Andrzej Doyle2009-12-02T12:06:36Z2009-12-02T12:06:36ZWhat have you tried so far, and what problems have you run into?