User Paul Morrison - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T05:05:44Zhttp://stackoverflow.com/feeds/user/52158http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1864113/what-is-the-advantage-of-executors-over-threads-in-multithreaded-application0What is the advantage of Executors over Threads in multithreaded applicationPaul Morrison2009-12-08T01:51:48Z2009-12-16T11:57:39Z
<p>I have seen several comments to the effect that Executors are better than Threads, but if you have a number of Threads communicating via bounded buffers (as in Flow-Based Programming) why would you use Executors when you have to use Threads anyway (with newCachedThreadPool (?)). Also, I use methods like isAlive(), interrupt() - how do I get hold of the Thread handle?</p>
<p>Does anyone have sample code that I can plagiarize? ;-)</p>
http://stackoverflow.com/questions/1759135/unnecessary-java-context-switches1Unnecessary Java context switchesPaul Morrison2009-11-18T21:16:04Z2009-12-02T15:26:55Z
<p>I have a network of Java Threads (Flow-Based Programming) communicating via fixed-capacity channels - running under WindowsXP. What we expected, based on our experience with "green" threads (non-preemptive), would be that threads would switch context less often (thus reducing CPU time) if the channels were made bigger. However, we found that increasing channel size does not make any difference to the run time. What seems to be happening is that Java decides to switch threads even though channels aren't full or empty (i.e. even though a thread doesn't have to suspend), which costs CPU time for no apparent advantage. Also changing Thread priorities doesn't make any observable difference. </p>
<p>My question is whether there is some way of persuading Java not to make unnecessary context switches, but hold off switching until it is really necessary to switch threads - is there some way of changing Java's dispatching logic? Or is it reacting to something I didn't pay attention to?! Or are there other asynchronism mechanisms, e.g. Thread factories, Runnable(s), maybe even daemons (!). The answer appears to be non-obvious, as so far none of my correspondents has come up with an answer (including most recently two CS profs). Or maybe I'm missing something that's so obvious that people can't imagine my not knowing it...</p>
<p>I've added the send and receive code here - not very elegant, but it seems to work...;-) In case you are wondering, I thought the goLock logic in 'send' might be causing the problem, but removing it temporarily didn't make any difference. I have added the code for send and receive... </p>
<p><code></p>
<p>public synchronized Packet receive() {</p>
<pre><code>if (isDrained()) {
return null;
}
while (isEmpty()) {
try {
wait();
} catch (InterruptedException e) {
close();
return null;
}
if (isDrained()) {
return null;
}
}
if (isDrained()) {
return null;
}
if (isFull()) {
notifyAll(); // notify other components waiting to send
}
Packet packet = array[receivePtr];
array[receivePtr] = null;
receivePtr = (receivePtr + 1) % array.length;
//notifyAll(); // only needed if it was full
usedSlots--;
packet.setOwner(receiver);
if (null == packet.getContent()) {
traceFuncs("Received null packet");
} else {
traceFuncs("Received: " + packet.toString());
}
return packet;
</code></pre>
<p>}</p>
<p>synchronized boolean send(final Packet packet, final OutputPort op) {</p>
<pre><code>sender = op.sender;
if (isClosed()) {
return false;
}
while (isFull()) {
try {
wait();
} catch (InterruptedException e) {
indicateOneSenderClosed();
return false;
}
sender = op.sender;
}
if (isClosed()) {
return false;
}
try {
receiver.goLock.lockInterruptibly();
} catch (InterruptedException ex) {
return false;
}
try {
packet.clearOwner();
array[sendPtr] = packet;
sendPtr = (sendPtr + 1) % array.length;
usedSlots++; // move this to here
if (receiver.getStatus() == StatusValues.DORMANT || receiver.getStatus() == StatusValues.NOT_STARTED) {
receiver.activate(); // start or wake up if necessary
} else {
notifyAll(); // notify receiver
// other components waiting to send to this connection may also get
// notified,
// but this is handled by while statement
}
sender = null;
Component.network.active = true;
} finally {
receiver.goLock.unlock();
}
return true;
</code></pre>
<p>}</p>
<p></code></p>
http://stackoverflow.com/questions/1759135/unnecessary-java-context-switches/1833614#18336140Answer by Paul Morrison for Unnecessary Java context switchesPaul Morrison2009-12-02T15:26:55Z2009-12-02T15:26:55Z<p>I'm a bit embarrassed - it suddenly occurred to me this afternoon that maybe the network whose performance I was worried about was just too simple, as I only had two process**es**, and two process**ors**. So Windows may have been trying too hard to keep the processors balanced! So I wondered what would happen if I gave Windows lots of processes.</p>
<p>I set up two networks:</p>
<p>a) 50 Generate components feeding 50 Discard components - i.e. highly parallel network - so that's 100 threads in total</p>
<p>b) 50 Generate components feeding 1 Discard component - i.e. highly "funnelled" network - so that's 51 threads</p>
<p>I ran each one 6 times with a connection capacity of 10, and 6 times with a connection capacity of 100. Every run generated a total of 50 * 20,000 information packets, for a total of 1,000,000 packets, and ran for about 1 minute..</p>
<p>Here are the averages of the 4 cases:
a) with connection capacity of 10 - 59.151 secs.
a) with connection capacity of 100 - 52.008 secs.</p>
<p>b) with connection capacity of 10 - 76.745 secs.
b) with connection capacity of 100 - 60.667 secs.</p>
<p>So it looks like the connection capacity does make a difference! And, it looks like JavaFBP performs reasonably well... I apologize for being a bit hasty - but maybe it made us all think a bit more deeply about multithreading in a multicore machine... ;-)</p>
<p>Apologies again, and thanks to everyone who contributed thoughts on this topic!</p>
http://stackoverflow.com/questions/1759135/unnecessary-java-context-switches/1798266#17982660Answer by Paul Morrison for Unnecessary Java context switchesPaul Morrison2009-11-25T16:44:10Z2009-11-25T16:44:10Z<p>The plot thickens! I thought of editing my previous answer, but thought that would be confusing.</p>
<p>As ReneS suggested, we ran a test on Linux, and got the same result! The behavior seems to be exactly the same as on Windows: no significant difference between small and big buffer sizes. This means that it is either a Java problem, or Windows and Linux use the same algorithm. But I also saw the same behaviour with C#FBP. </p>
<p>However, when I tried the same test on my laptop, with only 1 processor, I got a fairly consistent difference depending on the size of the connection. With size = 10, it took 6.6 secs.; with size=100, it took 5.8 secs.- so that is a 12% difference. Which is not to be sneezed at!</p>
<p>My gut feeling is that some piece of software is having trouble allocating work among multiple processors. Clearly, this is not a simple task - but FBP networks already balance work, so whatever software is doing it is second-guessing FBP. Does anyone out there have any idea what could be doing it? Thanks in advance.</p>
http://stackoverflow.com/questions/1759135/unnecessary-java-context-switches/1786468#17864680Answer by Paul Morrison for Unnecessary Java context switchesPaul Morrison2009-11-23T22:22:19Z2009-11-23T22:22:19Z<p>Hi ReneS, thanks for asking! I have been discussing the same question on the Sun forum, and here is my last post on that forum:</p>
<blockquote>
<p>Our best guess right now is that this effect results from Windows'
scheduling logic.</p>
<p>Microsoft seems to be acknowledging that this area needs some improvement
as it is introducing UMS - I quote: "UMS is recommended for applications
with high performance requirements that need to efficiently run many
threads concurrently on multiprocessor or multicore systems. ... UMS is
available starting with 64-bit versions of Windows 7 and Windows
Server 2008 R2. This feature is not available on 32-bit versions of
Windows." Hopefully, Java will take advantage of UMS in some later
release.</p>
</blockquote>
<p>Thanks for your help!</p>
http://stackoverflow.com/questions/1551532/setting-dpi-for-png-files0Setting DPI for PNG filesPaul Morrison2009-10-11T19:29:06Z2009-11-20T20:30:06Z
<p>I have a bunch of diagrams created using a Java diagramming tool that I wrote - they are mostly black and white diagrams, with the blocks in aqua, and occasional other colours. They are currently being saved as JPG files, and I want to insert them into a book that I am preparing for Print On Demand. </p>
<p>The book is an OpenOffice ODT file, which will later be converted to a PDF.</p>
<p>Currently I use JPG files, but the print facility they use requires 300 DPI, so I modified my diagramming tool to set the xDensity and yDensity to 300, and resUnits to 1, using getAsTree(), and then expand the diagram by a factor of 3 (300/96). IMO the result looks pretty good!</p>
<p>Unfortunately, someone on another forum pointed out that line diagrams are "fuzzed" on JPG files, so suggested that I change over to PNG, or possibly BMP files, both of which ODT files allow to be inserted.</p>
<p>My problem is that BMPs don't seem to have a DPI, and PNGMetadata doesn't seem to support getAsTree(). Can someone point me in the right direction? Thanks.</p>
http://stackoverflow.com/questions/1551532/setting-dpi-for-png-files/1773059#17730590Answer by Paul Morrison for Setting DPI for PNG filesPaul Morrison2009-11-20T20:30:06Z2009-11-20T20:30:06Z<p>I decided not to try to do this programmatically. Instead I create the original diagram in PNG, then convert to 300 DPI using Irfanview. Irfanview's batch capability lets me convert to 300 DPI, scale up to compensate, and set to grey scale, all in one operation - and on multiple files at a time. This seems to be the best solution - but thanks to everyone anyway!</p>
http://stackoverflow.com/questions/1548081/keeping-text-on-same-page-in-openoffice-document0Keeping text on same page in OpenOffice documentPaul Morrison2009-10-10T14:22:19Z2009-11-12T21:23:46Z
<p>I am converting a bunch of html pages into an OpenOffice document (.odt), which will then be converted to a PDF. Is there any way to get a bunch of text lines to stay on the same page (like the keep function of old formatters) (apart from turning it into a diagram)?</p>
http://stackoverflow.com/questions/1308177/multiple-replies-from-server-for-one-client-request0Multiple replies from server for one client requestPaul Morrison2009-08-20T19:00:01Z2009-08-20T19:21:06Z
<p>This may be a dumb question - and the title may need to be improved... I think my requirement is pretty simple: I want to send a request for data from a client to a server program, and the server (not the client) should respond with something like "Received your request - working on it". The client then does other work. Then when the server has obtained the data, it should send an asynchronous message (a popup?) saying "I've got your data; click on ... (presumably a URL) to obtain data". I have been assuming that the server could be written in Java and that client is html and JavaScript. I haven't been able to come up with a clean solution - help would be appreciated.</p>
http://stackoverflow.com/questions/1212675/what-are-some-good-perl-modules-for-flow-based-programming-on-files/1222953#12229530Answer by Paul Morrison for What are some good Perl modules for flow-based programming on files? Paul Morrison2009-08-03T15:24:29Z2009-08-03T15:24:29Z<p>I am not aware of any Perl implementations of Flow-Based Programming, but I believe Perl 5.8 has made interpreter threads available to Perl coders (someone correct me if I'm wrong!), so it should be relatively straightforward to build an FBP implementation on Perl. See <a href="http://perldoc.perl.org/threads.html" rel="nofollow">http://perldoc.perl.org/threads.html</a></p>
http://stackoverflow.com/questions/616487/best-match-in-c-to-java-reentrantlock-and-condition3Best match in C# to Java ReentrantLock and Condition?Paul Morrison2009-03-05T20:30:11Z2009-07-31T06:46:05Z
<p>Another cross-language question: can someone tell me what C# Threading constructs best match the Java ReentrantLock and Condition classes? ReentrantLock has lockInterruptibly() and unlock() methods, while Condition has signal() and await() methods. It is this combination that I would like to be able to preserve in the C# code - or something similar... Thanks in advance.</p>
http://stackoverflow.com/questions/79999/what-parallel-programming-model-do-you-recommend-today-to-take-advantage-of-the-m/940345#9403450Answer by Paul Morrison for What parallel programming model do you recommend today to take advantage of the manycore processors of tomorrow?Paul Morrison2009-06-02T15:55:15Z2009-06-02T15:55:15Z<p>This question seems to keep appearing with different wording - maybe there are different constituencies within StackOverflow. <a href="http://www.jpaulmorrison.com/fbp/" rel="nofollow"> Flow-Based Programming </a> (FBP) is a concept/methodology that has been around for over 30 years, and is being used to handle most of the batch processing at a major Canadian bank. It has thread-based implementations in Java and C#, although earlier implementations were fiber-based (C++, and mainframe Assembler - the one used at the bank). Most approaches to the problem of taking advantage of multicore involve trying to take a conventional single-threaded program and figure out which parts can run in parallel. FBP takes a different approach: the application is designed from the start in terms of multiple "black-box" components running asynchronously (think of a manufacturing assembly line). Since the interface between components is data streams, FBP is essentially language-independent, and therefore supports mixed-language applications, and domain-specific languages. For the same reason, side-effects are minimized. It could also be described as a "share nothing" model, and a MOM (message-oriented middleware). MapReduce seems to be a special case of FBP. FBP differs from Erlang mostly in that Erlang operates in terms of many short-lived threads, so green threads are more appropriate there, whereas FBP uses fewer (typically a few 10s to a few hundred) longer-lived threads. For a <em>piece</em> of a batch network that has been in daily use for over 30 years, see <a href="http://www.jpaulmorrison.com/fbp/image010.jpg" rel="nofollow"> part of batch network</a>. For a high-level design of an interactive app, see <a href="http://www.jpaulmorrison.com/cgi-bin/wiki.pl?BrokerageApplication" rel="nofollow"> Brokerage app high-level design</a>. FBP has been found to result in much more maintainable applications, and improved elapsed times - even on single core machines!</p>
http://stackoverflow.com/questions/363341/how-are-you-taking-advantage-of-multicore/934983#9349832Answer by Paul Morrison for How are you taking advantage of Multicore?Paul Morrison2009-06-01T14:09:21Z2009-06-01T14:09:21Z<p>I said some of this in answer to a different question (hope this is OK!): there is a concept/methodology called <a href="http://www.jpaulmorrison.com/fbp/" rel="nofollow"> Flow-Based Programming </a> (FBP) that has been around for over 30 years, and is being used to handle most of the batch processing at a major Canadian bank. It has thread-based implementations in Java and C#, although earlier implementations were fiber-based (C++ and mainframe Assembler). Most approaches to the problem of taking advantage of multicore involve trying to take a conventional single-threaded program and figure out which parts can run in parallel. FBP takes a different approach: the application is designed from the start in terms of multiple "black-box" components running asynchronously (think of a manufacturing assembly line). Since the interface between components is data streams, FBP is essentially language-independent, and therefore supports mixed-language applications, and domain-specific languages. Applications written this way have been found to be much more maintainable than conventional, single-threaded applications, and often take less elapsed time, even on single-core machines.</p>
http://stackoverflow.com/questions/926613/organizing-emails0Organizing emails [closed]Paul Morrison2009-05-29T15:30:05Z2009-05-29T15:40:16Z
<p>I am looking for ideas on how to organize emails. In my case I have several thousand emails from a few dozen individuals all relating to the stuff I am working on. Up to now, I have been extracting the most interesting stuff and putting it into a wiki, but this is just too labour-intensive. I could set up a separate folder for each individual, but it would be much better if I could somehow cross-reference <em>ideas</em> (AI?). Suggestions would be welcome!</p>
http://stackoverflow.com/questions/893296/cleaning-thunderbird-inbox-of-old-viruses0Cleaning Thunderbird Inbox of old viruses [closed]Paul Morrison2009-05-21T14:45:48Z2009-05-21T15:17:23Z
<p>I am running BitDefender and it seems to be picking up stuff that Norton never mentioned ;-) The problem is that BD reports a number of old viruses in my Inbox that it says it can't disinfect because they've been archived. I assume these are all messages that have been deleted (some go back to 2006), so I thought compressing my Inbox would get rid of them, but so far BD is still reporting them. To make things even more confusing, Thunderbird seems to be using both my Application Data/Thunderbird and Application Data/Mozilla (the directory I used before, and which I told Thunderbird to keep using) - both of them were updated today! Since there are a few hundred of these messages, I would really like to clean things up. Oh, and my two Inboxes are too big to edit! Ideas, tools, etc., would be appreciated, as I'm not sure which questions to ask.</p>
http://stackoverflow.com/questions/866672/switching-stacks-in-c6Switching stacks in C++Paul Morrison2009-05-15T01:38:17Z2009-05-15T06:19:45Z
<p>I have some old code written in C for 16-bit using Borland C++ that switches between multiple stacks, using longjmps. It creates a new stack by doing a malloc, and then setting the SS and SP registers to the segment and offset, resp., of the address of the malloc'd area, using inline Assembler. I would like to convert it to Win32, and it looks like the two instructions should be replaced by a single one setting the ESP. The two instructions were surrounded by a CLI/STI pair, but in Win32 these give "privileged instructions", so I have cut them out for now. I am a real innocent when it comes to Windows, so, I was rather surprised that my first test case worked! So, my rather vague question is to ask the experts here if what I am doing is a) too dangerous to continue with, or b) will work if I add some code, take certain precautions, etc.? If the latter, what should be added, and where can I find out about it? Do I have to worry about any other registers, like the SS, EBX, etc.? I am using <strong>no</strong> optimization... Thanks for any tips people can give me. </p>
http://stackoverflow.com/questions/835324/migrating-from-old-borland-c-to-visual-c-express2Migrating from old Borland C++ to Visual C++ ExpressPaul Morrison2009-05-07T15:25:41Z2009-05-07T15:36:20Z
<p>At the risk of appearing a dinosaur, I have some old C++ code, compiled with Borland C++, which sets registers, and interfaces to an Assembler module, which I would like to modernize. I have just installed MS VC++ Express, and needless to say a lot of things don't work! The default seems to be Win32, which is fine, so I have blanked out FAR and HUGE. PASCAL seems to map to __stdcall. So I have a macro</p>
<pre><code> #define THRCOMP extern "C" int FAR PASCAL _Export
</code></pre>
<p>where <code>THRCOMP</code> goes in front of a module name. This presumably results in something like</p>
<pre><code>extern "C" int __stdcall _Export <modname>;
</code></pre>
<p>which the compiler doesn't like, and puts out a message about an "anachronism" (doesn't say what!). What is wrong?</p>
<p>Also the old code sets has in-line Assembler which I need to turn into a separately compiled subroutine - is there a (free) Assembler, and can it link Assembler obj decks in with C++? </p>
<p>By the way, I can't see my obj decks - but WinZip picked them up! Explanation?</p>
<p>Generally, is there a guide to migrating old C++ code?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/783246/passing-a-reference-to-a-large-data-area-across-a-socket0Passing a reference to a (large) data area across a socketPaul Morrison2009-04-23T19:45:50Z2009-04-23T20:32:30Z
<p>I have been reading the descriptions of referencing in Java, and, while I feel I understand them, I am not sure if Java allows me to do the following: we have two threads in the same JVM communicating via sockets, and we would like to pass what is essentially the address of a large chunk of data across the socket, without copying the data itself. The solution may be quite obvious to the initiated, but I can't figure it out! Help would be appreciated. </p>
http://stackoverflow.com/questions/773097/inter-process-communication-between-languages-operating-systems2Inter-process communication between languages/operating systemsPaul Morrison2009-04-21T15:14:17Z2009-04-21T17:50:21Z
<p>I am looking for an inter-process communication facility that can be used between languages and/or environments running on the same or different systems. For instance it should allow signals to be sent between Java, C# and/or C++ components, and it should also support some kind of queueing mechanism. The only facility that is obviously environment and language-independent is files, but I assume this would be much too slow - and disciplined queueing may be difficult to implement. Many of the other facilities described in the literature only apply to one language or one operating system. Suggestions would be appreciated!</p>
http://stackoverflow.com/questions/275072/what-is-the-easiest-way-to-parallelize-my-c-program-across-multiple-pcs/574931#5749310Answer by Paul Morrison for What is the easiest way to parallelize my C# program across multiple PCsPaul Morrison2009-02-22T13:29:36Z2009-04-17T14:49:32Z<p>You might want to look at <a href="http://www.jpaulmorrison.com/fbp/" rel="nofollow"> Flow-Based Programming </a> - it has a Java and a C# implementation. Most approaches to this problem involve trying to take a conventional single-threaded program and figure out which parts can run in parallel. FBP takes a different approach: the application is designed from the start in terms of multiple "black-box" components running asynchronously (think of a manufacturing assembly line). Since a conventional single-threaded program acts like a single component in the FBP environment, it is very easy to extend an existing application. In fact, pieces of an existing app can often be broken off and turned into separate components, provided they can run asynchronously with the rest of the app (i.e. not subroutines). Someone called this "turning an iceberg into ice cubes").</p>
http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/718204#718204-6Answer by Paul Morrison for What's your favorite "programmer ignorance" pet peeve?Paul Morrison2009-04-05T01:58:06Z2009-04-05T01:58:06Z<p>Users of any application - or device - who call you up and say "It doesn't work".</p>
http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/691966#69196623Answer by Paul Morrison for What's your favorite "programmer" cartoon?Paul Morrison2009-03-28T01:23:02Z2009-03-30T17:28:30Z<p><img src="http://www.jpaulmorrison.com/fbp/State%5Fof%5Fthe%5Fart.jpg" alt="I've got a war to fight!" title="" />.</p>
http://stackoverflow.com/questions/405627/flow-based-programming/420943#4209432Answer by Paul Morrison for Flow Based ProgrammingPaul Morrison2009-01-07T16:18:19Z2009-03-21T01:13:58Z<p>Interesting discussion! It occurred to me yesterday that part of the confusion may be due to the fact that many different notations use directed arcs, but use them to mean different things. In FBP, the lines represent bounded buffers, across which travel streams of data packets. Since the components are typically long-running processes, streams may comprise huge numbers of packets, and FBP applications can run for very long periods - perhaps even "perpetually" (see a 2007 paper on a project called Eon, mostly by folks at UMass Amherst). Since a send to a bounded buffer suspends when the buffer is (temporarily) full (or temporarily empty), indefinite amounts of data can be processed using finite resources. </p>
<p>By comparison, the E in Grafcet comes from Etapes, meaning "steps", which is a rather different concept. In this kind of model (and there are a number of these out there), the data flowing between steps is either limited to what can be held in high-speed memory at one time, or has to be held on disk. FBP also supports loops in the network, which is hard to do in step-based systems - see for example <a href="http://www.jpaulmorrison.com/cgi-bin/wiki.pl?BrokerageApplication" rel="nofollow">http://www.jpaulmorrison.com/cgi-bin/wiki.pl?BrokerageApplication</a> - notice that this application used both MQSeries and CORBA in a natural way. Furthermore, FBP is natively parallel, so it lends itself to programming of grid networks, multicore machines, and a number of the directions of modern computing. One last comment: in the literature I have found many related projects, but few of them have all the characteristics of FBP. A list that I have amassed over the years (a number of them closer than Grafcet) can be found in <a href="http://www.jpaulmorrison.com/cgi-bin/wiki.pl?FlowLikeProjects" rel="nofollow">http://www.jpaulmorrison.com/cgi-bin/wiki.pl?FlowLikeProjects</a> .</p>
http://stackoverflow.com/questions/566595/best-subversion-tool-when-using-visual-studio-express8Best subversion tool when using Visual Studio Express?Paul Morrison2009-02-19T18:40:26Z2009-03-15T16:57:07Z
<p>I would like feedback on what people consider the "best" free (or cheap) subversion tool for C#... By "best" I mean easiest for a given level of capability. I am a complete newbie in C#, and am using Visual C# Express as my development tool. Obviously I am not a sophisticated C# user! </p>
<p>In Java I use Eclipse, and Subclipse, which I find fairly easy to use. I tried TortoiseSVN, and couldn't get to first base with it - not sure why not - maybe just the wrong mental habits! Ideally I would like something that has the same relationship to Visual C# Express that Subclipse has to Eclipse... Help would be appreciated.</p>
http://stackoverflow.com/questions/162805/writing-maintainable-code/645919#6459191Answer by Paul Morrison for Writing maintainable codePaul Morrison2009-03-14T13:37:11Z2009-03-15T15:33:49Z<ul>
<li><p>Record assumptions when you make them - two days later you will be taking these assumptions for granted, but the next person who maintains your code won't necessarily make the same assumptions, and will wonder why you did what you did...</p></li>
<li><p>Code for <em>people</em> - the computer will do anything you tell it; code so <em>humans</em> can understand your code - who knows it might be you 6 months from now!</p></li>
</ul>
http://stackoverflow.com/questions/643022/duplicate-maintenance-code-and-documentation4Duplicate maintenance - code and documentationPaul Morrison2009-03-13T14:43:40Z2009-03-13T15:16:21Z
<p>This may not be the best title - I would appreciate it if someone would come up with a better one after reading my problem. Also, I want to say up front that I am largely self-taught on the Internet, so there may be many tools that I am not aware of!</p>
<p>I am maintaining software implementing the Flow-Based Programming concept in both Java and C#. For each of these I have code on </p>
<ul>
<li>my web site </li>
<li>SourceForge File Release System (zip files or jar files)</li>
<li>SourceForge SVN</li>
</ul>
<p>In addition I have version references and (sometimes partial) descriptions on </p>
<ul>
<li>my web site (html)</li>
<li>my wiki</li>
<li>Javadoc</li>
</ul>
<p>There is also a drawing tool, also on my web site and SourceForge, that has to know about the latest version of the Java version of the FBP code...</p>
<p>Everything is cross-linked pretty thoroughly, but sometimes I miss a reference! A few days ago, I realized that I hadn't updated SourceForge News for my project in a long time, so I had to hustle and do that :-) </p>
<p>I realize that some of these vehicles are probably redundant, but generally I do not know who is watching what - the only people I know about are people who correspond with me, a subset of whom are registered as co-developers on SourceForge.</p>
<p>So my question is whether there is way to reduce all this overhead... E.g. an html "imbed" function would be nice, so I can at least store the latest version number in one place... I can probably simplify the Java cross-references, but inter-language would be even nicer, but unlikely, I guess... Any ideas would be welcome.</p>
http://stackoverflow.com/questions/85353/best-general-svn-ignore-pattern/624061#6240610Answer by Paul Morrison for Best general SVN Ignore Pattern?Paul Morrison2009-03-08T18:34:55Z2009-03-08T18:34:55Z<p>I am trying to use TortoiseSVN Settings, as described by @Burly's answer, but a) I have to exclude from the commit list the types I don't want to store, and b) it leaves most of my source folders marked as 'modified'... Am I missing something basic? Or is it better to just store all the file types? Thanks in advance.</p>
http://stackoverflow.com/questions/611512/version-problems-running-subclipse-and-tortoisesvn/622076#6220760Answer by Paul Morrison for Version problems running Subclipse and TortoiseSVNPaul Morrison2009-03-07T16:27:14Z2009-03-07T16:27:14Z<p>Turns out my problem was due to the fact that #develop 2.2 forces TortoiseSVN 1.4 - it does not work with TortoiseSVN 1.5. Oh well! Thanks for your feedback anyway!</p>
http://stackoverflow.com/questions/611512/version-problems-running-subclipse-and-tortoisesvn0Version problems running Subclipse and TortoiseSVNPaul Morrison2009-03-04T17:02:25Z2009-03-07T16:27:14Z
<p>I have Subclipse installed for Java and just installed TortoiseSVN for #develop, as suggested by someone answering another question of mine. When I try to edit a C# class, it says "client is too old to work with working copy" - but the Subversion version of TortoiseSVN (1.5) seems to be newer than that of Subclipse (1.4?). What is going on - the message seems a bit backwards! Can I downgrade the version level of TortoiseSVN to match Subclipse, or upgrade Subclipse?! Suggestions would be appreciated!</p>
http://stackoverflow.com/questions/620281/settings-editor-for-develop0Settings Editor for #develop?Paul Morrison2009-03-06T20:27:56Z2009-03-06T22:27:25Z
<p>Using Visual C# Express, if I double-click on the Properties/Settings.settings file, I automagically got a special settings editor. Doing the same under #develop just results in a standard editor, and it looks like Settings.Designer.cs doesn't get updated, so that has to be updated by hand as well. Is there a plug-in for #develop that I'm missing? </p>
http://stackoverflow.com/questions/1864113/what-is-the-advantage-of-executors-over-threads-in-multithreaded-application/1914237#1914237Comment by Paul Morrison on What is the advantage of Executors over Threads in multithreaded applicationPaul Morrison2009-12-17T16:04:58Z2009-12-17T16:04:58ZAt least the folks over at Sun forums tried to answer my question - see <a href="http://forums.sun.com/thread.jspa?threadID=5419471&tstart=0" rel="nofollow">forums.sun.com/thread.jspa?threadID=5419471&t…</a> . However you will notice that their comments all use words like "nice tools", "bad idea", and they admit I may not need a thread pool. IMO those aren't strong enough reasons to have to rewrite working code!http://stackoverflow.com/questions/1864113/what-is-the-advantage-of-executors-over-threads-in-multithreaded-applicationComment by Paul Morrison on What is the advantage of Executors over Threads in multithreaded applicationPaul Morrison2009-12-09T18:07:01Z2009-12-09T18:07:01ZNo answers after a day, so I'll try on the Sun forum... Thanks anyway!http://stackoverflow.com/questions/1864113/what-is-the-advantage-of-executors-over-threads-in-multithreaded-applicationComment by Paul Morrison on What is the advantage of Executors over Threads in multithreaded applicationPaul Morrison2009-12-08T20:57:19Z2009-12-08T20:57:19ZNot very helpful, @Cletus! I do understand about threads and locks - I am not about to shell out $40 to get one question answered :-)http://stackoverflow.com/questions/1759135/unnecessary-java-context-switches/1760312#1760312Comment by Paul Morrison on Unnecessary Java context switchesPaul Morrison2009-11-19T16:15:38Z2009-11-19T16:15:38ZIs there any way to increase the length of OS time slices?http://stackoverflow.com/questions/1759135/unnecessary-java-context-switches/1760113#1760113Comment by Paul Morrison on Unnecessary Java context switchesPaul Morrison2009-11-19T01:00:58Z2009-11-19T01:00:58ZNo, I agree - I didn't make any progress that way! Is there any alternative to priorities?http://stackoverflow.com/questions/1551532/setting-dpi-for-png-files/1551545#1551545Comment by Paul Morrison on Setting DPI for PNG filesPaul Morrison2009-10-13T13:47:23Z2009-10-13T13:47:23ZSomeone else mentioned SVG - I'll take a look - thanks!http://stackoverflow.com/questions/1551532/setting-dpi-for-png-files/1551583#1551583Comment by Paul Morrison on Setting DPI for PNG filesPaul Morrison2009-10-13T13:46:28Z2009-10-13T13:46:28ZI just meant that I wanted to set the DPI programmatically... but I've changed my mind! So imagemagick sounds interesting - thanks!http://stackoverflow.com/questions/1548081/keeping-text-on-same-page-in-openoffice-document/1548115#1548115Comment by Paul Morrison on Keeping text on same page in OpenOffice documentPaul Morrison2009-10-11T19:32:17Z2009-10-11T19:32:17ZThanks! I'll give it a try!http://stackoverflow.com/questions/233504/write-dpi-metadata-to-a-jpeg-image-in-java/1276894#1276894Comment by Paul Morrison on Write dpi metadata to a jpeg image in JavaPaul Morrison2009-10-02T17:42:55Z2009-10-02T17:42:55ZWhere is F_scaledImg set? Is it the same as bufferedImage? Sorry if this is a dumb question...http://stackoverflow.com/questions/866672/switching-stacks-in-c/866676#866676Comment by Paul Morrison on Switching stacks in C++Paul Morrison2009-05-26T00:54:20Z2009-05-26T00:54:20ZThanks, Greg! I have a fibers solution starting to work, but it's awfully clumsy, and probably slow... Unless there really are "secret" methods that I don't know about!http://stackoverflow.com/questions/866672/switching-stacks-in-c/866676#866676Comment by Paul Morrison on Switching stacks in C++Paul Morrison2009-05-20T15:30:25Z2009-05-20T15:30:25ZThe foregoing now seems like a dumb question - what I really need is SetContext(). Is that POSIX only, and if so, can I get a version of that running under Windows? PS Should I raise this as a new question?http://stackoverflow.com/questions/866672/switching-stacks-in-c/866676#866676Comment by Paul Morrison on Switching stacks in C++Paul Morrison2009-05-19T23:41:49Z2009-05-19T23:41:49ZI have spent some time wrestling with Windows fibers, and right now IMO it looks like setjmp and longjmp are in some ways more powerful than SwitchToFiber! Are there any "secret" methods that would (say) do a setjmp without actually switching? That would be really useful for my application. Thanks in advance.http://stackoverflow.com/questions/866672/switching-stacks-in-c/866676#866676Comment by Paul Morrison on Switching stacks in C++Paul Morrison2009-05-16T15:51:03Z2009-05-16T15:51:03ZThanks, Greg. The documentation looked a bit offputting, but I will start digging into it.http://stackoverflow.com/questions/866672/switching-stacks-in-c/866676#866676Comment by Paul Morrison on Switching stacks in C++Paul Morrison2009-05-16T01:02:10Z2009-05-16T01:02:10ZOne of the posts in that article says "they would switch the stack base, but not update the stack limit. Or not switch the exception handler list. Or forget to swap the FP state." Assuming fibers look after those things for me, can I do longjmps between fibers? If I wanted to look after them myself, how complex are they, and where can I find out about them? Thx.http://stackoverflow.com/questions/866672/switching-stacks-in-c/866685#866685Comment by Paul Morrison on Switching stacks in C++Paul Morrison2009-05-15T14:16:40Z2009-05-15T14:16:40ZThis was my first implementation of Flow-Based Programming on a PC. I didn't realize that Win32 has a fibers implementation, but it may be a lot of trouble to convert my code to Fibers - I'll certainly read the article cited by Greg Hewgill, though. Thanks to all of you!