User Tom Barta - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T22:22:50Z http://stackoverflow.com/feeds/user/29839 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/280624/which-is-faster-c-unsafe-code-or-raw-c/319726#319726 2 Answer by Tom Barta for Which is faster - C# unsafe code or raw C++ Tom Barta 2008-11-26T04:11:46Z 2008-11-26T04:11:46Z <p>If you know your environment and you use a good compiler (for video processing on windows, Intel C++ Compiler is probably the best choice), C++ will beat C# hands-down for several reasons:</p> <ul> <li>The C++ runtime environment has no intrinsic runtime checks (the downside being that you have free reign to blow yourself up). The C# runtime environment is going to have some sanity checking going on, at least initially.</li> <li>C++ compilers are built for optimizing code. While it's theoretically possible to implement a C# JIT compiler using all of the optimizing voodo that ICC (or GCC) uses, it's doubtful that Microsoft's JIT will reliably do better. Even if the JIT compiler has runtime statistics, that's still not as good as profile-guided optimization in either ICC or GCC.</li> <li>A C++ environment allows you to control your memory model much better. If your application gets to the point of thrashing the data cache or fragmenting the heap, you'll really appreciate the extra control over allocation. Heck, if you can avoid dynamic allocations, you're already much better off (hint: the running time of <code>malloc()</code> or any other dynamic allocator is nondeterministic, and almost all non-native languages force heavier heap usage, and thus heavier allocation).</li> </ul> <p>If you use a poor compiler, or if you can't target a good chipset, <strong>all bets are off</strong>.</p> http://stackoverflow.com/questions/271971/how-can-i-improve-replace-sprintf-which-ive-measured-to-be-a-performance-hotspo/272113#272113 1 Answer by Tom Barta for How can I improve/replace sprintf, which I've measured to be a performance hotspot? Tom Barta 2008-11-07T13:48:35Z 2008-11-07T13:48:35Z <p>I would do a few things...</p> <ul> <li>cache the current time so you don't have to regenerate the timestamp every time</li> <li>do the time conversion manually. The slowest part of the <code>printf</code>-family functions is the format-string parsing, and it's silly to be devoting cycles to that parsing on every loop execution.</li> <li>try using 2-byte lookup tables for all conversions (<code>{ "00", "01", "02", ..., "99" }</code>). This is because you want to avoid moduluar arithmetic, and a 2-byte table means you only have to use one modulo, for the year.</li> </ul> http://stackoverflow.com/questions/267825/how-do-i-find-the-file-handles-that-my-process-has-opened-in-linux/267871#267871 1 Answer by Tom Barta for How do I find the file handles that my process has opened in Linux? Tom Barta 2008-11-06T07:39:02Z 2008-11-06T07:39:02Z <p>I agree with what other people have said about closing random files being dangerous. You might end up filing some pretty interesting bug reports for all of your third-party tools.</p> <p>That said, if you <em>know</em> you won't need those files to be open, you can always walk through all of the valid file descriptors (1 to 65535, IIRC) and close everything you don't recognize.</p> http://stackoverflow.com/questions/267763/defensive-coding-practices/267837#267837 5 Answer by Tom Barta for defensive coding practices Tom Barta 2008-11-06T07:15:23Z 2008-11-06T07:15:23Z <ul> <li>always initialize variables</li> <li>use <code>const</code> wherever I can (without using <code>mutable</code>)</li> <li>avoid bare dynamic allocation of memor or other resources</li> <li>always use curly braces</li> <li>code use-cases and tests for any class before coding implementation</li> <li>turn on as many useful warnings as I can (<code>-Wall -Wextra -ansi -pedantic -Werror</code> at a minimum)</li> <li>use the simplest tool that solves the problem (in my current environment, that's <code>bash</code> -> <code>grep</code> -> <code>awk</code> -> <code>python</code> -> <code>C++</code>).</li> </ul> http://stackoverflow.com/questions/248693/double-negation-in-c-code/249305#249305 1 Answer by Tom Barta for Double Negation in C++ code. Tom Barta 2008-10-30T04:50:27Z 2008-10-30T04:50:27Z <p>It's actually a very useful idiom in some contexts. Take these macros (example from the Linux kernel). For GCC, they're implemented as follows:</p> <pre><code>#define likely(cond) (__builtin_expect(!!(cond), 1)) #define unlikely(cond) (__builtin_expect(!!(cond), 0)) </code></pre> <p>Why do they have to do this? GCC's <code>__builtin_expect</code> treats its parameters as <code>long</code> and not <code>bool</code>, so there needs to be some form of conversion. Since they don't know what <code>cond</code> is when they're writing those macros, it is most general to simply use the <code>!!</code> idiom.</p> <p>They could probably do the same thing by comparing against 0, but in my opinion, it's actually more straightforward to do the double-negation, since that's the closest to a cast-to-bool that C has.</p> <p>This code can be used in C++ as well... it's a lowest-common-denominator thing. If possible, do what works in both C and C++.</p> http://stackoverflow.com/questions/228404/extending-an-existing-class-like-a-namespace-c/228546#228546 6 Answer by Tom Barta for Extending an existing class like a namespace (C++)? Tom Barta 2008-10-23T04:29:22Z 2008-10-23T04:29:22Z <p>My only question to you is, "does your added functionality need to be a member function, or can it be a free function?" If what you want to do can be solved using the class's existing interface, then the only difference is the syntax, and you should use a free function (if you think that's "ugly", then... suck it up and move on, C++ wasn't designed for monkeypatching).</p> <p>If you're trying to get at the internal guts of the class, it may be a sign that the original class is lacking in flexibility (it doesn't expose enough information for you to do what you want from the public interface). If that's the case, maybe the original class can be "completed", and you're back to putting a free function on top of it.</p> <p>If absolutely none of that will work, and you just must have a member function (e.g. original class provided protected members you want to get at, and you don't have the freedom to modify the original interface)... only then resort to inheritance and member-function implementation.</p> <p>For an in-depth discussion (and deconstruction of <code>std::string</code>'), check out this <a href="http://www.gotw.ca/gotw/084.htm" rel="nofollow">Guru of the Week "Monolith" class article</a>.</p> http://stackoverflow.com/questions/222778/adding-boost-makes-debug-build-depend-on-non-d-msvc-runtime-dlls/228128#228128 1 Answer by Tom Barta for Adding Boost makes Debug build depend on "non-D" MSVC runtime DLLs Tom Barta 2008-10-23T01:02:40Z 2008-10-23T01:02:40Z <p>Looks like other people have answered the Boost side of the issue. Here's a bit of background info on the MSVC side of things, that may save further headache.</p> <p>There are 4 versions of the C (and C++) runtimes possible:</p> <ul> <li>/MT: libcmt.lib (C), libcpmt.lib (C++)</li> <li>/MTd: libcmtd.lib, libcpmtd.lib</li> <li>/MD: msvcrt.lib, msvcprt.lib</li> <li>/MDd: msvcrtd.lib, msvcprtd.lib</li> </ul> <p>The DLL versions still require linking to that static lib (which somehow does all of the setup to link to the DLL at runtime - I don't know the details). Notice in all cases debug version has the <code>d</code> suffix. The C runtime uses the <code>c</code> infix, and the C++ runtime uses the <code>cp</code> infix. See the pattern? In any application, you should only ever link to the libraries in one of those rows.</p> <p>Sometimes (as in your case), you find yourself linking to someone else's static library that is configured to use the wrong version of the C or C++ runtimes (via the awfully annoying <code>#pragma comment(lib)</code>). You can detect this by turning your linker verbosity way up, but it's a real PITA to hunt for. The "kill a rodent with a bazooka" solution is to use the <code>/nodefaultlib:...</code> linker setting to rule out the 6 C and C++ libraries that you know you don't need. I've used this in the past without problem, but I'm not positive it'll always work... maybe someone will come out of the woodwork telling me how this "solution" may cause your program to eat babies on Tuesday afternoons.</p> http://stackoverflow.com/questions/34125/which-if-any-c-compilers-do-tail-recursion-optimization/220660#220660 5 Answer by Tom Barta for Which, if any, C++ compilers do tail-recursion optimization? Tom Barta 2008-10-21T03:13:20Z 2008-10-21T03:13:20Z <p>gcc 4.3.2 completely inlines this function (crappy/trivial <code>atoi()</code> implementation) into <code>main()</code>. Optimization level is <code>-O1</code>. I notice if I play around with it (even changing it from <code>static</code> to <code>extern</code>, the tail recursion goes away pretty fast, so I wouldn't depend on it for program correctness.</p> <pre><code>#include &lt;stdio.h&gt; static int atoi(const char *str, int n) { if (str == 0 || *str == 0) return n; return atoi(str+1, n*10 + *str-'0'); } int main(int argc, char **argv) { for (int i = 1; i != argc; ++i) printf("%s -&gt; %d\n", argv[i], atoi(argv[i], 0)); return 0; } </code></pre> http://stackoverflow.com/questions/220423/how-do-you-deal-with-nul/220607#220607 3 Answer by Tom Barta for How do you deal with NUL? Tom Barta 2008-10-21T02:51:16Z 2008-10-21T02:51:16Z <ul> <li>For dealing with strings, I alwayse represent the null character as '\0'. <li>For pointers, I try to use implicit-conversion-to-boolean (if (!myPtr) or if (myPtr)) for pointer nullity. <li>If I need a default value for a pointer, it's NULL, e.g. struct list_head = { 0.0, NULL };). </ul> <p> END_OF_STRING is silly, since it's extra indirection that simply confuses new readers (anyone who doesn't immediately recognize '\0' should step away from the keyboard). </p> <p> One other thing&mdash;I think the difference between a null value and an empty value is extremely important when talking about data modeling. This is especially true when discussing C-style strings or nullable database fields. There's a huge difference between someone telling you "I have no name" and "My name is ." </p> http://stackoverflow.com/questions/200090/how-do-you-convert-a-c-string-to-an-int/200855#200855 Comment by Tom Barta on How do you convert a C++ string to an int? Tom Barta 2008-11-20T03:19:36Z 2008-11-20T03:19:36Z atoi() also ignores leading whitespace and trailing crap, so it may succeed where other more strict parsers will fail. Depending on your POV, that could be an advantage or a hindrance. http://stackoverflow.com/questions/200090/how-do-you-convert-a-c-string-to-an-int/200099#200099 Comment by Tom Barta on How do you convert a C++ string to an int? Tom Barta 2008-11-20T03:18:10Z 2008-11-20T03:18:10Z atoi() does other magic... like ignoring leading whitespace, ignoring trailing non-whitespace, and assuming &quot;0&quot; is a valid error condition as well. Please only use atoi() when you really don't care about validity. Otherwise, strtod() in C and std::istringstream in C++. http://stackoverflow.com/questions/301693/why-didnt-unit-testing-work-out-for-your-project/301909#301909 Comment by Tom Barta on Why didn't unit testing work out for your project? Tom Barta 2008-11-20T01:50:42Z 2008-11-20T01:50:42Z 1. The compiler doesn't detect runtime error conditions, and even sound designs can have errors. 2. I consider myself a good designer, but seeing the object in use can be more effective than just &quot;imagining&quot; it in use. 3. Executable documentation for downstream or maintenance developers. http://stackoverflow.com/questions/301586/what-is-the-difference-between-using-includefilename-and-includefilename-h/301907#301907 Comment by Tom Barta on What is the difference between using #include<filename> and #include<filename.h> in c++ Tom Barta 2008-11-20T01:42:41Z 2008-11-20T01:42:41Z Even if they're deprecated, no sane compiler vender will ever deprecate the usage of <code>filename.h</code> in C++. They'd break far too many programs and angry far too many customers/developers. http://stackoverflow.com/questions/39222/portably-handle-exceptional-errors-in-c/39231#39231 Comment by Tom Barta on Portably handle exceptional errors in C++ Tom Barta 2008-11-07T02:07:17Z 2008-11-07T02:07:17Z The OP is looking for something to address lower-level exceptional conditions than C++ language-level exceptions. In a POSIX world, this means installing signal handlers for (most) everything. In MSVC, the __try/__catch mechanism handles similar faults (including the Win32 equivalent of SEGFAULT) http://stackoverflow.com/questions/267763/defensive-coding-practices/267806#267806 Comment by Tom Barta on defensive coding practices Tom Barta 2008-11-06T07:08:57Z 2008-11-06T07:08:57Z in many cases a unit test is written before the implementation. Yes, it is a coding practice. http://stackoverflow.com/questions/267647/bruce-lee-software-design-question Comment by Tom Barta on Bruce Lee software design question Tom Barta 2008-11-06T07:04:56Z 2008-11-06T07:04:56Z @erickson - of course college is the wrong place to learn programming. Programming is the only place to learn programming. College is to learn fundamentals that underly programming. http://stackoverflow.com/questions/265708/do-i-need-a-semaphore-when-reading-from-a-global-structure/267617#267617 Comment by Tom Barta on Do I need a semaphore when reading from a global structure? Tom Barta 2008-11-06T05:19:33Z 2008-11-06T05:19:33Z I don't think you understand what the OP was asking about. He's referring to variables that aren't written at all (after program startup, presumably). In your example, <code>seconds/minutes/hours</code> all refer to writeable variables, so of course you need synchronization primitives.