User Tom - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T10:56:19Zhttp://stackoverflow.com/feeds/user/6839http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/65820/unit-testing-c-code/84848#848480Answer by Tom for Unit Testing C CodeTom2008-09-17T16:04:22Z2009-11-19T09:50:03Z<p>I voted for <a href="http://cxxtest.tigris.org/" rel="nofollow">CXXTest</a> but can't edit the response. So'll I'll just add it here.</p>
<p>One of the great features of CXXTest is it's support for Mocks. As it turns out the Mocks in CXXTest are really only meant for regular functions so they work really well for C.</p>
<p>One problem is that you need to use namespaces when invoking the Mocks. This may or may not be a problem for you.</p>
http://stackoverflow.com/questions/1753042/how-can-i-schedule-some-code-to-run-after-all-atexit-functions-are-completed/1753088#17530880Answer by Tom for How can I schedule some code to run after all '_atexit()' functions are completedTom2009-11-18T01:41:44Z2009-11-18T01:50:08Z<p>atexit is processed by the C/C++ runtime (CRT). It runs after main() has already returned. Probably the best way to do this is to replace the standard CRT with your own.</p>
<p>On Windows tlibc is probably a great place to start: <a href="http://www.codeproject.com/KB/library/tlibc.aspx" rel="nofollow">http://www.codeproject.com/KB/library/tlibc.aspx</a></p>
<p>Look at the code sample for mainCRTStartup and just run your code after the call to _doexit();
but before ExitProcess.</p>
<p>Alternatively, you could just get notified when ExitProcess gets called. When ExitProcess gets called the following occurs (according to <a href="http://msdn.microsoft.com/en-us/library/ms682658%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms682658%28VS.85%29.aspx</a>):</p>
<ol>
<li>All of the threads in the process, except the calling thread, terminate their execution without receiving a DLL_THREAD_DETACH notification.</li>
<li>The states of all of the threads terminated in step 1 become signaled.</li>
<li>The entry-point functions of all loaded dynamic-link libraries (DLLs) are called with DLL_PROCESS_DETACH.</li>
<li>After all attached DLLs have executed any process termination code, the ExitProcess function terminates the current process, including the calling thread.</li>
<li>The state of the calling thread becomes signaled.</li>
<li>All of the object handles opened by the process are closed.</li>
<li>The termination status of the process changes from STILL_ACTIVE to the exit value of the process.</li>
<li>The state of the process object becomes signaled, satisfying any threads that had been waiting for the process to terminate.</li>
</ol>
<p>So, one method would be to create a DLL and have that DLL attach to the process. It will get notified when the process exits, which should be after atexit has been processed.</p>
<p>Obviously, this is all rather hackish, proceed carefully.</p>
http://stackoverflow.com/questions/84404/using-visual-studios-cl-from-a-normal-command-line2Using Visual Studio's 'cl' from a normal command lineTom2008-09-17T15:22:38Z2009-07-13T18:55:44Z
<p>Visual Studio 2003 and 2005 (and perhaps 2008 for all I know) require the command line user to run in the 'Visual Studio Command Prompt'. When starting this command prompt it sets various environment variables that the C++ compiler, cl, uses when compiling.</p>
<p>This is not always desirable. If, for example, I want to run 'cl' from within Ant, I'd like to avoid having to run Ant from within the 'Visual Studio Command Prompt'. Running vcvars32.bat isn't an option as the environment set by vcvars32.bat would be lost by the time cl was run (if running from within Ant).</p>
<p>Is there an easy way to run cl without having to run from within the Visual Studio command prompt?</p>
http://stackoverflow.com/questions/837860/how-can-i-add-a-horizontal-scrollbar-to-a-vba-listbox1How can I add a horizontal scrollbar to a VBA ListBoxTom2009-05-08T01:32:41Z2009-06-08T10:45:55Z
<p>I'd like to add a horizontal scrollbar to a VBA ListBox.</p>
<p>It appears that the built in ListBox does not add a horizontal scrollbar automatically. I have a number of fields whose contents exceed the width of the ListBox and are thus unreadable to the user.</p>
<p>I found <a href="http://support.microsoft.com/kb/192184" rel="nofollow">this article</a>, however the code fails, due to accessing hwnd of the ListBox (which is apparently not available in VBA). I'd rather not write a native DLL to accomplish this as I suspect there is a better way.</p>
<p>Any idea on how I can add a horizontal scrollbar to a VBA ListBox? </p>
<p>I'm open to the idea of using an alternate control rather than getting it to work with the ListBox specifically.</p>
http://stackoverflow.com/questions/110341/tcp-handshake-with-sockraw-socket/959855#9598550Answer by Tom for TCP handshake with SOCK_RAW socketTom2009-06-06T14:53:24Z2009-06-06T14:53:24Z<p>Depending on what you're trying to do it may be easier to get existing software to handle the TCP handshaking for you.</p>
<p>One open source IP stack is lwIP (<a href="http://savannah.nongnu.org/projects/lwip/" rel="nofollow">http://savannah.nongnu.org/projects/lwip/</a>) which provides a full tcp/ip stack. It is very possible to get it running in user mode using either SOCK_RAW or pcap.</p>
http://stackoverflow.com/questions/747017/how-to-disable-windows-tcp-ip-stack-in-vc-programmatically/959822#9598221Answer by Tom for How to Disable Windows TCP/IP Stack in VC++ [Programmatically]Tom2009-06-06T14:39:04Z2009-06-06T14:39:04Z<p>Disabling TCP/IP is not that uncommon. We tend to disable it on our host machine so that the VMs can have uninterrupted use of the IP stack.</p>
<p>You can disable it manually by going to the connection properties page for the adapter in question and unchecking the TCP/IP box (there may be more than one if IPv6 is installed).</p>
<p>After some brief investigation it looks as though WMI does not support changing this property programatically. However, it looks as though HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Linkage\Bind is the key where each adapter with TCP/IP enabled is stored. Removing the adapter from that list (using the win32 registry APIs) may disable TCP/IP. </p>
<p>Be careful when testing this...</p>
http://stackoverflow.com/questions/827236/what-is-the-stl/827255#8272556Answer by Tom for What is the STL?Tom2009-05-05T22:46:23Z2009-05-05T22:46:23Z<p>The STL is the Standard Template Library. It is a subset of the C++ standard library.</p>
<p>The STL provides generic implementations of useful algorithms and containers.</p>
<p>The containers provide any easy method of storing data in the program and then finding, sorting and performing other computations on that data.</p>
http://stackoverflow.com/questions/817975/how-can-i-get-rid-of-the-warning-with-rand-c/818273#8182732Answer by Tom for How can I get rid of the warning with rand()? (C++)Tom2009-05-03T23:01:24Z2009-05-03T23:01:24Z<p>To get rid of the warning you should use a static cast to an unsigned integer.</p>
<pre><code>srand(static_cast<unsigned int>(time(0)));
</code></pre>
<p>On a related note, the results of rand should be shifted to the right to remove any bias in the lower bits.</p>
<pre><code>int n = ((rand() >> 8) % 6) + 1;
</code></pre>
<p>Finally, in C++ the C time and standard libraries should be included as: </p>
<pre><code>#include <ctime>
#include <cstdlib>
</code></pre>
<p>This will place the functions in the appropriate namespace, 'std'.</p>
http://stackoverflow.com/questions/252417/how-can-i-use-a-dll-from-python9How can I use a DLL from PythonTom2008-10-31T02:01:48Z2009-04-18T14:54:50Z
<p>What is the easiest way to use a DLL from within Python?</p>
<p>Specifically, how can this be done without writing any additional wrapper C++ code to expose the functionality to Python?</p>
<p>Native Python functionality is strongly preferred over using a 3rd party library.</p>
http://stackoverflow.com/questions/624137/simulating-faster-time-in-linux/624168#6241686Answer by Tom for Simulating "faster time" in linuxTom2009-03-08T19:44:35Z2009-03-08T19:44:35Z<p>One approach that works best for unit testing is to abstract the way the current time is accessed in your code.</p>
<p>Instead of calling System.currentTimeMillis() directly you can provide your own implementation.</p>
<p>Something like this (pseudo-code):</p>
<pre><code>class MyTime {
private static TimeInterface CurrentTimeInterface = new DefaultTimeImpl();
public setTimeInterface(TimeInterface timeInterface) {
CurrentTimeInterface = timeInterface;
}
public int getTime() { CurrentTimeInterface.getTime(); }
}
class DefaultTimeImpl implements TimeInterface {
public int getTime() { return System.currentTimeMillis(); }
}
class TestTimeImpl implements TimeInterface {
private int CurrentTimeMillis = 0;
public int getTime() { return CurrentTimeMillis; }
public void setTime(int timeMillis) { CurrentTimeMillis = timeMillis}
public void sleep(int millis) { CurrentTimeMillis += millis; }
}
</code></pre>
<p>Then, everywhere you would have called System.getTimeMillis() instead call MyTime.getTime(). When you're testing your code simply create a TestTimeImpl and call MyTime.setTimeInterface(testTimeImpl). Then when you want time to advance call testTimeImpl.sleep() or testTimeImpl.setTime().</p>
<p>This allows you to simulate any time down to the millisecond.</p>
http://stackoverflow.com/questions/359498/how-can-i-unload-a-dll-using-ctypes-in-python1How can I unload a DLL using ctypes in Python?Tom2008-12-11T14:21:06Z2008-12-15T22:16:07Z
<p>I'm using ctypes to load a DLL in Python. This works great.</p>
<p>Now we'd like to be able to reload that DLL at runtime. </p>
<p>The straightforward approach would seem to be:
1. Unload DLL
2. Load DLL</p>
<p>Unfortunately I'm not sure what the correct way to unload the DLL is.</p>
<p>_ctypes.FreeLibrary is available, but private.</p>
<p>Is there some other way to unload the DLL?</p>
http://stackoverflow.com/questions/139261/how-to-create-a-file-with-a-given-size-in-linux/139338#1393380Answer by Tom for How to create a file with a given size in Linux?Tom2008-09-26T12:59:02Z2008-09-26T12:59:02Z<p>The trouble with the approaches using dd and perl is that they actually have to write every byte of the file. Using an approach like this you wouldn't have to.</p>
<pre><code>#include <stdio.h>
int main ()
{
FILE * pFile;
int filesize = 12345;
pFile = fopen ( "myfile.txt" , "w" );
fseek ( pFile , filesize , SEEK_SET );
fputs ( "" , pFile );
fclose ( pFile );
return 0;
}
</code></pre>
<p>This will just allocate a large file and doesn't actually need to write many bytes to do so.</p>
<p>Disclaimer: I have not compiled or tested this code.</p>
http://stackoverflow.com/questions/132930/32-vs-64-bits-whats-the-big-deal/132956#1329564Answer by Tom for 32 vs 64 bits... what's the big deal?Tom2008-09-25T12:20:04Z2008-09-25T12:20:04Z<p>In addition to the fact that 64-bit machines can easily address more memory (it isn't true to say that 32-bit machines can only access 4GB as PAE can be used in many cases to use more) the 64-bit processors also often have additional hardware registers and other hardware optimizations. These additional features can often significantly increase the performance of apps compiled for 64-bit processors, even if they don't use a lot of memory.</p>
http://stackoverflow.com/questions/84766/what-operating-systems-available-for-an-8-bit-microprocessor/89306#893062Answer by Tom for What operating systems available for an 8-bit microprocessor?Tom2008-09-18T01:54:02Z2008-09-18T01:54:02Z<p>To those suggesting state machines in place of an OS because they have little overhead, you might want to check out Contiki. It is <em>very small</em> and free. It doesn't have a traditional threading model, instead it uses ProtoThreads: <a href="http://www.sics.se/~adam/pt/" rel="nofollow">http://www.sics.se/~adam/pt/</a>.</p>
<p>ProtoThreads give you something approximating threading semantics without the overhead of a real OS with multi stacks, etc... As a bonus, <em>you don't need any sort of OS to use them</em> Contiki or otherwise.</p>
<p>We've used them on one project with great success. They really make writing complicated code much easier.</p>
http://stackoverflow.com/questions/84766/what-operating-systems-available-for-an-8-bit-microprocessor/84780#847803Answer by Tom for What operating systems available for an 8-bit microprocessor?Tom2008-09-17T15:56:51Z2008-09-17T15:56:51Z<p>I believe Contiki will work. Adam Dunkels does some really cool stuff.</p>
<p>It runs on a lot of platforms, including the Commadore 64.</p>
<p><a href="http://www.sics.se/contiki/" rel="nofollow">http://www.sics.se/contiki/</a></p>
http://stackoverflow.com/questions/62389/what-are-the-differences-between-visual-c-6-0-and-visual-c-2008/62427#624270Answer by Tom for What are the differences between Visual C++ 6.0 and Visual C++ 2008?Tom2008-09-15T12:42:27Z2008-09-15T12:42:27Z<p>Visual C++ 2008 is much more standards compliant (Visual Studio 6 doesn't support the C++ standard set in 1998).</p>
http://stackoverflow.com/questions/886585/what-does-the-object-code-file-ctr1-o-do-in-the-gcc-compiler/886613#886613Comment by Tom on What does the object code file ctr1.o do in the gcc compiler?Tom2009-06-06T16:08:27Z2009-06-06T16:08:27Zcrt0.o certainly does not contain printf.
printf is typically located in libc.a