User Kevin S. - Stack Overflowmost recent 30 from stackoverflow.com2009-12-14T23:33:55Zhttp://stackoverflow.com/feeds/user/21583http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/142677/how-to-most-efficently-handle-large-numbers-of-file-descriptors6How to most efficently handle large numbers of file descriptors?Kevin S.2008-09-27T01:12:39Z2008-12-30T11:32:17Z
<p>There appear to be several options available to programs that handle large numbers of socket connections (such as web services, p2p systems, etc).</p>
<ol>
<li>Spawn a separate thread to handle I/O for each socket.</li>
<li>Use the <a href="http://linux.die.net/man/2/select" rel="nofollow">select</a> system call to multiplex the I/O into a single thread.</li>
<li>Use the <a href="http://linux.die.net/man/2/poll" rel="nofollow">poll</a> system call to multiplex the I/O (replacing the select).</li>
<li>Use the <a href="http://linux.die.net/man/4/epoll" rel="nofollow">epoll</a> system calls to avoid having to repeatedly send sockets fd's through the user/system boundaries.</li>
<li>Spawn a number of I/O threads that each multiplex a relatively small set of the total number of connections using the poll API.</li>
<li>As per #5 except using the epoll API to create a separate epoll object for each independent I/O thread.</li>
</ol>
<p>On a multicore CPU I would expect that #5 or #6 would have the best performance, but I don't have any hard data backing this up. Searching the web turned up <a href="http://lse.sourceforge.net/epoll/index.html" rel="nofollow">this</a> page describing the experiences of the author testing approaches #2, #3 and #4 above. Unfortunately this web page appears to be around 7 years old with no obvious recent updates to be found.</p>
<p>So my question is which of these approaches have people found to be most efficient and/or is there another approach that works better than any of those listed above? References to real life graphs, whitepapers and/or web available writeups will be appreciated.</p>
http://stackoverflow.com/questions/141720/how-do-you-compare-structs-for-equality-in-c/141803#141803-1Answer by Kevin S. for How do you compare structs for equality in C?Kevin S.2008-09-26T20:34:40Z2008-09-26T20:34:40Z<p>If the structs only contain primitives or if you are interested in strict equality then you can do something like this:</p>
<pre>
int my_struct_cmp(const struct my_struct * lhs, const struct my_struct * rhs)
{
return memcmp(lhs, rsh, sizeof(struct my_struct));
}
</pre>
<p>However, if your structs contain pointers to other structs or unions then you will need to write a function that compares the primitives properly and make comparison calls against the other structures as appropriate.</p>
<p>Be aware, however, that you should have used memset(&a, sizeof(struct my_struct), 1) to zero out the memory range of the structures as part of your ADT initialization.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/132306#1323065Answer by Kevin S. for Hidden features of CKevin S.2008-09-25T09:26:19Z2008-09-25T09:26:19Z<p>C compilers implement one of several standards. However, having a standard does not mean that all aspects of the language are defined. Duff's device, for example, is a favorite 'hidden' feature that has become so popular that modern compilers have special purpose recognition code to ensure that optimization techniques do not clobber the desired effect of this often used pattern.</p>
<p>In general hidden features or language tricks are discouraged as you are running on the razor edge of whichever C standard(s) your compiler uses. Many such tricks do not work from one compiler to another, and often these kinds of features will fail from one version of a compiler suite by a given manufacturer to another version.</p>
<p>Various tricks that have broken C code include:</p>
<ol>
<li>Relying on how the compiler lays out structs in memory.</li>
<li>Assumptions on <em>endianness</em> of integers/floats.</li>
<li>Assumptions on function ABIs.</li>
<li>Assumptions on the direction that stack frames grow.</li>
<li>Assumptions about order of execution within statements.</li>
<li>Assumptions about order of execution of statements in function arguments.</li>
<li>Assumptions on the bit size or precision of short, int, long, float and double types.</li>
</ol>
<p>Other problems and issues that arise whenever programmers make assumptions about execution models that are all specified in most C standards as 'compiler dependent' behavior.</p>
http://stackoverflow.com/questions/131975/what-are-the-benefits-of-dependency-injection-containers/132097#1320972Answer by Kevin S. for What are the benefits of dependency injection containers?Kevin S.2008-09-25T08:21:37Z2008-09-25T09:04:42Z<p>Dependency injection is a coding style that has its roots in the observation that object delegation is usually a more useful design pattern than object inheritance (i.e., the object has-a relationship is more useful than the object is-a relationship). One other ingredient is necessary however for DI to work, that of creating object interfaces. Combining these two powerful design patterns software engineers quickly realized that they could create flexible loosely coupled code and thus the concept of Dependency Injection was born. However it wasn't until object reflection became available in certain high level languages that DI really took off. The reflection component is core to most of today's DI systems today because the really cool aspects of DI require the ability to programmatically select objects and configure and inject them into other objects using a system external and independent to the objects themselves.</p>
<p>A language must provide good support for both normal Object Oriented programming techniques as well as support for object interfaces and object reflection (for example Java and C#). While you can build programs using DI patterns in C++ systems its lack of reflection support within the language proper prevents it from supporting application servers and other DI platforms and hence limits the expressiveness of the DI patterns.</p>
<p>Strengths of a system built using DI patterns:</p>
<ol>
<li>DI code is much easier to reuse as the 'depended' functionality is extrapolated into well defined interfaces, allowing separate objects whose configuration is handled by a suitable application platform to be plugged into other objects at will.</li>
<li>DI code is much easier to test. The functionality expressed by the object can be tested in a black box by building 'mock' objects implementing the interfaces expected by your application logic.</li>
<li>DI code is more flexible. It is innately loosely coupled code -- to an extreme. This allows the programmer to pick and choose how objects are connected based exclusively on their required interfaces on one end and their expressed interfaces on the other.</li>
<li>External (Xml) configuration of DI objects means that others can customize your code in unforeseen directions.</li>
<li>External configuration is also a separation of concern pattern in that all problems of object initialization and object interdependency management can be handled by the application server.</li>
<li>Note that external configuration is not required to use the DI pattern, for simple interconnections a small builder object is often adequate. There is a tradeoff in flexibility between the two. A builder object is not as flexible an option as an externally visible configuration file. The developer of the DI system must weigh the advantages of flexibility over convenience, taking care that small scale, fine grain control over object construction as expressed in a configuration file may increase confusion and maintenance costs down the line.</li>
</ol>
<p>Definitely DI code seems more cumbersome, the disadvantages of having all of those XML files that configure objects to be injected into other objects appears difficult. This is, however, the point of DI systems. Your ability to mix and match code objects as a series of configuration settings allows you to build complex systems using 3rd party code with minimal coding on your part.</p>
<p>The example provided in the question merely touches on the surface of the expressive power that a properly factored DI object library can provide. With some practice and a lot of self discipline most DI practitioners find that they can build systems that have 100% test coverage of application code. This one point alone is extraordinary. This is not 100% test coverage of a small application of a few hundred lines of code, but 100% test coverage of applications comprising hundreds of thousands of lines of code. I am at a loss of being able to describe any other design pattern that provides this level of testability.</p>
<p>You are correct in that an application of a mere 10s of lines of code is easier to understand than several objects plus a series of XML configuration files. However as with most powerful design patterns, the gains are found as you continue to add new features to the system.</p>
<p>In short, large scale DI based applications are both easier to debug and easier to understand. While the Xml configuration is not 'compile time checked' all application services that this author is aware of will provide the developer with error messages if they attempt to inject an object having an incompatible interface into another object. And most provide a 'check' feature that covers all known objects configurations. This is easily and quickly done by checking that the to-be-injected object A implements the interface required by object B for all configured object injections.</p>
http://stackoverflow.com/questions/130794/what-is-dependency-injection/132115#1321150Answer by Kevin S. for What is dependency injection?Kevin S.2008-09-25T08:27:22Z2008-09-25T08:27:22Z<p>See my discussion on Dependency Injection <a href="http://stackoverflow.com/questions/131975/what-are-benefits-of-dependency-injection-container#132097">Here</a>.</p>
http://stackoverflow.com/questions/131803/unsigned-int-vs-sizet/131954#1319547Answer by Kevin S. for unsigned int vs. size_tKevin S.2008-09-25T07:31:28Z2008-09-25T07:31:28Z<p>The size_t type is the type returned by the sizeof operator. It is an unsigned integer capable of expressing the size in bytes of any memory range supported on the host machine. It is (typically) related to ptrdiff_t in that ptrdiff_t is a signed integer value such that sizeof(ptrdiff_t) and sizeof(size_t) are equal.</p>
<p>When writing C code you should <em>always</em> use size_t whenever dealing with memory ranges.</p>
<p>The int type on the other hand is basically defined as the size of the (signed) integer value that the host machine can use to most efficiently perform integer arithmetic. For example, on many older PC type computers the value sizeof(size_t) would be 4 (bytes) but sizeof(int) would be 2 (byte). 16 bit arithmetic was faster than 32 bit arithmetic, though the CPU could handle a (logical) memory space of up to 4 GiB.</p>
<p>Use the int type only when you care about efficiency as its actual precision depends strongly on both compiler options and machine architecture. In particular the C standard specifies the following invariants: sizeof(char) <= sizeof(short) <= sizeof(int) <= sizeof(long) placing no other limitations on the actual representation of the precision available to the programmer for each of these primitive types.</p>
<p>Note: This is NOT the same as in Java (which actually specifies the bit precision for each of the types 'char', 'byte', 'short', 'int' and 'long').</p>