User Len Holgate - Stack Overflowmost recent 30 from stackoverflow.com2009-12-14T23:21:44Zhttp://stackoverflow.com/feeds/user/7925http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1884722/is-there-a-way-to-wait-for-a-listening-socket-on-win32/1886528#18865280Answer by Len Holgate for Is there a way to wait for a listening socket on win32?Len Holgate2009-12-11T08:03:45Z2009-12-11T08:03:45Z<p>Personally I'd use a UDP broadcast from the server and have the "client" listening for it. The server could broadcast a UDP packet every X period whilst running and when the client gets one, if it's not already connected, it could connect. </p>
<p>This has the advantage that you can move the client onto a different machine without any issues (and since the main connection from client to server is sockets already it would be a pity to tie the client and server to the same machine simply because you selected a local IPC method for the initial bootstrap). </p>
http://stackoverflow.com/questions/1883488/is-it-better-to-rewrite-inherited-code-than-fix-it/1884411#18844110Answer by Len Holgate for Is it better to rewrite inherited code than fix it?Len Holgate2009-12-10T22:04:05Z2009-12-10T22:04:05Z<p>It's never as easy to rewrite as it seems and if you need to maintain the existing application whilst the rewrite is happening then you risk never being able to match the existing application's functionality and always being several steps behind it. It's better, IMHO, to set about a process or improvement and refactoring so that as you maintain and extend the application it slowly gets better and moves nearer to the ideal design that you may have in mind if you were able to rewrite.</p>
<p>This is hard work. It's always tempting just to hack in new changes and fixes without making things better but I've found that if you can take the extra time to add some unit tests as you go then you can slowly move even the worst '<a href="http://www.laputan.org/mud/" rel="nofollow">big ball of mud</a>' application towards something that is easier and safer to extend and maintain.</p>
<p>I'd start with the following approach:</p>
<ol>
<li>Produce a high-level report on what you think is wrong with the current system and get buy in from the project sponsors. Ideally you'll be able to point out that the delays in fixing 'simple bugs' or adding 'tiny new features' are due to X problem or Y design issue. You need this because improving things takes time and you need to be able to remind the people in power why the extra work is required. You'll possibly need to remind them regularly...</li>
<li>Ensure that everything is under source control and that you have a repeatable build and release procedure.</li>
<li>Begin adding unit tests as you make all future changes; this will initially take more time than simply hacking in a fix - the first few tests for each subsystem will probably take a substantial amount of time to get in place as you'll most probably need to fight with the code a bit to get it into a test harness. Persevere it's worth it in the end.</li>
<li>Release the changes to real users, if you can. The shorter your release cycle the more sure you are that you haven't inadvertently broken anything whilst making your last set of changes. If you HAVE broken something, add more tests and fix it.</li>
<li>Goto 3</li>
</ol>
<p>Once you get more tests in place you will be able to confidently refactor more of the application. The tests will make sure that you don't break the existing functionality and will support you as you change things. The good thing about working this way is that you'll gain an understanding of how the existing design hangs together (and assuming that it's currently providing business value then you're doing so without destroying value).</p>
<p>I worked on a system in this way for a client back in 2003 and wrote some blog posts about various aspects of it, they may be of interest and an index of these posts can be found here if you're interested: <a href="http://www.lenholgate.com/archives/000220.html" rel="nofollow">http://www.lenholgate.com/archives/000220.html</a></p>
http://stackoverflow.com/questions/1880275/good-windows-registry-wrapper-for-c/1880381#18803810Answer by Len Holgate for Good Windows Registry Wrapper for C++Len Holgate2009-12-10T11:29:03Z2009-12-10T11:29:03Z<p>I wrote one a long time ago and put it on <a href="http://www.codeproject.com/KB/system/cregistrykey.aspx" rel="nofollow">CodeProject</a>; it's comprehensive but I'd do things a bit differently these days.</p>
http://stackoverflow.com/questions/1867911/tdd-does-it-get-in-the-way-of-good-api-design/1868362#18683621Answer by Len Holgate for TDD: Does it get in the way of good API design?Len Holgate2009-12-08T17:03:06Z2009-12-08T17:03:06Z<p>I've been using TDD for several years now and I find that it drives an API design towards a more usable design by providing you with two different clients for the API from the start; you have production code and test code both of which want to drive the API in different ways.</p>
<p>It's true that sometimes I add things for the sake of making it easier to test the API but I almost always find that things that I think I'm putting in just for testability's sake are actually very useful for monitoring purposes. So, for example, a <code>FooAllocator</code> might end up with an optional constructor argument which is a monitoring interface (<code>IMonitorFooAllocations</code>) which is very useful for mocking out during testing but to enable me to take a peek inside but which also tends to be very useful when you suddenly find that you have to expose some allocation metrics to the rest of the world whilst in production. I now tend to think of the extra bits that I might want to add to enable easy testing in terms of their dual use for optional production monitoring. I generally write server code and being able to expose the internals of things as perfmon counters is VERY useful...</p>
<p>Likewise you're correct to say that often the objects that makes up an API might take some other objects explicitly rather than reaching out and getting them from a known place but this is a good thing. Trust me, once you get used to dealing with explicit dependencies you wont want to go back to having to dig through class after class to work out how and why your <code>Widgets</code> are accessing active directory when there's no hint in the API that they would want to do such a thing. Also it's often the case that you break open these dependency relationships during design and testing and then hide them again as you put all of the pieces together. You still 'parameterize from above' but more often than not an API's object model might mean that you never really see the 'above' as a user of the API. You end up with one place to configure the API with the things that it needs and often this looks no different to how it would have looked if you had a mass of singletons and globals and hidden dependencies.</p>
<p>But remember, TDD is a tool, when it doesn't fit don't use it. </p>
http://stackoverflow.com/questions/1860796/your-thoughts-on-large-scale-c-software-design/1861111#18611111Answer by Len Holgate for Your thoughts on "Large Scale C++ Software Design"Len Holgate2009-12-07T16:28:44Z2009-12-07T16:28:44Z<p>I read it a long time ago but remember getting quite a lot from it; though as MadKeithV points out, that may just have been that I knew less then ;)</p>
<p>Certainly from a "how do I reduce how long this takes to build" perspective it's has lots of useful stuff, especially around reducing compile time dependencies, though possibly some of it is no longer relevant, or even possible, given how much templates are used these days.</p>
<p>And no, you can't have my copy either :)</p>
http://stackoverflow.com/questions/1854302/is-assert-evil/1858494#18584941Answer by Len Holgate for Is assert evil?Len Holgate2009-12-07T07:56:01Z2009-12-07T07:56:01Z<p>Yes, asserts are evil. </p>
<p>Often they get used in places where proper error handling should be used. Get used to writing proper production quality error handling from the start!</p>
<p>Usually they get in the way of writing unit tests (unless you write a custom assert that interacts with your test harness). This is often because they are used where proper error handling should be used.</p>
<p>Mostly they get compiled out of release builds which means that none of their "testing" is available when you're running the code that you actually release; given that in multi-threaded situations the worst problems often only show up in release code this can be bad.</p>
<p>Sometimes they're a crutch for otherwise broken designs; i.e. the design of the code allows a user to call it in a way that it shouldn't be called and the assert "prevents" this. Fix the design! </p>
<p>I wrote about this more on my blog back in 2005 here: <a href="http://www.lenholgate.com/archives/000500.html" rel="nofollow">http://www.lenholgate.com/archives/000500.html</a></p>
http://stackoverflow.com/questions/1855951/sharing-object-by-reference-or-pointer/1856015#18560151Answer by Len Holgate for Sharing object by reference or pointer Len Holgate2009-12-06T17:44:59Z2009-12-06T18:40:28Z<p>If B is optional then it can be represented as a pointer. If B is required then it should be represented as a reference. </p>
<p>If possible try and avoid "two stage construction" with the initialise method. If that can't be done then internally to A you need to treat B as optional and so store it as a pointer and test wherever you might want to use it. </p>
<p>If your initialise method (or, ideally, constructor) requires a B then you should pass it in as a reference.</p>
<p>This all assumes that you know who actually owns B; perhaps B owns the instances of A and initialises them with references to itself or perhaps B is owned by something that also owns all of the instances of A that refer to this instance of B. </p>
<p>If the objects of A own B jointly then you should use something like a boost::shared_ptr to make the shared ownership explicit; assuming that B is dynamically allocated with new.</p>
http://stackoverflow.com/questions/1846385/running-a-windows-program-and-detect-when-it-ends-with-c/1847146#18471461Answer by Len Holgate for Running a Windows program and detect when it ends with C++Len Holgate2009-12-04T14:07:56Z2009-12-04T14:07:56Z<p>An alternative approach which offers even more control is to use the Win32 Job API, see <a href="http://msdn.microsoft.com/en-us/library/ms682409%28VS.85%29.aspx" rel="nofollow">CreateJobObject()</a> and <a href="http://msdn.microsoft.com/en-us/library/ms681949%28VS.85%29.aspx" rel="nofollow">AssignProcessToJobObject()</a>. This would allow you to monitor your spawned process asynchronously using an IO Completion Port using <a href="http://msdn.microsoft.com/en-us/library/ms686216%28VS.85%29.aspx" rel="nofollow">SetInformationJobObject()</a> it's more complex and probably more than you need but it does give you much more control over the spawned processes.</p>
http://stackoverflow.com/questions/1845870/why-project-dependency-affect-linker-settings/1845899#18458991Answer by Len Holgate for why project dependency affect linker settingsLen Holgate2009-12-04T09:41:13Z2009-12-04T09:41:13Z<p>If you set your project dependencies correctly then you don't need to add any additional dependencies in the linker tab. What's more, dependencies set correctly ensure that the matching build configuration is linked rather than you having to make sure you set the correct additional directories in the linker. </p>
<p>In general it's best to use the project dependencies to organise your linkage where possible and only add truly 'additional' libraries directly to the linker tab.</p>
http://stackoverflow.com/questions/1816332/creating-an-802-11-transmitter-and-reading-the-data-from-a-wifi-router/1841272#18412720Answer by Len Holgate for Creating an 802.11 transmitter and reading the data from a WiFi router.Len Holgate2009-12-03T16:53:04Z2009-12-03T16:53:04Z<p>Sounds like a job for XBee's (see <a href="http://www.digi.com/products/wireless/point-multipoint/xbee-series1-module.jsp" rel="nofollow">here</a>.) These are designed to operate as low power wireless sensors. If you're lucky you wont even need an external microcontroller as they can transmit data that they read on their own I/O pins.</p>
<p>There are concentrators available that allow them to be connected to normal wired or wifi networks.</p>
http://stackoverflow.com/questions/1826228/building-a-multithreaded-work-queue-consumer-producer-in-c/1834721#18347210Answer by Len Holgate for Building a multithreaded work-queue (consumer/producer) in C++Len Holgate2009-12-02T18:03:38Z2009-12-02T18:03:38Z<p>If you are on Windows and want a queue that is efficient in terms of how it manages the threads that are allowed to run to process items from it then take a look at IO Completion Ports (see <a href="http://msdn.microsoft.com/en-us/library/aa365198%28VS.85%29.aspx" rel="nofollow">here</a>). My <a href="http://www.lenholgate.com/archives/000637.html" rel="nofollow">free server framework</a> includes a task queue implementation that's based on IOCPs and that may also be of interest if you intend to go down this route; though it's possibly too specialised for what you want.</p>
http://stackoverflow.com/questions/1832809/how-to-catch-divide-by-zero-error-in-visual-studio-2008-c/1833378#18333783Answer by Len Holgate for How to catch divide-by-zero error in Visual Studio 2008 C++?Len Holgate2009-12-02T14:51:22Z2009-12-02T14:51:22Z<p>Assuming that you can't simply fix the cause of the exception generating code (perhaps because you don't have the source code to that particular library and perhaps because you can't adjust the input params before they cause a problem).</p>
<p>You have to jump through some hoops to make this work as you'd like but it can be done.</p>
<p>First you need to install a Structured Exception Handling translation function by calling <code>_set_se_translator()</code> (see <a href="http://msdn.microsoft.com/en-us/library/5z4bw5h5%28VS.80%29.aspx" rel="nofollow">here</a>) then you can examine the code that you're passed when an SEH exception occurs and throw an appropriate C++ exception. </p>
<pre><code>void CSEHException::Translator::trans_func(
unsigned int code,
EXCEPTION_POINTERS *pPointers)
{
switch (code)
{
case FLT_DIVIDE_BY_ZERO :
throw CMyFunkyDivideByZeroException(code, pPointers);
break;
}
// general C++ SEH exception for things we don't need to handle separately....
throw CSEHException(code, pPointers);
}
</code></pre>
<p>Then you can simply catch your <code>CMyFunkyDivideByZeroException()</code> in C++ in the normal way. </p>
<p>Note that you need to install your exception translation function on every thread that you want exceptions translated.</p>
http://stackoverflow.com/questions/1145220/some-overlaps-using-wsasend-not-returning-in-a-timely-manner-using-getqueuedcompl/1833039#18330390Answer by Len Holgate for some OVERLAPS using WSASend not returning in a timely manner using GetQueuedCompletionStatus?Len Holgate2009-12-02T13:53:27Z2009-12-02T13:53:27Z<p><code>WSASend()</code> can fail to complete in a timely manner if the TCP window is full. In this case the stack can't send any more data so your <code>WSASend()</code> waits and your completion doesn't occur until the TCP stack CAN send more data.</p>
<p>If you happen to have a protocol between your client and server that has no flow control built into the protocol itself AND you aren't doing any flow control yourself based on write completions and are just sending data as fast as your server can send then you may get to a point where either the network or your client can't keep up and TCP flow control kicks in (when the TCP window gets full). If you continue to just fire off data asynchronously with additional calls to <code>WSASend()</code> then eventually you'll chew your way through all of the non-paged memory on the machine and at that point all bets are off (chances are high that a driver may cause the box to bluescreen).</p>
<p>So, in summary, completions from overlapped socket writes can and will sometimes take longer to come back than you may expect. In your example, I expect that the completions that you get when you close the socket are all failures?</p>
<p>I talk about this some more on my blog; here: <a href="http://www.lenholgate.com/archives/000788.html" rel="nofollow">http://www.lenholgate.com/archives/000788.html</a></p>
http://stackoverflow.com/questions/1832888/socket-queue-problem/1832938#18329380Answer by Len Holgate for socket queue problem?Len Holgate2009-12-02T13:33:53Z2009-12-02T13:33:53Z<p>That's pretty vague, some more detail (the errors that you're getting on the client, and/or the server) or some code (how you're accepting connections on the server?) might help.</p>
<p>In the meantime, I'll throw some random guesses at you...</p>
<p>If you're creating and destroying connections from your clients quickly and you're testing your server by running lots of clients on the same machine then you may be suffering from running out of sockets due to <code>TIME_WAIT</code>. Likewise if you're testing your server by creating lots of client connections (generally more than 4000) from the same windows machine then you may be running into the default <code>MAX_USER_PORT</code> setting which severely limits the number of concurrent outbound connections that you can make at one time.</p>
http://stackoverflow.com/questions/1831744/problem-with-tcplistener/1831881#18318812Answer by Len Holgate for Problem with TCPListenerLen Holgate2009-12-02T10:01:09Z2009-12-02T10:01:09Z<p>You're listening on 127.0.0.1 which is the loopback address which is a special address that means 'this computer'. This means that you will only accept connections that are made on the same machine as the server is running on.</p>
<p>You need to listen on one (or more) of the server's real ip addresses.</p>
http://stackoverflow.com/questions/1831538/dump-the-interface-exposed-by-a-com-object/1831595#18315953Answer by Len Holgate for Dump the interface exposed by a COM objectLen Holgate2009-12-02T08:57:36Z2009-12-02T09:42:52Z<p>It's not actually possible to build such a tool for ANY COM object, you might have some luck with specific objects. If a type library is available then you could use <a href="http://www.microsoft.com/downloads/details.aspx?familyid=5233b70d-d9b2-4cb5-aeb6-45664be858b6&displaylang=en" rel="nofollow">OLEView</a> or you can programatically open and traverse the type library itself. Bear in mind that the contents of the type library is just what the developer wanted to include in it; there's nothing to stop objects implementing more interfaces than their type libraries say they do.</p>
<p>For objects without type libraries it's impossible to produce a general purpose tool:</p>
<ul>
<li>Given the way that <code>QueryInterface</code> works you would have to ask the object under investigation if it supports every interface possible. Where would such a tool obtain a list of all possible interfaces that the object in question could support? Whilst it's true that some interfaces are registered in the registry due to proxy requirements not all interfaces are and it's by no means a requirement that they should be.</li>
<li>Once you know that an object supports a given interface how do you work out what methods that interface supports? If the interface derives from IDispatch then this is possible as that's the purpose of <code>IDispatch</code>, but for interfaces derived from <code>IUnknown</code> there is no way to programatically discover things about the interface.</li>
</ul>
<p>You also have the added problem that some objects may have additional interfaces implemented for them by the proxy layer, for example, if an interface has been proxied then you will also be able to <code>QueryInterface</code> from it to <code>IProxyManager</code> though the object itself does not implement this interface (it's part of the proxy).</p>
http://stackoverflow.com/questions/1824465/set-timeout-for-winsock-recvfrom/1825074#18250741Answer by Len Holgate for Set timeout for winsock recvfromLen Holgate2009-12-01T09:39:02Z2009-12-01T09:39:02Z<p>I'm guessing Windows from the WSASocket() call. If so you're passing the timeout incorrectly.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms740476%28VS.85%29.aspx" rel="nofollow">MSDN</a> says that SO_RCVTIMEO takes an int param that specifies the timeout in ms. </p>
http://stackoverflow.com/questions/1824773/how-to-test-a-tcp-server-implementation/1824817#18248172Answer by Len Holgate for How to test a TCP server implementation?Len Holgate2009-12-01T08:46:48Z2009-12-01T08:53:21Z<p>I have a free tool that might help you. I use it for testing servers that are built with my C++ server framework. The tool is available here: <a href="http://www.lenholgate.com/archives/000568.html" rel="nofollow">http://www.lenholgate.com/archives/000568.html</a>. It allows you to create a configurable number of connections to your target server at a configurable rate and then send data on each connection (again at a configurable rate). </p>
<p>If find that the best way to use it is to run it on a different machine to the server (fairly obvious I know, but) and possibly to run multiple copies on multiple different machines. Note that if you find you can't make more than around 4000 connections then it's quite likely that you need to tweak your <code>MAX_USER_PORT</code> registry setting on the machine that's running the client.</p>
<p>Once you've tested your TCP code you may find you need to test the protocol that your server supports. I wrote a test tool for this kind of situation in C# which is available on CodeProject (<a href="http://www.codeproject.com/KB/IP/testingsocketservers.aspx" rel="nofollow">http://www.codeproject.com/KB/IP/testingsocketservers.aspx</a>). This allows you to write a "plugin" to support your protocol and handles the protocol agnostic stuff (lots of connections, breaking messages up so that you get fragmented reads, etc) for you. The design is a rather nasty thread-per-connection design and for higher numbers of connections you'd be better off reimplementing something using an async design but I have my C++ tools for that so I never go around to changing this test program... </p>
http://stackoverflow.com/questions/1820565/revert-changes-to-ui-in-visual-studio/1820579#18205790Answer by Len Holgate for Revert changes to UI in Visual StudioLen Holgate2009-11-30T15:44:10Z2009-11-30T15:44:10Z<p>it's probably "Edit->Advanced->View White space" which is toggled with CTRL+R CTRL+W</p>
http://stackoverflow.com/questions/1819509/multithreading-wont-work-as-expected/1819671#18196711Answer by Len Holgate for Multithreading won't work as expectedLen Holgate2009-11-30T12:54:40Z2009-11-30T12:54:40Z<p>The reason that your <code>cout</code> calls aren't showing up is possibly because you're supplying the wrong parameters to the linker. Are you specifying <code>/SUBSYSTEM:CONSOLE</code> ? (System tab of the Linker properties). If not then you're not telling the operating system to create a console for the program, you may be telling it it's a windows program, and if you program doesn't have a console then you wont see your programs <code>cout</code> output... </p>
<p>Once you can see your debug... </p>
<p>I assume you are connecting to your test program from a client of some sort? Nothing will happen until you connect to your program which will cause the call to Accept() to return.</p>
<p>By the way, <code>system("pause");</code> is probably the worst way to achieve what you want but I assume you're only doing that because you can't get <code>cin</code> to work... </p>
http://stackoverflow.com/questions/677155/i-o-completion-port-how-to-free-per-socket-context-and-per-i-o-context/1809794#18097940Answer by Len Holgate for I/O Completion Port, How to free Per Socket Context and Per I/O Context?Len Holgate2009-11-27T17:07:05Z2009-11-27T17:07:05Z<p>I use reference counting on all of my per socket and per I/O data structures. It makes this kind of thing easy as they are deleted when their references drop to 0.</p>
http://stackoverflow.com/questions/1798262/shutdown-exception-handling-for-win32-c/1804272#18042721Answer by Len Holgate for Shutdown exception handling for Win32/C++Len Holgate2009-11-26T15:20:19Z2009-11-26T15:20:19Z<p>What operating system are they running?</p>
<p>I assume you're setting the error mode using something like</p>
<p><code>::SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX | SEM_NOOPENFILEERRORBOX);</code></p>
<p>to make sure that windows isn't jumping in with its own error handling?</p>
http://stackoverflow.com/questions/1798262/shutdown-exception-handling-for-win32-c/1799928#17999281Answer by Len Holgate for Shutdown exception handling for Win32/C++Len Holgate2009-11-25T21:03:27Z2009-11-25T21:03:27Z<p>It could be that STL code is being executed during the destruction of global variables at program shutdown time and perhaps (depending on the version of STL that you're using) some global variables that it requires have already been destroyed.</p>
<p>I've seen this with VS2008's STL. There are some STL lock objects that are created via a file level static during start up.</p>
<p>Are you using STL in your error handler functions? It could be that one of these is going off late in program shutdown and causing the problem. </p>
http://stackoverflow.com/questions/1782902/intermittent-issues-with-win32-named-events/1783779#17837792Answer by Len Holgate for Intermittent issues with Win32 named eventsLen Holgate2009-11-23T15:19:25Z2009-11-23T15:19:25Z<p>Do you create the event in your JobManager and then open it in the 'JobLeader'? If not, how do you communicate the event handle (and/or name) between the two processes?</p>
<p>My gut tells me it's a race condition... </p>
http://stackoverflow.com/questions/1769350/io-completion-ports-how-does-wsarecv-work/1770325#17703251Answer by Len Holgate for IO Completion ports: How does WSARecv() work?Len Holgate2009-11-20T13:06:08Z2009-11-20T13:06:08Z<blockquote>
<p>(1) The first problem is that the
server basically receives data from
clients but I never know if a complete
message was received.</p>
</blockquote>
<p>Your recv calls can return anywhere from 1 byte to the whole 'message'. You need to include logic that works out when it has enough data to work out the length of the complete 'message' and then work out when you actually have a complete 'message'. Whilst you do NOT have enough data you can reissue a recv call using the same memory buffer but with an updated WSABUF structure that points to the end of the data that you have already recvd. In that way you can accumulate a full message in your buffer without needing to copy data after every recv call completes. </p>
<blockquote>
<p>(2) If WSARecv() is commented out in
the code snippet below, the program
still receives data. What does that
mean? Does it mean that I don't need
to call WSARecv() at all?</p>
</blockquote>
<p>I expect it just means you have a bug in your code...</p>
<p>Note that it's 'better' from a scalability point of view not to use the event in the overlapped structure and instead to associate the socket with the IOCP and allow the completions to be posted to a thread pool that deals with your completions.</p>
<p>I have a free IOCP client/server framework available on my blog, here: <a href="http://www.lenholgate.com/archives/000637.html" rel="nofollow">http://www.lenholgate.com/archives/000637.html</a> which may give you some hints and a series of articles on CodeProject (first one is here: <a href="http://www.codeproject.com/KB/IP/jbsocketserver1.aspx" rel="nofollow">http://www.codeproject.com/KB/IP/jbsocketserver1.aspx</a>) where I deal with the whole 'reading complete messages' problem (see "Chunking the byte stream").</p>
http://stackoverflow.com/questions/1761197/how-can-i-jump-relative-to-the-pc-using-the-gnu-assembler-for-avr/1763459#17634590Answer by Len Holgate for How can I jump relative to the PC using the gnu assembler for AVR?Len Holgate2009-11-19T13:57:57Z2009-11-19T13:57:57Z<p>I'm assuming that <code>rjmp PC+2</code> doesnt work in avr-as ? That's how I'd do it in AVR Studio...</p>
http://stackoverflow.com/questions/1726181/asynchronous-address-resolution-in-winsock/1728298#17282980Answer by Len Holgate for Asynchronous address resolution in winsock?Len Holgate2009-11-13T10:04:40Z2009-11-18T20:33:57Z<p>Unfortunately there isn't at present, although <a href="http://msdn.microsoft.com/en-us/library/ms738518%28VS.85%29.aspx" rel="nofollow">GetAddrInfoEx()</a> has placeholders for all the right things for async operation via all of the 'usual' routes (including IOCP) so I expect there will be eventually... Unfortunately, at this time, the docs say that all of these must be set to NULL and are marked as 'reserved'. :( </p>
<p>I'm just about to write one (have been for a while)... It's unfortunate that <code>WSAAsyncGetHostByName</code> doesn't even allow concurrent name resolution, so it's pretty useless as a base for what I want; but, then again, since it doesn't handle IPv6 that also makes it pretty useless to me. I expect I'll start from scratch; possibly using something like <a href="http://sourceforge.net/projects/adns/" rel="nofollow">this</a> (beerware) as a base.</p>
http://stackoverflow.com/questions/1754515/maintaining-many-socket-connections-with-a-single-thread/1754768#17547680Answer by Len Holgate for Maintaining many socket connections with a single threadLen Holgate2009-11-18T09:35:19Z2009-11-18T09:40:53Z<p>Since you mentioned C++...</p>
<p>If you're on a Windows platform then you should be looking at I/O Completion Ports for this kind of scalability. I/O Completion Ports allow you to perform asynchronous I/O on sockets (and other devices) using a small number of threads to service many thousands of I/O operations (i.e. connections). </p>
<p>The way this works is that the I/O Completion Port is, essentially, a queue but the operating system optimises how threads are released to work on work items within that queue to prevent too many threads being released at once and to ensure that a thread that has just been used is more likely to be used again. See here: <a href="http://msdn.microsoft.com/en-us/library/aa365198%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa365198(VS.85).aspx</a> for the MSDN information on IOCP and here: <a href="http://www.lenholgate.com/archives/000637.html" rel="nofollow">http://www.lenholgate.com/archives/000637.html</a> for the source code to my free client/server framework that uses IOCP under the covers.</p>
<p>As an example of the scalability possible, in this blog posting (<a href="http://www.lenholgate.com/archives/000568.html" rel="nofollow">http://www.lenholgate.com/archives/000568.html</a>) I detail how I was able to achieve over 70,000 concurrent connections on a Windows Server 2003 machine with only 760MB ram. </p>
<p>Note that the C# async socket operations use IOCPs under the hood.</p>
http://stackoverflow.com/questions/1749740/are-thread-and-process-ids-unique/1749861#17498611Answer by Len Holgate for Are thread and process ids unique?Len Holgate2009-11-17T15:59:56Z2009-11-17T15:59:56Z<p>Whilst the process id and thread id will be unique it would be better to use the database to generate the unique id for you (as R. Pate suggests) if only because you're potentially limiting your scalability unless you also include a unique machine id as well...</p>
<p>Though it's probably reasonably unlikely that one of your processes running on machine A will have the same process id and thread id as one of your processes running on machine B those are always the kinds of bugs that end up getting people out of bed at 4am to deal with the support call...</p>
http://stackoverflow.com/questions/111676/unit-testing-a-multithreaded-application/138319#1383192Answer by Len Holgate for Unit testing a multithreaded application?Len Holgate2008-09-26T08:35:16Z2009-11-14T14:55:46Z<p>Step one is to realise that often much of the code you need to unit test is orthogonal to the threading. This means that you should try and break up the code that does the work from the code that does the threading. Once that's done you can easily test the code that does the work using normal unit testing practices. But of course, you knew that.</p>
<p>The problem is then one of testing the threading side of the problem but at least now you have a point where this threading interfaces with the code that does the work and hopefully you have an interface there that you can mock. Now that you have a mock for the code that the threading code calls into I find the best thing to do is add some events to the mock (this may mean you need to hand roll your mock). The events will then be used to allow the test to syncrhonise with and block the threading code under test. </p>
<p>So, for example, lets say we have something really simple, a multi-threaded queue that processes work items. You'd mock the work item. The interface might include a 'Process()' method that the thread calls to do the work. You'd put two events in there. One that the mock sets when Process() is called and one that the mock waits on after it has set the first event. Now, in your test you can start up your queue, post a mock work item and then wait on the work item's "I'm being processed" event. If all you're testing is that process gets called then you can set the other event and let the thread continue. If you're testing something more complex, like how the queue handles multiple dispatch or something then you might do other things (like post and wait for other work items) before releasing the thread. Since you can wait with a timeout in the test you can make sure that (say) only two work items get processed in parallel, etc, etc. The key thing is that you make the tests deterministic using events that the threaded code blocks on so that the test can control when they run.</p>
<p>I'm sure your situation is more complex but this is the basic method that I use to test threaded code and it works pretty well. You can take a surprising amount of control over multi-threaded code if you mock out the right bits and put synchronisation points in.</p>
<p>Here is some more info on this kind of thing, though it's talking about a C++ codebase: <a href="http://www.lenholgate.com/archives/000306.html" rel="nofollow">http://www.lenholgate.com/archives/000306.html</a></p>
http://stackoverflow.com/questions/1854302/is-assert-evil/1859018#1859018Comment by Len Holgate on Is assert evil?Len Holgate2009-12-09T17:36:37Z2009-12-09T17:36:37ZPeter, you hit the nail on the head for why asserts aren't a good idea; "and a method for continuing from that state has either not been thought of or at least has not been implemented". I'd suggest that it should have been. Throwing in an assert rather than putting in place proper error handling is not a good plan. It may well be easier to debug, but what happens when that code path is taken by production code and your handy assert isn't present (though it's arguably just as bad if it IS still present but the debugger and developer isn't...). http://stackoverflow.com/questions/1854302/is-assert-evil/1854338#1854338Comment by Len Holgate on Is assert evil?Len Holgate2009-12-07T19:41:33Z2009-12-07T19:41:33ZJalf, I agree, which is why I use Exceptions for those kinds of violations. I can test with a unit test that expects the exceptions to occur and if somehow the code gets into that state in production then I still get an exception and we can log it and work out what went wrong. I find that assertions get in the way of unit tests (unless you have ones that integrate nicely with your test harness) and often vanish in production code. That's why IMHO unit tests and exceptions are good and assertions are evil.http://stackoverflow.com/questions/1854302/is-assert-evil/1854338#1854338Comment by Len Holgate on Is assert evil?Len Holgate2009-12-07T17:30:52Z2009-12-07T17:30:52ZMike, why not write real unit tests?http://stackoverflow.com/questions/1854302/is-assert-evil/1859018#1859018Comment by Len Holgate on Is assert evil?Len Holgate2009-12-07T17:29:09Z2009-12-07T17:29:09ZDavid, if you really need the file name and line number then you could wrap your 'throw' in a macro that provides them to the exception that's being thrown. Personally I would always use an exception over an assert for all of the reasons given in this answer and I don't think I've ever missed the fact that they don't have line numbers and filenames in them; they're just infinitely more expressive in their own right!http://stackoverflow.com/questions/1854302/is-assert-evil/1858494#1858494Comment by Len Holgate on Is assert evil?Len Holgate2009-12-07T17:25:33Z2009-12-07T17:25:33ZUnfortunately, far too often they're used for things that aren't impossible situations. This is possibly because they're taught and they're easy to throw into code. So, IF you are writing code with proper, production quality error handling, AND you're striving to design your APIs in such a way that the design minimises API error AND you're unit testing and none of these things help in that particular situation THEN your assert might not be evil...http://stackoverflow.com/questions/1855951/sharing-object-by-reference-or-pointer/1856015#1856015Comment by Len Holgate on Sharing object by reference or pointer Len Holgate2009-12-07T08:30:25Z2009-12-07T08:30:25ZI disagree. You're confusing how you wire up the objects with their lifetime. Both should be explicit and both need not be related. Saying that it should be a pointer because it's a pointer somewhere and it may become invalid is spurious; everything can be represented by an address (pointer) and everything can become invalid if you don't manage the lifetime of it. In this situation the code is being given a reference to an object that must exist; so use a reference. Inside the code due to the two stage init the object is optional, so use a pointer that can either be a valid object or null. http://stackoverflow.com/questions/1855951/sharing-object-by-reference-or-pointer/1856401#1856401Comment by Len Holgate on Sharing object by reference or pointer Len Holgate2009-12-07T07:38:35Z2009-12-07T07:38:35ZRelax, sometimes people disagree with you.http://stackoverflow.com/questions/1855951/sharing-object-by-reference-or-pointer/1856401#1856401Comment by Len Holgate on Sharing object by reference or pointer Len Holgate2009-12-06T21:16:39Z2009-12-06T21:16:39ZSorry, I completely disagree. Passing a pointer says "this can be optional". Suggesting that you assert for null just means that you need to document the fact that the function, though taking a pointer, must take a pointer that cannot be null. Accepting a reference says "this is not optional"; your argument for not using a reference because it might be null anyway is, IMHO, most likely to have been a problem for you simply because your designs are broken because you take a pointer where you should take a reference and you aren't enforcing the optional or required nature of your parameters. ;)http://stackoverflow.com/questions/1782902/intermittent-issues-with-win32-named-events/1783779#1783779Comment by Len Holgate on Intermittent issues with Win32 named eventsLen Holgate2009-12-04T11:28:31Z2009-12-04T11:28:31ZYou should be able to redesign to avoid the races; in general it's always best to create the resources that the spawned process will use in the spawning process and then connect to them in the spawned process (with checks to ensure you NEVER create new resources in the spawned process). This works well for me. By the way, I assume you're using the Win32 Job API to manage your spawned processes? If not, you should be, it works really well and is great for this kind of thing.http://stackoverflow.com/questions/1832888/socket-queue-problem/1833004#1833004Comment by Len Holgate on socket queue problem?Len Holgate2009-12-03T13:35:53Z2009-12-03T13:35:53ZAs I said before, it might be easier if you give more precise details of the error that you're getting; the error code would be useful but the full error message (assuming it's from FormatMessage() would be good enough). It is, of course, possible that the lack of precision you're showing in asking your question is also present when you're writing code and that may be the underlying cause of your problems.http://stackoverflow.com/questions/1831744/problem-with-tcplistener/1831881#1831881Comment by Len Holgate on Problem with TCPListenerLen Holgate2009-12-02T11:45:17Z2009-12-02T11:45:17ZYou could use IPAddress.Any to listen on ALL of your interfaces or the address of one particular interface to listen JUST on that interface. If you need to listen on several of your interfaces but not all then you need one listener per address.http://stackoverflow.com/questions/1818641/why-dont-win32-api-functions-have-overloads-and-instead-use-ex-as-suffix/1825189#1825189Comment by Len Holgate on Why don't win32 API functions have overloads and instead use Ex as suffix?Len Holgate2009-12-01T10:11:42Z2009-12-01T10:11:42ZBut why should Microsoft provide this kind of thing and then have to support and document it when the Win32 API is a C API and everyone can quite happily use it as such? I always wrap third party API usage with my own C++ code that deals with parameter sanity and throws exceptions on failure, etc, but my view of what's right and proper in these situations is probably very different to yours and very different to the guy at MS who would have to write these shims. Since I'd probably still wrap their official C++ shims I'd rather they expended their energy with more useful tasks.http://stackoverflow.com/questions/1803065/how-can-i-find-a-tcp-port-that-is-free-so-a-server-can-bind-to-it/1803663#1803663Comment by Len Holgate on How can I find a TCP port that is free (so a server can bind to it)Len Holgate2009-12-01T10:00:04Z2009-12-01T10:00:04ZIan, I don't have a firewall configured on the machines that I develop network applications on or on my build machines, so it's not an issue.http://stackoverflow.com/questions/1824773/how-to-test-a-tcp-server-implementation/1824817#1824817Comment by Len Holgate on How to test a TCP server implementation?Len Holgate2009-12-01T08:58:51Z2009-12-01T08:58:51ZI use a version of it all the time to test my server framework, (it runs on my build machine to test all of my framework example servers) and it's the basis of several custom test tools that I've developed for clients over the years. Let me know if you have any problems with the version that's linked from the blog post and I can update it to the latest version and if you still have problems I'll fix them. As for the C# tool, you're on your own ;)http://stackoverflow.com/questions/1824773/how-to-test-a-tcp-server-implementation/1824816#1824816Comment by Len Holgate on How to test a TCP server implementation?Len Holgate2009-12-01T08:49:47Z2009-12-01T08:49:47ZIt depends if he's testing his protocol or if he's testing the underlying TCP server design that he will build his protocol on. If the later (and that's what I understand from the question) then he simply needs something that opens connections and sends and recvs data. If the former then he will need something that speaks his custom protocol.