User oliver - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T05:01:18Z http://stackoverflow.com/feeds/user/17684 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/186648/how-to-organize-c-test-apps-and-related-files 5 How to organize C++ test apps and related files? oliver 2008-10-09T10:17:31Z 2009-04-12T20:31:22Z <p>I'm working on a C++ library that (among other stuff) has functions to read config files; and I want to add tests for this. So far, this has lead me to create lots of valid and invalid config files, each with only a few lines that test one specific functionality. But it has now got very unwieldy, as there are so many files, and also lots of small C++ test apps. Somehow this seems wrong to me :-) so do you have hints how to organise all these tests, the test apps, and the test data?</p> <p>Note: the library's public API itself is not easily testable (it requires a config file as parameter). The juicy, bug-prone methods for actually reading and interpreting config values are private, so I don't see a way to test them directly?</p> <p>So: would you stick with testing against real files; and if so, how would you organise all these files and apps so that they are still maintainable?</p> http://stackoverflow.com/questions/515149/try-catch-a-segmentation-fault-on-linux/586221#586221 1 Answer by oliver for Try/Catch a segmentation fault on Linux oliver 2009-02-25T14:40:26Z 2009-02-25T14:40:26Z <p>Generally, regarding the pretty weird idea of "checking a non-NULL pointer for validity", have a look at this article: <a href="http://blogs.msdn.com/oldnewthing/archive/2006/09/27/773741.aspx" rel="nofollow">http://blogs.msdn.com/oldnewthing/archive/2006/09/27/773741.aspx</a> ("IsBadXxxPtr should really be called CrashProgramRandomly")</p> http://stackoverflow.com/questions/543396/is-there-something-like-webmasters-toolkit-that-runs-on-linux/585711#585711 0 Answer by oliver for Is there something like Webmaster's Toolkit that runs on Linux? oliver 2009-02-25T12:00:37Z 2009-02-25T12:00:37Z <p>For measuring distances on screen, have a look at <code>kruler</code> or <code>screenruler</code>.</p> http://stackoverflow.com/questions/447520/whats-the-recommended-workaround-if-numericlimitsdoublehasinfinity-is-fals 0 What's the recommended workaround if numeric_limits<double>::has_infinity is false? oliver 2009-01-15T16:40:54Z 2009-01-19T10:13:50Z <p>I need to check a double value for infinity in a C++ app on Linux. On most platforms this works by comparing with <code>std::numeric_limits&lt;double&gt;::infinity()</code>. However, on some old platforms (RedHat 9 for example, with gcc 3.2.2) this is not available, and <code>std::numeric_limits&lt;double&gt;::has_infinity</code> is false there.</p> <p>What workaround would you recommend for those platforms?</p> http://stackoverflow.com/questions/447520/whats-the-recommended-workaround-if-numericlimitsdoublehasinfinity-is-fals/457130#457130 0 Answer by oliver for What's the recommended workaround if numeric_limits<double>::has_infinity is false? oliver 2009-01-19T10:13:50Z 2009-01-19T10:13:50Z <p>Ok, I have now resorted to using the <code>INFINITY</code> and <code>NAN</code> macros on that particular machine - seems to work fine. They come from <code>math.h</code>.</p> http://stackoverflow.com/questions/323604/what-are-important-points-when-designing-a-binary-file-format 1 What are important points when designing a (binary) file format? oliver 2008-11-27T12:26:06Z 2008-12-29T17:44:28Z <p>When designing a file format for recording binary data, what attributes would you think the format should have? So far, I've come up with the following important points:</p> <ul> <li>have some "magic bytes" at the beginning, to be able to recognize the files (in my specific case, this should also help to distinguish the files from "legacy" files)</li> <li>have a file version number at the beginning, so that the file format can be changed later without breaking compatibility</li> <li>specify the endianness and size of all data items; or: include some space to describe endianness/size of data (I would tend towards the former)</li> <li>possibly reserve some space for further per-file attributes that might be necessary in the future?</li> </ul> <p>What else would be useful to make the format more future-proof and minimize headache in the future?</p> http://stackoverflow.com/questions/366148/does-dual-booting-linux-and-windows-vista-require-special-treatment/371530#371530 0 Answer by oliver for Does dual booting Linux and Windows Vista require special treatment? oliver 2008-12-16T14:45:55Z 2008-12-16T14:45:55Z <p>Can't say anything about the partition resizing; but I installed Ubuntu (7.10) onto the second partition of a laptop where Vista was pre-installed, and IIRC there weren't any problems at all. Both Ubuntu and Vista can still be booted. Luckily the vendor had partitioned the drive already, with a data partition which I used for Ubuntu.</p> http://stackoverflow.com/questions/359553/special-meaning-for-pointer-value-0x7c7c7c7c/359792#359792 1 Answer by oliver for Special Meaning for Pointer Value 0x7c7c7c7c oliver 2008-12-11T15:48:03Z 2008-12-11T15:48:03Z <p>Maybe the <code>MALLOC_PERTURB_</code> environment variable is set? If set, it influences how malloc() initializes the allocated memory.</p> http://stackoverflow.com/questions/139605/where-to-find-packages-names-and-versions-for-redhat/355499#355499 0 Answer by oliver for Where to find packages names and versions for RedHat? oliver 2008-12-10T09:26:27Z 2008-12-10T09:26:27Z <p>Looks like Fedora is now working on an online list of packages (PackageDB - see <a href="http://fedoraproject.org/wiki/Infrastructure/PackageDatabase" rel="nofollow">http://fedoraproject.org/wiki/Infrastructure/PackageDatabase</a>). The current version is available at https://admin.fedoraproject.org/pkgdb/ . It doesn't seem to know about all RHEL4/RHEL5 packages, though.</p> http://stackoverflow.com/questions/139605/where-to-find-packages-names-and-versions-for-redhat 0 Where to find packages names and versions for RedHat? oliver 2008-09-26T13:49:49Z 2008-12-10T09:26:27Z <p>How can I find out whether a specific RedHat release (RHEL4, RHEL5...) contains a certain package (or a certain version of a package)? For Debian and Ubuntu, there's packages.debian.org and packages.ubuntu.com; is there a similar web site for RedHat?</p> <p>Note: I don't want to have to install all the releases just to check some package version :-)</p> http://stackoverflow.com/questions/328936/getting-a-unique-id-from-a-unix-like-system/340853#340853 0 Answer by oliver for Getting a unique id from a unix-like system oliver 2008-12-04T14:56:37Z 2008-12-04T14:56:37Z <p>You mentioned that on Windows you use some GUID... Do you have some details about how it is created?</p> <p>Apart from that, you could try something like CPU ID, or hard disk ID... I suppose those cannot be changed (but you will run into trouble if a faulty hard disk is replaced).</p> http://stackoverflow.com/questions/182334/company-insists-on-using-a-binary-format-for-all-our-documentation/323586#323586 0 Answer by oliver for Company insists on using a binary format for all our documentation oliver 2008-11-27T12:13:46Z 2008-11-27T12:13:46Z <p>Don't you store documentation files in some kind of Version Control System, ideally together with the source code? I would recommend to do this (makes it easy to get the documentation for old software releases).</p> <p>And if you do store the docs in VCS, you will notice that plain text or XML-bases files are much better for this, because you can get diffs; also, changes between text files are usually stored more efficiently than changes between binary files.</p> http://stackoverflow.com/questions/305905/how-can-i-kill-a-whole-process-tree-with-perl 3 How can I kill a whole process tree with Perl? oliver 2008-11-20T16:27:20Z 2008-11-20T21:10:33Z <p>What's the best way to kill a process and all its child processes from a Perl script? It should run at least under Linux and Solaris, and not require installation of any additional packages.</p> <p>My guess would be to get a list of all processes and their parents by parsing files in /proc or by parsing the output of <code>ps</code> (neither of which seems portable between Linux and Solaris); and then killing all processes in the tree (which seems prone to race conditions).</p> <p>I could live with the race conditions in this particular case, but how do I portably get the process list?</p> http://stackoverflow.com/questions/91585/what-do-you-need-from-a-test-harness/302619#302619 0 Answer by oliver for What do you need from a test harness? oliver 2008-11-19T17:03:31Z 2008-11-19T17:03:31Z <p>I use TAP as output protocol for a set of simple C++ test methods, and have seen the following shortcomings:</p> <ul> <li>test steps cannot be put into groups (there's only the grouping into several test scripts; but for running all tests in our software, I need at least one more level of grouping, so that a single test step would be identified by like "DB connection" -> "Reconnection Test" -> "test step #3")</li> <li>seeing differences between expected and actual output is useful; I either print the diff to stderr (as comment) or actually launch a graphical diff tool</li> <li>the protocol and tools must be really language-independent. For example, so far I only know of the Perl "prove" tool for running tests, which is limited to running Perl scripts</li> </ul> <p>In the end, the test output must be suitable as basis for easily generating an HTML report file which lists succeeded tests very concisely, gives detailed output for failed tests, and makes it possible to quickly jump into the IDE to the failing test line.</p> http://stackoverflow.com/questions/259139/capturing-session-for-remote-control-from-a-linux-host/259233#259233 1 Answer by oliver for Capturing session for remote control from a linux host oliver 2008-11-03T16:46:41Z 2008-11-03T16:46:41Z <p>Apart from x11vnc (which is indeed really nice) and krfb (which I have no experience with), recent Gnome desktops have the Vino VNC server built-in. IIRC it can be enabled under System->Settings->Desktop Sharing. It has a nice GUI and is well-integrated with Gnome and the system, but AFAIK it uses more CPU time than x11vnc does.</p> http://stackoverflow.com/questions/242697/do-stdout-output-with-specific-speed 2 do stdout output with specific speed oliver 2008-10-28T09:51:34Z 2008-10-28T11:04:58Z <p>For a load test of my application (under Linux), I'm looking for a tool that outputs data on stdout at a specific rate (like 100 bytes/s), so that I can pipe the output to netcat which sends it to my application. Some option for dd would be ideal, but I didn't find anything so far. It doesn't really matter what kind of data is printed (NUL bytes are OK). Any hints?</p> http://stackoverflow.com/questions/242697/do-stdout-output-with-specific-speed/242769#242769 0 Answer by oliver for do stdout output with specific speed oliver 2008-10-28T10:19:05Z 2008-10-28T10:19:05Z <p>Well, I'm now using nuttcp to do "real" load tests instead. It seems to have quite low overhead, so the test system is not too much disturbed.</p> http://stackoverflow.com/questions/209305/how-to-discard-incoming-packets-in-raw-socket 2 How to discard incoming packets in raw socket? oliver 2008-10-16T16:23:58Z 2008-10-23T08:00:22Z <p>I'm writing a C/C++ application under Linux that reads data from a raw socket (for ICMP packets). Question: is there a way to discard all data that is still queued on the socket?</p> <p>The problem is that after sleeping for a while, there is data queued up on the socket which I'm not interested in; so it would be best to just tell the socket "forget all data you have buffered right now", so that if I go into a select()/recvfrom() loop then, I only get data that was received recently.</p> <p>Is there a better way than going into a separate poll()/recvfrom() loop first? Some socket API call maybe? Portable, even? :-)</p> http://stackoverflow.com/questions/202706/is-gtk-responsible-for-the-awkward-look-of-most-linux-applications/209372#209372 1 Answer by oliver for Is gtk+ responsible for the awkward look of most linux applications? oliver 2008-10-16T16:41:18Z 2008-10-16T16:41:18Z <p>As for the example picture, maybe you could post similar pictures for GUIs that you do like (Mac OS, Window...)? That might make it easier to compare the GUIs and see subtle differences.</p> <p>Anyway, I think the preview images on art.gnome.org are not representative for the real look. If you want to compare GTK+ GUIs with other toolkits, I suggest to look at screenshots from real apps. For example, Ubuntu with default theme should be quite representative.</p> <p>Btw. the Gnome HIG (Human Interface Guidelines) have a chapter on layout and spacing: <a href="http://library.gnome.org/devel/hig-book/stable/design-window.html.en" rel="nofollow">http://library.gnome.org/devel/hig-book/stable/design-window.html.en</a> .</p> http://stackoverflow.com/questions/122192/for-list-controls-should-find-as-you-type-match-at-the-start-of-an-entry-or-any 0 For list controls, should find-as-you-type match at the start of an entry, or anywhere in an entry? oliver 2008-09-23T16:39:05Z 2008-10-08T17:30:03Z <p>I have a list control in GTK+ (a <code>gtk.TreeView</code> with one column), with "find-as-you type" enabled (so typing any text will open a small search field for searching through the list entries). Now, if the user enters some search text like "abc", should I search only for entries <em>starting</em> with "abc", or should I search for entries that contain "abc" somewhere in their text?</p> <p>(links to relevant Human Interface Guidelines appreciated)</p> http://stackoverflow.com/questions/174069/adding-a-new-application-group-in-linux/183763#183763 0 Answer by oliver for Adding a new application group in linux oliver 2008-10-08T16:52:00Z 2008-10-08T16:52:00Z <p>Not sure what you meant exactly with "in openSUSE the .directory file is mandatory or else the program group does not shows up"; generally I suppose you have to call xdg-desktop-menu twice (once for the program group and once for the program itself), and so you have to supply two different .directory files as well. If the program group is empty, it makes sense that the desktop hides it.</p> <p>(But maybe I completely misunderstood you here :-) and I've never used xdg-desktop-menu myself anyway).</p> http://stackoverflow.com/questions/174069/adding-a-new-application-group-in-linux/174087#174087 1 Answer by oliver for Adding a new application group in linux oliver 2008-10-06T12:35:47Z 2008-10-06T12:35:47Z <p>Maybe xdg-desktop-menu does that? See <code>man xdg-desktop-menu</code> or <a href="http://manpages.ubuntu.com/manpages/hardy/en/man1/xdg-desktop-menu.html" rel="nofollow">http://manpages.ubuntu.com/manpages/hardy/en/man1/xdg-desktop-menu.html</a> .</p> http://stackoverflow.com/questions/155930/launch-web-page-from-my-application-in-linux/173901#173901 0 Answer by oliver for Launch web page from my application in Linux oliver 2008-10-06T11:09:49Z 2008-10-06T11:09:49Z <p>A note for xdg-open: check <a href="http://portland.freedesktop.org/wiki/" rel="nofollow">http://portland.freedesktop.org/wiki/</a> , section "Using Xdg-utils"; it states that you can include the xdg-open script in your own application and use that as fallback in case the target system doesn't have xdg-open already installed.</p> http://stackoverflow.com/questions/140217/how-do-you-use-gdb-to-debug-your-code/140448#140448 3 Answer by oliver for How do you use gdb to debug your code? oliver 2008-09-26T16:10:08Z 2008-09-26T16:10:08Z <p>Some hints:</p> <ul> <li>use a graphical frontend (kdbg is quite good, ddd is at least better than command-line gdb, kdevelop has a nice gdb frontend but has some bgs, nemiver looks quite nice as well but is still in the works)</li> <li>make sure to have debug symbols and source code for all important parts (your own code and also some system libs) <ul> <li>on RedHat, you can install the -debuginfo packages to make both symbols and source code magically appear in the debugger - really cool because you can looks into libc function calls etc.</li> <li>on Debian/Ubuntu, you can install the -dbg packages to get symbols; installing appropriate source files for system packages seems to be difficult, though</li> </ul></li> <li>I tend to add assert() and abort() calls in places that should not be reached, or in places that I want to study (some kind of heavy-weight breakpoint)</li> <li>ideally the assert() or abort() calls should be wrapped in some method or macro that only enables them in Debug releases, or even better that only enables them if a certain env var is set</li> <li>install a signal handler for SIGSEGV and SIGABRT; personally I check if a certain env var is set before installing the handlers; and in the handler I execute a hardcoded external command which usually lives somewhere in ~/.local/bin/; that command might then start kdbg and attach it to the crashing app. Voila, debugger pops up the moment your app does something bad.</li> <li>If you use unit tests, you could similarly attach a debugger whenever a test case fails, to inspect the app then.</li> </ul> http://stackoverflow.com/questions/139686/should-local-variable-initialisation-be-mandatory/139858#139858 0 Answer by oliver for Should Local Variable Initialisation Be Mandatory? oliver 2008-09-26T14:25:36Z 2008-09-26T14:25:36Z <p>Sometimes a variable is used to "collect" the result of a longer block of nested ifs/elses... In those cases I sometimes keep the variable uninitialized, because it <em>should</em> be initialized later by one of the conditional branches.</p> <p>The trick is: if I leave it uninitialized at first and then there's a bug in the long if/else block so the variable is never assigned, I can see that bug in Valgrind :-) which of course requires to frequently run the code (ideally the regular tests) through Valgrind.</p> http://stackoverflow.com/questions/139605/where-to-find-packages-names-and-versions-for-redhat/139617#139617 0 Answer by oliver for Where to find packages names and versions for RedHat? oliver 2008-09-26T13:51:55Z 2008-09-26T13:51:55Z <p>For starters: <a href="http://distrowatch.com/table.php?distribution=redhat" rel="nofollow">http://distrowatch.com/table.php?distribution=redhat</a> has a list of the important versions, but certainly does not list all package versions.</p> http://stackoverflow.com/questions/133991/what-is-still-missing-in-our-programmer-toolbox/134054#134054 1 Answer by oliver for What is still missing in our programmer toolbox? oliver 2008-09-25T15:36:35Z 2008-09-25T15:36:35Z <p>Better bridges to end users; bug trackers are a good start, but it would be nice if lots of end users could directly and effectively influence a product and add their own ideas.</p> http://stackoverflow.com/questions/133991/what-is-still-missing-in-our-programmer-toolbox/134030#134030 0 Answer by oliver for What is still missing in our programmer toolbox? oliver 2008-09-25T15:33:08Z 2008-09-25T15:33:08Z <p>Debuggers, and similar tools for peeking into an application (like Valgrind)</p> http://stackoverflow.com/questions/128244/whats-the-first-thing-you-trip-up-on-when-learning-a-new-language/128345#128345 2 Answer by oliver for What's the first thing you 'trip up on' when learning a new language. oliver 2008-09-24T16:55:58Z 2008-09-24T16:55:58Z <ul> <li>write Hello World app (skills: basic app skeleton; displaying text)</li> <li>write a number guessing game where the computer chooses a random number between 1 and 100, and you have to guess it, and the computer says "lower" or "higher" (skills: user input; using standard library functions (for random numbers); conditionals and loops; displaying numbers as formatted text)</li> <li>write a graphical application which displays a circle of (like) eight points and draws lines from each point to each other point (skills: graphical output; loops inside loops; mathematical functions (sin/cos); arrays (for storing the positions of the points) )</li> </ul> <p>However, I usually learn a programming language with a specific goal in mind, so after the number guessing game I usually start writing the actual program I wanted to write in the first place.</p> http://stackoverflow.com/questions/121326/what-does-the-gdb-backtrace-message-0x0000000000000000-in-mean/121457#121457 0 Answer by oliver for What does the GDB backtrace message "0x0000000000000000 in ?? ()" mean? oliver 2008-09-23T14:42:00Z 2008-09-23T14:42:00Z <p>Maybe the bug that caused the crash has broken the stack (overwritten parts of the stack)? In that case, the backtrace might be useless; no idea what to do in that case...</p> http://stackoverflow.com/questions/582192/simulated-dual-4x3-monitors-on-single-widescreen-under-linux Comment by oliver on Simulated dual 4x3 monitors on single widescreen under Linux oliver 2009-02-24T16:51:02Z 2009-02-24T16:51:02Z Sounds interesting nonetheless... I think you could experiment with starting two Xnest X servers, or two Xvnc+vncviewer sets - these should give you two X displays on the &quot;real&quot; display. http://stackoverflow.com/questions/341241/are-closed-source-applications-welcomed-in-the-linux-community/341361#341361 Comment by oliver on Are closed source applications "welcomed" in the Linux community? oliver 2008-12-05T15:37:54Z 2008-12-05T15:37:54Z For a positive example, look at the Opera packages for Debian: they offer a real APT repository (deb.opera.com) and their public key, and so I get Opera updates together with system updates, without any hassle. For me, that's a very important point about software from ISVs. http://stackoverflow.com/questions/279170/utf-8-all-the-way-through/285036#285036 Comment by oliver on UTF-8 all the way through... oliver 2008-11-20T17:47:32Z 2008-11-20T17:47:32Z Shouldn't it also be possible to specify the charset in the HTTP headers? Probably needs some config option for the webserver... http://stackoverflow.com/questions/305905/how-can-i-kill-a-whole-process-tree-with-perl/305919#305919 Comment by oliver on How can I kill a whole process tree with Perl? oliver 2008-11-20T16:33:56Z 2008-11-20T16:33:56Z Which processes do belong to a process group? I'm using IPC::Open3 to start a process (which on Solaris runs the command inside sh -c), and I want to kill the sh and my actual command and all further subprocesses. What if the process group contains even the Perl interpreter? Can't that happen? http://stackoverflow.com/questions/258509/etymology-of-linux-commands/258645#258645 Comment by oliver on Etymology of linux commands oliver 2008-11-03T15:36:52Z 2008-11-03T15:36:52Z In the moreutils package, there's also a &quot;pee&quot; command: &quot;tee standard input to pipes&quot; http://stackoverflow.com/questions/242697/do-stdout-output-with-specific-speed/242799#242799 Comment by oliver on do stdout output with specific speed oliver 2008-10-28T11:06:57Z 2008-10-28T11:06:57Z Nice stuff - thanks! How about putting it up on some revision control site (github, launchpad, sourceforge...) so people can add changes? Also, I think for performance it would be useful to write() a whole block of data at once. http://stackoverflow.com/questions/242697/do-stdout-output-with-specific-speed/242703#242703 Comment by oliver on do stdout output with specific speed oliver 2008-10-28T10:16:57Z 2008-10-28T10:16:57Z good idea - something like &quot;while [ true ]; do echo -n &quot;1234567890&quot;; usleep 10000; done&quot; already works. http://stackoverflow.com/questions/209305/how-to-discard-incoming-packets-in-raw-socket/219946#219946 Comment by oliver on How to discard incoming packets in raw socket? oliver 2008-10-22T10:14:39Z 2008-10-22T10:14:39Z Yes, that's what I ended up to do... Instead of calling sleep(), I use select() with a timeout, and if the select() call indicates incoming data, the data is received with recvfrom() and ignored, and a new select() is made, until the sleep time is over. http://stackoverflow.com/questions/205064/is-there-a-way-to-change-another-processs-environment-variables/205082#205082 Comment by oliver on Is there a way to change another process's environment variables? oliver 2008-10-16T16:46:30Z 2008-10-16T16:46:30Z Which still leaves the question: where are env var values actually stored? Is that done by the kernel? Or does the shell store the values, and /proc/&lt;pid&gt;/environ gets them from there? http://stackoverflow.com/questions/207047/what-linux-unix-commands-are-outdated-and-have-powerful-alternatives Comment by oliver on What Linux/Unix commands are outdated and have powerful alternatives? oliver 2008-10-16T16:29:57Z 2008-10-16T16:29:57Z You probably still need tail for use in shell scripts (though one could argue that shell scripting itself is pretty much outdated and has/should have been replaced with Perl, Python or other &quot;real&quot; languages long ago :)