User James Dean - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T10:13:46Zhttp://stackoverflow.com/feeds/user/7743http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1797817/can-one-configure-gdb-ddd-to-never-step-into-certain-functions2Can one configure gdb/ddd to never step into certain functions?James Dean2009-11-25T15:45:26Z2009-11-26T06:52:23Z
<p>I have some infrastructure C++ code (containers, memory managers etc.) and I want the debugger to never step into those methods while debugging an application issue.</p>
<p>I know this can be done with Visual Studio and I have used that before on other projects:</p>
<p><a href="http://stackoverflow.com/questions/626744/is-there-a-way-to-automatically-avoiding-stepping-into-certain-functions-in-visua">http://stackoverflow.com/questions/626744/is-there-a-way-to-automatically-avoiding-stepping-into-certain-functions-in-visua</a></p>
<p>Is this at all possible with gdb or ddd?</p>
http://stackoverflow.com/questions/1675766/how-to-combine-pool-map-with-array-shared-memory-in-python-multiprocessing2How to combine Pool.map with Array (shared memory) in Python multiprocessing?James Dean2009-11-04T18:32:20Z2009-11-12T18:42:12Z
<p>I have a very large (read only) array of data that I want to be processed by multiple processes in parallel.</p>
<p>I like the Pool.map function and would like to use it to calculate functions on that data in parallel.</p>
<p>I saw that one can use the Value or Array class to use shared memory data between processes. But when I try to use this I get a RuntimeError: 'SynchronizedString objects should only be shared between processes through inheritance when using the Pool.map function:</p>
<p>Here is a simplified example of what I am trying to do:</p>
<pre><code>from sys import stdin
from multiprocessing import Pool, Array
def count_it( arr, key ):
count = 0
for c in arr:
if c == key:
count += 1
return count
if __name__ == '__main__':
testData = "abcabcs bsdfsdf gdfg dffdgdfg sdfsdfsd sdfdsfsdf"
# want to share it using shared memory
toShare = Array('c', testData)
# this works
print count_it( toShare, "a" )
pool = Pool()
# RuntimeError here
print pool.map( count_it, [(toShare,key) for key in ["a", "b", "s", "d"]] )
</code></pre>
<p>Can anyone tell me what I am doing wrong here?</p>
<p>So what i would like to do is pass info about a newly created shared memory allocated array to the processes after they have been created in the process pool.</p>
http://stackoverflow.com/questions/1651351/clojure-call-a-function-for-each-element-in-a-vector-with-it-index4Clojure: Call a function for each element in a vector with it indexJames Dean2009-10-30T17:51:45Z2009-10-31T07:27:52Z
<p>Say I have a vector:</p>
<pre><code>(def data ["Hello" "World" "Test" "This"])
</code></pre>
<p>And I want to populate a table somewhere that has an api:</p>
<pre><code>(defn setCell
[row col value]
(some code here))
</code></pre>
<p>Then what is the best way to get the following calls to happen:</p>
<pre><code>(setCell 0 0 "Hello")
(setCell 0 1 "World")
(setCell 0 2 "Test")
(setCell 0 3 "This")
</code></pre>
<p>I found that the following will work:</p>
<pre><code>(let [idv (map vector (iterate inc 0) data)]
(doseq [[index value] idv] (setCell 0 index value)))
</code></pre>
<p>But is there a faster way that does not require a new temporary datastructure idv?</p>
http://stackoverflow.com/questions/1651351/clojure-call-a-function-for-each-element-in-a-vector-with-it-index/1652082#16520821Answer by James Dean for Clojure: Call a function for each element in a vector with it indexJames Dean2009-10-30T20:21:08Z2009-10-30T20:21:08Z<p>I did a short comparison of the performance of the options sofar: </p>
<pre><code>; just some function that sums stuff
(defn testThis
[i value]
(def total (+ total i value)))
; our test dataset. Make it non-lazy with doall
(def testD (doall (range 100000)))
; time using Arthur's suggestion
(def total 0.0)
(time (doall (map #(testThis %1 %2) (iterate inc 0) testD)))
(println "Total: " total)
; time using Brian's recursive version
(def total 0.0)
(time (loop [d testD i 0]
(when (seq d)
(testThis i (first d))
(recur (rest d) (inc i)))))
(println "Total: " total)
; with the idiomatic indexed version
(def total 0.0)
(time (let [idv (map vector (iterate inc 0) testD)]
(doseq [[i value] idv] (testThis i value))))
(println "Total: " total)
</code></pre>
<p>Results on my 1 core laptop:</p>
<pre><code> "Elapsed time: 598.224635 msecs"
Total: 9.9999E9
"Elapsed time: 241.573161 msecs"
Total: 9.9999E9
"Elapsed time: 959.050662 msecs"
Total: 9.9999E9
</code></pre>
<p>Preliminary Conclusion:</p>
<p>Use the loop/recur solution.</p>
http://stackoverflow.com/questions/1646544/clojure-how-do-i-get-a-list-of-combinations-of-coordinates2Clojure: How do I get a list of combinations of 'coordinates'?James Dean2009-10-29T21:04:49Z2009-10-29T21:49:21Z
<p>Say i have a function that takes to coordinates, x and y.</p>
<p>For x I have a sequence of values say [1 2 3] and for y I have another sequence of values say [4 5 6].</p>
<p>How would I get a list with all the combinations of these?</p>
<p>So the desired result would be something like:</p>
<pre><code>(myfn [1 2 3] [4 5 6]) => [[1 4] [1 5] [1 6] [2 4] [2 5] [2 6] [3 4] [3 5] [3 6]]
</code></pre>
<p>Is there an existing function for something like this?</p>
http://stackoverflow.com/questions/1638854/clojure-how-do-i-apply-a-function-to-a-subset-of-the-entries-in-a-hash-map1Clojure: How do I apply a function to a subset of the entries in a hash-map?James Dean2009-10-28T17:37:14Z2009-10-29T14:11:32Z
<p>I am not to Clojure and attempting to figure out how to do this.</p>
<p>I want to create a new hash-map that for a subset of the keys in the hash-map applies a function to the elements. What is the best way to do this?</p>
<pre><code>(let
[my-map {:hello "World" :try "This" :foo "bar"}]
(println (doToMap my-map [:hello :foo] (fn [k] (.toUpperCase k)))
</code></pre>
<p>This should then result a map with something like</p>
<pre><code>{:hello "WORLD" :try "This" :foo "BAR"}
</code></pre>
http://stackoverflow.com/questions/1633645/what-is-the-best-way-to-initialize-all-the-elements-of-a-jtable-with-clojure1What is the best way to initialize all the elements of a JTable with Clojure?James Dean2009-10-27T21:01:24Z2009-10-27T21:10:29Z
<p>Sorry if this is a bit of a noob question but I am still getting used to functional programming.</p>
<p>I want to write a simple Sudoku solver as an exercise.</p>
<p>One of my plans is to create a JTable with 9 rows and 9 columns and initialize them all with
the string "123456789" as a starting position.</p>
<p>If I have a TableModel I can define a function to initialize a single cell like this:</p>
<pre><code>(defn initCell
"inits a cell with 123456789"
[dm row col]
(doto dm (.setValueAt "123456789" row col)))
</code></pre>
<p>Now what is the most Clojure like way to get this called for all cells in the 9x9 table?</p>
http://stackoverflow.com/questions/1369086/is-it-possible-to-limit-textctrl-to-accept-numbers-only-in-wxpython0Is it possible to limit TextCtrl to accept numbers only in wxPython?James Dean2009-09-02T17:27:01Z2009-10-19T18:13:24Z
<p>I want to have a text control that only accepts numbers. (Just integer values like 45 or 366)</p>
<p>What is the best way to do this?</p>
http://stackoverflow.com/questions/1099427/can-one-unroll-a-loop-when-working-with-an-integer-template-parameter1Can one unroll a loop when working with an integer template parameter?James Dean2009-07-08T17:21:43Z2009-10-12T16:30:02Z
<p>I have the following code:</p>
<pre><code>template <int size>
inline uint hashfn( const char* pStr )
{
uint result = *pStr;
switch ( size )
{
case 10:
result *= 4;
result += *pStr;
case 9:
result *= 4;
result += *pStr;
...
...
case 2:
result *= 4;
result += *pStr;
}
return result;
}
</code></pre>
<p>This code is a hash function for DNA sequences of certain lenghts where the length is a template parameter. It is an unrolled loop with a switch statement to jump in at the right spot.
The size is however a constant since it is a template parameter.
Could I specialize this for certain size values?
Maybe with something like:</p>
<pre><code>template <int 2>
inline uint hashfn( const char* pStr )
{
uint result = *pStr;
result *= 4;
++pStr;
result += *pStr;
return result;
}
</code></pre>
http://stackoverflow.com/questions/1510188/can-seek-and-tell-work-with-utf-8-encoded-documents-in-python0Can seek and tell work with UTF-8 encoded documents in Python?James Dean2009-10-02T15:17:21Z2009-10-02T16:03:55Z
<p>I have an application that generates some large log files > 500MB.</p>
<p>I have written some utilities in Python that allows me to quickly browse the log file and find data of interest. But I now get some datasets where the file is too big to load it all into memory.</p>
<p>I thus want to scan the document once, build an index and then only load the section of the document into memory that I want to look at at a time.</p>
<p>This works for me when I open a 'file' read it one line at a time and store the offset with from file.tell().
I can then come back to that section of the file later with file.seek( offset, 0 ).</p>
<p>My problem is however that I may have UTF-8 in the log files so I need to open them with the codecs module (<code>codecs.open(<filename>, 'r', 'utf-8')</code>). With the resulting object I can call seek and tell but they do not match up.</p>
<p>I assume that codecs needs to do some buffering or maybe it returns character counts instead of bytes from tell?</p>
<p>Is there a way around this?</p>
http://stackoverflow.com/questions/233171/what-is-the-best-way-to-do-gui-in-clojure/1505404#15054041Answer by James Dean for What is the best way to do Gui in Clojure?James Dean2009-10-01T17:43:40Z2009-10-01T17:43:40Z<p>Here is another very basic swing wrapping example.</p>
<pre><code>; time for some swing
(import '(javax.swing JFrame JTable JScrollPane))
(import '(javax.swing.table DefaultTableModel))
(let
[frame (JFrame. "Hello Swing")
dm (DefaultTableModel.)
table (JTable. dm)
scroll (JScrollPane. table)]
(doto dm
(.setNumRows 30)
(.setColumnCount 5))
(.. frame getContentPane (add scroll))
(doto frame
(.setDefaultCloseOperation JFrame/EXIT_ON_CLOSE)
(.pack)
(.setVisible true)))
</code></pre>
http://stackoverflow.com/questions/231229/how-to-generate-a-makefile-with-source-in-sub-directories-using-just-one-makefile3How to generate a Makefile with source in sub-directories using just one makefile.James Dean2008-10-23T19:56:32Z2009-09-16T00:43:39Z
<p>I have source in a bunch of subdirectories like:</p>
<pre><code>src/widgets/apple.cpp
src/widgets/knob.cpp
src/tests/blend.cpp
src/ui/flash.cpp
</code></pre>
<p>In the root of the project I want to generate a single Makefile using a rule like:</p>
<pre><code>%.o: %.cpp
$(CC) -c $<
build/test.exe: build/widgets/apple.o build/widgets/knob.o build/tests/blend.o src/ui/flash.o
$(LD) build/widgets/apple.o .... build/ui/flash.o -o build/test.exe
</code></pre>
<p>When I try this it does not find a rule for build/widgets/apple.o. Can I change something so that the %.o: %.cpp is used when it needs to make build/widgets/apple.o ?</p>
http://stackoverflow.com/questions/1190579/what-happens-when-you-run-out-of-ram-with-mlockall-set1What happens when you run out of ram with mlockall set?James Dean2009-07-27T21:01:20Z2009-08-04T13:49:54Z
<p>I am working on a C++ application that requires a large amounts of memory for a batch run.
(> 20gb)</p>
<p>Some of my customers are running into memory limits where sometimes the OS starts swapping and the total run time doubles or worse.</p>
<p>I have read that I can use the mlockall to keep the process from being swapped out. What would happen when the process memory requirements approaches or exceeds the the available physical memory in this way?</p>
<p>I guess the answer might be OS specific so please list the OS in your answer.</p>
http://stackoverflow.com/questions/1008803/how-to-use-pure-in-d-2-07How to use pure in D 2.0James Dean2009-06-17T18:31:54Z2009-06-18T04:19:46Z
<p>While playing around with D 2.0 I found the following problem:</p>
<p>Example 1:</p>
<pre><code>pure string[] run1()
{
string[] msg;
msg ~= "Test";
msg ~= "this.";
return msg;
}
</code></pre>
<p>This compiles and works as expected.</p>
<p>When I try to wrap the string array in a class I find I can not get this to work:</p>
<pre><code>class TestPure
{
string[] msg;
void addMsg( string s )
{
msg ~= s;
}
};
pure TestPure run2()
{
TestPure t = new TestPure();
t.addMsg("Test");
t.addMsg("this.");
return t;
}
</code></pre>
<p>This code will not compile because the addMsg function is impure. I can not make that function pure since it alters the TestPure object.
Am i missing something? Or is this a limitation?</p>
<p>The following does compile:</p>
<pre><code>pure TestPure run3()
{
TestPure t = new TestPure();
t.msg ~= "Test";
t.msg ~= "this.";
return t;
}
</code></pre>
<p>Would the ~= operator not been implemented as a impure function of the msg array? How comes the compiler does not complain about that in the run1 function?</p>
http://stackoverflow.com/questions/1003948/what-debugger-can-be-used-with-d-2-0-on-windows-and-how-do-i-use-it7What debugger can be used with D 2.0 on windows and how do I use it?James Dean2009-06-16T21:10:36Z2009-06-17T00:36:45Z
<p>I have been playing around with D 2.0 a bit today mostly because of the "The Case for D" in DDJ.</p>
<p>I have downloaded D 2.0 for windows but have not figured out how to step through a running program in the debugger.</p>
<p>I tried to get the shipped copy of windbg.exe to work but it is crashing on me all the time and does not seem to see the source code.</p>
http://stackoverflow.com/questions/975420/quality-assurance-code-of-conduct/975969#9759692Answer by James Dean for Quality Assurance Code of ConductJames Dean2009-06-10T14:34:36Z2009-06-10T19:06:18Z<p>Spend a few minutes to talk to someone in person if possible and otherwise on the phone.</p>
<p>Only using email of bug tracking systems can really lead to these kinds of situations where both parties feel frustrated about the issue.</p>
<p>You need to get from communication at the level of</p>
<p>'this thing sucks' </p>
<p>to</p>
<p>'I get really confused when I do this and that and then this happens etc.'</p>
<p>You need to understand why and where people see problems and what minor issues may be causing enormous frustration for your testers and/or customers. </p>
<p>You may also need to help them understand why things are the way they are. </p>
<p>And that you may know that there are problems but that it can not be fixed right now because it would be risky or more important issues have priority.</p>
http://stackoverflow.com/questions/939693/what-is-the-best-online-sql-tutorial-for-learning-to-write-complex-reporting-quer2What is the best online SQL tutorial for learning to write complex reporting queries?James Dean2009-06-02T13:52:51Z2009-06-08T22:36:42Z
<p>My SQL skills are rather limited and since I find myself working with a DB (Oracle) a lot lately I would like to get beyond the basic select statements.</p>
<p>I want to write queries that do things like get data from multiple tables, sum quantities, compare dates, group, filter etc.</p>
<p>What sites can you recommend for getting SQL reporting skills to a more advanced level?</p>
http://stackoverflow.com/questions/890207/how-to-pop-up-a-minimized-wxpython-window0How to pop up a minimized wxPython window.James Dean2009-05-20T20:54:50Z2009-05-21T21:14:47Z
<p>I have a utility where I want it to pop up to the front of the screen from time to time to request user input.</p>
<p>(I know it is very annoying general behavior but I have good reasons in this case.)</p>
<p>I have found the RequestUserAttention method that can be used for a more pleasant request for input from the user but in my case I just want it to pop up a window. </p>
<p>Maybe even modal on top of all the other windows.</p>
<p>The platform here is XP if that makes any difference.</p>
http://stackoverflow.com/questions/890170/how-do-i-detect-when-my-window-is-minimized-with-wxpython3How do I detect when my window is minimized with wxPython?James Dean2009-05-20T20:49:43Z2009-05-20T20:58:40Z
<p>I am writing a small wxPython utility.</p>
<p>I would like to use some event to detect when a user minimizes the application/window.</p>
<p>I have looked around but did not find an event like wx.EVT_MINIMIZE that I could bind to.</p>
<p>Anyone know of a way that can be used to detect this?</p>
http://stackoverflow.com/questions/558274/how-to-log-make-output-without-buffering-from-stdout-and-stderr0How to log make output without buffering from stdout and stderrJames Dean2009-02-17T19:03:07Z2009-05-06T06:44:02Z
<p>I am having a problem with logging to output from an automated build.</p>
<p>The build is done with a Makefile and the makefile utility.</p>
<p>The problem is that normal output like compiler command lines go to stdout and compile errors go to stderr.</p>
<p>I want to get the output from the build as it would show on the screen. So something like:</p>
<pre><code>(stdout) CC -c file.cpp
(stderr) Compile error at file.cpp line 232, blah blah blah
(stdout) CC -c file2.cpp
</code></pre>
<p>What I tried (from a ksh script) is:</p>
<p>make -k > build.log 2> build.log</p>
<p>This results in a single log file but the problem is that the streams are buffered and so the result in the log file is all mixed up.</p>
<p>I could capture the output into 2 separate log files but then I would have no info on how to glue them back together into a single log file.</p>
<p>Is there a way to turn off buffering for stdout and stderr in this case?</p>
http://stackoverflow.com/questions/774192/what-is-the-correct-way-to-represent-null-xml-elements/774286#7742860Answer by James Dean for What is the correct way to represent null XML elements?James Dean2009-04-21T19:42:45Z2009-04-21T19:42:45Z<p>In many cases the purpose of a Null value is to serve for a data value that was not present in a previous version of your application.</p>
<p>So say you have an xml file from your application "ReportMaster" version 1.</p>
<p>Now in ReportMaster version 2 a some more attributes have been added that may or not be defined.</p>
<p>If you use the 'no tag means null' representation you get automatic backward compatibility for reading your ReportMaster 1 xml file.</p>
http://stackoverflow.com/questions/757382/multiple-apps-with-common-code-how-to-approach-this/757561#7575610Answer by James Dean for Multiple apps with common code -- how to approach this?James Dean2009-04-16T18:57:15Z2009-04-16T18:57:15Z<p>I would create one source control branch for the common code representing the latest and greatest version.</p>
<p>Then for each project have your own independent branch of that code where you can make quick fixes where needed or have stability when close to a release.</p>
<p>You may want to have a Wiki where bugs found in the common code are listed so the other users of the shared code are aware of it and get time to fix it at their leisure.</p>
<p>Git would work well for this since it is good at merging changes back to the 'master' branch.</p>
http://stackoverflow.com/questions/752793/should-c-eliminate-header-files/753240#7532407Answer by James Dean for Should C++ eliminate header files?James Dean2009-04-15T19:06:26Z2009-04-15T19:22:48Z<p>If you want C++ without header files then I have good news for you.</p>
<p>It already exists and is called D (<a href="http://www.digitalmars.com/d/index.html" rel="nofollow">http://www.digitalmars.com/d/index.html</a>)</p>
<p>Technically D seems to be a lot nicer than C++ but it is just not mainstream enough for use in many applications at the moment.</p>
http://stackoverflow.com/questions/752762/is-it-good-to-have-all-the-setter-functions-return-a-reference-to-the-object-in-c/752843#7528432Answer by James Dean for Is it good to have all the setter functions return a reference to the object in c++?James Dean2009-04-15T17:29:13Z2009-04-15T18:19:02Z<p>The typical purpose for this style is in use for object construction.</p>
<pre><code>Person* pPerson = &(new Person())->setAge(34).setId(55).setName("Jack");
</code></pre>
<p>instead of</p>
<pre><code>Person* pPerson = new Person( 34, 55, "Jack" );
</code></pre>
<p>Using the second more traditional style one might forget if the first value passed to the constructor was the age or the id? This may also lead to multiple constructors based on the validity of some properties.</p>
<p>Using the first style one might forget to set some of the object properties and and may lead bugs where objects are not 'fully' constructed. (A class property is added at a later point but not all the construction locations got updated to call the required setter.)</p>
<p>As code evolves I really like the fact that I can use the compiler to help me find all the places where an object is created when changing the signature of a constructor. So for that reason I prefer using regular C++ constructors over this style.</p>
<p>This pattern might work well in applications that maintain their datamodel over time according to rules similar to those used in many database applications:</p>
<ul>
<li>You can add a field/attribute to a table/class that is NULL by default. (So upgrading existing data requires just a new NULL column in the database.)</li>
<li>Code that is not changes should still work the same with this NULL field added.</li>
</ul>
http://stackoverflow.com/questions/748503/how-do-you-introduce-unit-testing-into-a-large-legacy-c-c-codebase/748783#7487833Answer by James Dean for How do you introduce unit testing into a large, legacy (C/C++) codebase?James Dean2009-04-14T18:24:56Z2009-04-14T18:24:56Z<p>I have worked on both Green field project with fully unit tested code bases and large C++ applications that have grown over many years and with many different developers on them.</p>
<p>Honestly, I would not bother an attempt to get a legacy code base to the state where units tests and test first development can add a lot of value.</p>
<p>Once a legacy code base gets to a certain size and complexity getting it to the point where unit test coverage provides you with a lot of benefits becomes a task equivalent to a full rewrite.</p>
<p>The main problem is that as soon as you start refactoring for testability you will begin introducing bugs. And only once you get high test coverage can you expect all those new bugs to be found and fixed.</p>
<p>That means that you either go very slowly and carefully and you do not get the benefits of a well unit tested code base until years from now. (probably never since mergers etc happen.) In the mean time you are probably introducing some new bugs with no apparent value to the end user of the software.</p>
<p>Or you go fast but have an unstable code base until all you have reached high test coverage of all your code. (So you end up with 2 branches, one in production, one for the unit-tested version.)</p>
<p>Of cause this all a matter of scale for some projects a rewrite might just take a few weeks and can certainly be worth it.</p>
http://stackoverflow.com/questions/726096/accessing-private-members/726361#7263612Answer by James Dean for Accessing private membersJames Dean2009-04-07T15:32:24Z2009-04-07T15:39:37Z<p>I have had this happen to me since there was a very crappy source control system in place where for old versions of the application making changes to header files was pretty much impossible.</p>
<p>If some cases you just need to do a hack.</p>
<p>In the source file from which you need to access the private data member you can put in this as a first line:</p>
<pre><code>#define private public
#define protected public
</code></pre>
<p>and access anything you want.</p>
http://stackoverflow.com/questions/716904/preparing-for-the-next-c-standard/726330#7263300Answer by James Dean for Preparing for the next C++ standardJames Dean2009-04-07T15:26:38Z2009-04-07T15:26:38Z<p>You may actually always prefer using the Boost version for a long time. Especially if you need to compile on multiple platforms.</p>
<p>The Boost libraries are ported and tested on multiple platforms and behave the same there (most of the time.)</p>
<p>The first vendor implementations of the new C++ libraries may still contain minor bugs and performance differences just like it was such a mess when STL and the std namespace were added. </p>
http://stackoverflow.com/questions/714242/opinions-on-unladen-swallow/714920#7149201Answer by James Dean for Opinions on Unladen Swallow?James Dean2009-04-03T17:36:00Z2009-04-03T17:36:00Z<p>I think that a 5 times speed improvement is not all that important for me personally.</p>
<p>It is not an order of magnitude change. Although if you consume CPU power at the scale of Google it can be a worth while investment to have some of your staff work on it.</p>
<p>Many of the speed improvements will likely make it into cpython eventually.</p>
<p>Getting rid of the GIL is interesting in principle but will likely reveal lots of problems with modules that are not thread safe once the GIL is removed.</p>
<p>I do not think I will use Unladen Swallow any time soon but like how giving attention to performance may improve the regular Python versions.</p>
http://stackoverflow.com/questions/674317/exceptions-vs-special-return-values/674488#6744881Answer by James Dean for Exceptions vs Special return valuesJames Dean2009-03-23T17:50:57Z2009-03-23T18:07:57Z<p>As in many issues related to programming it all depends...</p>
<p>I find that one really should first try to define your API so exceptional cases can not happen in the first place.</p>
<p>Using Design By Contract can help in doing this. Here one would insert functions that throw an error or crash and indicate a programming error (not user error). (In some cases these checks are removed in release mode.)</p>
<p>Then keep you exceptions for generic failures that can not be avoided like, DB connection failed, optimistic transaction failed, disk write failed.</p>
<p>These exceptions should then typically not need to be caught until they reach the 'user'. And will result in the user to need to try again.</p>
<p>If the error is a user error like a typo in a name or something then deal with that directly in the application interface code itself. Since this is then a common error it would need to be handle with a user friendly error message potentially translated etc.</p>
<p>Application layering is also useful here. So lets take the example of transfering cash from one account an other account:</p>
<pre><code>transferInternal( int account_id_1, int account_id_2, double amount )
{
// This is an internal function we require the client to provide us with
// valid arguments only. (No error handling done here.)
REQUIRE( accountExists( account_id_1 ) ); // Design by contract argument checks.
REQUIRE( accountExists( account_id_2 ) );
REQUIRE( balance( account_id_1 ) > amount );
... do the actual transfer work
}
string transfer( int account_id_1, int account_id_2, double amount )
{
DB.start(); // start transaction
string msg;
if ( !checkAccount( account_id_1, msg ) ) return msg; // common checking code used from multiple operations.
if ( !checkAccount( account_id_2, msg ) ) return msg;
if ( !checkBalance( account_id_1, amount ) ) return msg;
transferInternal( account_id_1, account_id_2, amount );
DB.commit(); // This could fail with an exception if someone else changed the balance while this transaction was active. (Very unlikely but possible)
return "cash transfer ok";
}
</code></pre>
http://stackoverflow.com/questions/657791/whats-the-difference-between-file-stream-in-c-and-iostream-in-c/658244#6582443Answer by James Dean for What's the difference between File stream in C and iostream in C++?James Dean2009-03-18T13:27:08Z2009-03-18T13:27:08Z<p>This article gives a good overview of the different output stream available to you in C++.</p>
<p><a href="http://accu.org/index.php/journals/1539" rel="nofollow">http://accu.org/index.php/journals/1539</a></p>
<p>It compares:</p>
<ul>
<li>FILE</li>
<li>std::stream</li>
<li>Boost.Format</li>
<li>FastFormat(done by the Author of the Article Matthew Wilson who wrote the Imperfect C++ book.)</li>
</ul>
http://stackoverflow.com/questions/1675766/how-to-combine-pool-map-with-array-shared-memory-in-python-multiprocessing/1721911#1721911Comment by James Dean on How to combine Pool.map with Array (shared memory) in Python multiprocessing?James Dean2009-11-13T20:05:35Z2009-11-13T20:05:35ZThe assert on pickling the shared data array seems to be an artificial constraint on using the shared resource with multi-processing but given that constraint you have provided some reasonable workarounds so I will give you the points for accepted answer.http://stackoverflow.com/questions/1675766/how-to-combine-pool-map-with-array-shared-memory-in-python-multiprocessingComment by James Dean on How to combine Pool.map with Array (shared memory) in Python multiprocessing?James Dean2009-11-13T15:32:55Z2009-11-13T15:32:55ZI had a closer look at the source code and the information about the shared memory can be pickled (needed to get info about it over to the client process on windows) but that code has an assert to only run during process spawning. I wonder why that is.http://stackoverflow.com/questions/1675766/how-to-combine-pool-map-with-array-shared-memory-in-python-multiprocessing/1721911#1721911Comment by James Dean on How to combine Pool.map with Array (shared memory) in Python multiprocessing?James Dean2009-11-12T18:39:26Z2009-11-12T18:39:26ZYou are getting closer but there is still the issue that the toShare array length has to be fixed before the pool is created.
So you are still creating the shared memory segment before the processes are created.
What I really want to see as a general solution is a way to create a new variable length shared array after the pool is created, pass info about it to the worker process and have it read from it.http://stackoverflow.com/questions/1675766/how-to-combine-pool-map-with-array-shared-memory-in-python-multiprocessing/1721911#1721911Comment by James Dean on How to combine Pool.map with Array (shared memory) in Python multiprocessing?James Dean2009-11-12T14:41:40Z2009-11-12T14:41:40ZSo the real problem seems to be that how we can pickle the information about an Array so it can be send and connected to from the other process.http://stackoverflow.com/questions/1675766/how-to-combine-pool-map-with-array-shared-memory-in-python-multiprocessing/1721911#1721911Comment by James Dean on How to combine Pool.map with Array (shared memory) in Python multiprocessing?James Dean2009-11-12T14:10:38Z2009-11-12T14:10:38ZEven on platforms with fork you can not insert new shared data into toShare after the fork since each process will have its own independent copy at that point.http://stackoverflow.com/questions/1675766/how-to-combine-pool-map-with-array-shared-memory-in-python-multiprocessing/1676328#1676328Comment by James Dean on How to combine Pool.map with Array (shared memory) in Python multiprocessing?James Dean2009-11-04T21:00:09Z2009-11-04T21:00:09ZYou are right that it is safe on fork based platforms. But I would like to know if there is a shared memory based way to share large amounts of data after the process pool is created.http://stackoverflow.com/questions/1675766/how-to-combine-pool-map-with-array-shared-memory-in-python-multiprocessing/1676328#1676328Comment by James Dean on How to combine Pool.map with Array (shared memory) in Python multiprocessing?James Dean2009-11-04T20:41:08Z2009-11-04T20:41:08ZI do not believe the use of globals is safe and would certainly not work on windows where the processes are not forked.http://stackoverflow.com/questions/1651351/clojure-call-a-function-for-each-element-in-a-vector-with-it-index/1652082#1652082Comment by James Dean on Clojure: Call a function for each element in a vector with it indexJames Dean2009-11-04T15:26:13Z2009-11-04T15:26:13ZI added (dotimes [n 100] ...) around my tests and got the same results it seems hotspot can not do much about these differences.
Recur version takes about 230 msecs. Index vector about 690 msecs.http://stackoverflow.com/questions/1651351/clojure-call-a-function-for-each-element-in-a-vector-with-it-index/1652082#1652082Comment by James Dean on Clojure: Call a function for each element in a vector with it indexJames Dean2009-10-30T21:01:36Z2009-10-30T21:01:36ZI guess i need to test with hot-spot optimized.
I just ran the exact same test in Python and there it ran in 80 msec.http://stackoverflow.com/questions/1638854/clojure-how-do-i-apply-a-function-to-a-subset-of-the-entries-in-a-hash-map/1639379#1639379Comment by James Dean on Clojure: How do I apply a function to a subset of the entries in a hash-map?James Dean2009-10-28T21:06:56Z2009-10-28T21:06:56ZWould you mind giving a statement by statement description for us new to Clojure?http://stackoverflow.com/questions/233171/what-is-the-best-way-to-do-gui-in-clojure/233271#233271Comment by James Dean on What is the best way to do Gui in Clojure?James Dean2009-10-01T17:41:19Z2009-10-01T17:41:19ZAlso note that in the more recent versions of closure you need to add a . in front of the member function calls in the todo block.http://stackoverflow.com/questions/1099427/can-one-unroll-a-loop-when-working-with-an-integer-template-parameter/1190933#1190933Comment by James Dean on Can one unroll a loop when working with an integer template parameter?James Dean2009-07-28T12:34:39Z2009-07-28T12:34:39ZI like this one. Too bad my compiler does not compile it :-(.http://stackoverflow.com/questions/1190579/what-happens-when-you-run-out-of-ram-with-mlockall-setComment by James Dean on What happens when you run out of ram with mlockall set?James Dean2009-07-28T12:32:46Z2009-07-28T12:32:46ZThe platforms would be 64 bit linux, 64 bit AIX, 64 bit Solaris, 64 bit HP-UX.http://stackoverflow.com/questions/1099427/can-one-unroll-a-loop-when-working-with-an-integer-template-parameterComment by James Dean on Can one unroll a loop when working with an integer template parameter?James Dean2009-07-08T20:29:04Z2009-07-08T20:29:04ZMaybe my compiler is not so smart (VC++.Net 2003) but it was not unrolling the loop for the longer sequences. On my computer with my compiler there was a 20% speed improvement by manually unrolling the loop.http://stackoverflow.com/questions/1099427/can-one-unroll-a-loop-when-working-with-an-integer-template-parameterComment by James Dean on Can one unroll a loop when working with an integer template parameter?James Dean2009-07-08T17:30:19Z2009-07-08T17:30:19ZThe loop is already unrolled. This is a very specialized hash function. Character values are just 0,1,2,3 .