Len Holgate

2,109
Reputation
324 views

Registered User

name Len Holgate
member for 1 year
seen 5 hours ago
website
location Guildford, UK
age 42
I'm a feelance C++ programmer, based in Guildford in the UK.
8h
comment Is assert evil?
Jalf, 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.
10h
comment Is assert evil?
Mike, why not write real unit tests?
10h
comment Is assert evil?
David, 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!
10h
comment Is assert evil?
Unfortunately, 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...
11h
answered Your thoughts on “Large Scale C++ Software Design”
19h
comment Sharing object by reference or pointer
I 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.
20h
answered Is assert evil?
20h
comment Sharing object by reference or pointer
Relax, sometimes people disagree with you.
1d
comment Sharing object by reference or pointer
Sorry, 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. ;)
1d
revised Sharing object by reference or pointer
added 27 characters in body; added 51 characters in body
1d
answered Sharing object by reference or pointer
Dec
4
answered Running a Windows program and detect when it ends with C++
Dec
4
comment Intermittent issues with Win32 named events
You 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.
Dec
4
answered why project dependency affect linker settings
Dec
3
answered Creating an 802.11 transmitter and reading the data from a WiFi router.
Dec
3
comment socket queue problem?
As 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.
Dec
2
answered Building a multithreaded work-queue (consumer/producer) in C++
Dec
2
answered How to catch divide-by-zero error in Visual Studio 2008 C++?
Dec
2
answered some OVERLAPS using WSASend not returning in a timely manner using GetQueuedCompletionStatus?
Dec
2
answered socket queue problem?
Dec
2
comment Problem with TCPListener
You 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.
Dec
2
answered Problem with TCPListener
Dec
2
revised Dump the interface exposed by a COM object
added info about proxies.
Dec
2
answered Dump the interface exposed by a COM object
Dec
1
comment Why don’t win32 API functions have overloads and instead use Ex as suffix?
But 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.
Dec
1
comment How can I find a TCP port that is free (so a server can bind to it)
Ian, 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.
Dec
1
accepted How to test a TCP server implementation?
Dec
1
answered Set timeout for winsock recvfrom
Dec
1
comment How to test a TCP server implementation?
I 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 ;)
Dec
1
revised How to test a TCP server implementation?
Added details of protocol specific test
Dec
1
comment How to test a TCP server implementation?
It 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.
Dec
1
answered How to test a TCP server implementation?
Nov
30
answered Revert changes to UI in Visual Studio
Nov
30
comment Multithreading won’t work as expected
It might be an idea to accept the answer which helped you then...
Nov
30
answered Multithreading won’t work as expected
Nov
27
comment IOCP, Cross platform libraries?
Actually IOCP stands for I/O completion port not 'control port'.
Nov
27
answered I/O Completion Port, How to free Per Socket Context and Per I/O Context?
Nov
27
accepted Shutdown exception handling for Win32/C++
Nov
27
comment Design and Readbility.
+1 - you don't need to do anything except run Doxygen on the existing unchanged code to get real value from the diagrams that it can provide.
Nov
26
answered Shutdown exception handling for Win32/C++
Nov
26
comment How can I find a TCP port that is free (so a server can bind to it)
+1 that's pretty much what I do. Works well, though I start at around 5000..
Nov
25
answered Shutdown exception handling for Win32/C++
Nov
25
comment adding #ifndef #define #endif breaks the compile
A potential additional benefit is that the compiler could build a collection of header file names that have had #pragma once used in them and never even open the file again rather than having to open the file, read it all, parse it and ignore it. That said I use both and have the #pragma once protected by a compiler version check ...
Nov
25
comment Intermittent issues with Win32 named events
It's just that your question says that it's WaitForMultipleObjects() that's failing with invalid handle... How is it getting an invalid handle if the Open() works and you don't close the object before or during the wait?? Could you (and the spawned process) be closing the object during the wait??
Nov
24
comment Intermittent issues with Win32 named events
Why don't you create the event in the JobManager and then open it in the spawned process? There's no possibility of a race condition then. Since your failure is at the Wait() stage, are you checking for errors after the Open? Are you saying you Open the event OK and then fail at the Wait()? It could be security permissions causing the Open to fail ?
Nov
23
answered Intermittent issues with Win32 named events
Nov
23
accepted IO Completion ports: How does WSARecv() work?
Nov
20
answered IO Completion ports: How does WSARecv() work?
Nov
19
answered How can I jump relative to the PC using the gnu assembler for AVR?
Nov
18
revised Asynchronous address resolution in winsock?
Updated to include GetAddrInfoEx