User Adam Rosenfield - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T07:10:11Zhttp://stackoverflow.com/feeds/user/9530http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1912693/segfault-when-copying-an-array-to-a-vector-in-linux/1912734#19127344Answer by Adam Rosenfield for segfault when copying an array to a vector in LinuxAdam Rosenfield2009-12-16T06:35:28Z2009-12-16T06:35:28Z<p>Your code looks good in terms of the data that is written. Are you absolutely sure that you're passing in the right <code>src</code> pointer? What happens when you run the code with a debugger such as gdb? It should halt on the segfault, and then you can print out the values of <code>_storage.size()</code>, <code>src</code>, and <code>cnt</code>.</p>
<p>I'm sure you'll find that (at least) one of those is not at all what you're expecting. You might have passed an invalid <code>src</code>; you might have passed an absurdly large <code>cnt</code>.</p>
http://stackoverflow.com/questions/1893967/roundtripping-double-to-text-and-back/1894087#18940878Answer by Adam Rosenfield for Roundtripping double to text and backAdam Rosenfield2009-12-12T17:21:06Z2009-12-12T20:00:57Z<p><strong>[EDIT]</strong> Actually there is a way to do this in C99 -- use the <code>%a</code> format specifier. This prints out a double in hexadecimal scientific notation, so there is no loss of precision. The result is exact. Example:</p>
<pre><code>double d1 = 3.14159;
char str[64];
sprintf(str, "%a", d1);
// str is now something like "0x1.921f9f01b866ep+1"
...
double d2;
sscanf(str, "%la", &d2);
assert(d2 == d1);
</code></pre>
<p>Original answer below:</p>
<p><hr></p>
<p>Most double-to-string conversions can't guarantee that. You can try printing out the double to a very high precision (a double can store about 16 decimal digits), but there's still a small chance of floating-point error:</p>
<pre><code>// Not guaranteed to work:
double d = ...;
char str[64];
sprintf(str, "%.30g", d);
...
double d2;
sscanf(str, "%g", &d2);
</code></pre>
<p>This will work to a very high degree of precision, but it still may have an error of a few ULPs (units in the last place).</p>
<p>What are you doing that requires you to produce a 100% exactly reproducible value while using a string? I strongly suggest you reconsider what you're trying to do. If your really need an exact conversion, just store the double as 8 bytes in binary. If it needs to be stored in a printable format, convert the binary data into hex (16 bytes) or base 64.</p>
http://stackoverflow.com/questions/1893636/fscanf-problem-with-reading-in-string/1893843#18938431Answer by Adam Rosenfield for fscanf problem with reading in StringAdam Rosenfield2009-12-12T16:03:19Z2009-12-12T16:03:19Z<p>One problem with this:</p>
<pre><code>result = fscanf(fp, "%[^\n]s", ap->name);
</code></pre>
<p>is that you have an extra <code>s</code> at the end of your format specifier. The entire format specifier should just be <code>%[^\n]</code>, which says "read in a string which consists of characters which are not newlines". The extra <code>s</code> is not part of the format specifier, so it's interpreted as a literal: "read the next character from the input; if it's an "s", continue, otherwise fail."</p>
<p>The extra <code>s</code> doesn't actually hurt you, though. You know exactly what the next character of input: a newline. It doesn't match, and input processing stops there, but it doesn't really matter since it's the end of your format specifier. This would cause problems, though, if you had other format specifiers after this one in the same format string.</p>
<p>The real problem is that you're not consuming the newline: you're only reading in all of the characters <em>up to</em> the newline, but not the newline itself. To fix that, you should do this:</p>
<pre><code>result = fscanf(fp, "%[^\n]%*c", ap->name);
</code></pre>
<p>The <code>%*c</code> specifier says to read in a character (<code>c</code>), but don't assign it to any variable (<code>*</code>). If you omitted the <code>*</code>, you would have to pass <code>fscanf()</code> another parameter containing a pointer to a character (a <code>char*</code>), where it would then store the resulting character that it read in.</p>
<p>You could also use <code>%[^\n]\n</code>, but that would also read in any whitespace which followed the newline, which may not be what you want. When <code>fscanf</code> finds whitespace in its format specifier (a space, newline, or tab), it consumes as much whitespace as it can (i.e. you can think of it consuming the longest string that matches the regular expression <code>[ \t\n]*</code>).</p>
<p>Finally, you should also specify a maximum length to avoid buffer overruns. You can do this by placing the buffer length in between the <code>%</code> and the <code>[</code>. For example, if <code>ap->name</code> is a buffer of 256 characters, you should do this:</p>
<pre><code>result = fscanf(fp, "%255[^\n]%*c", ap->name);
</code></pre>
<p>This works great for statically allocated arrays; unfortunately, if the array is dyamically sized at runtime, there's no easy to way to pass the buffer size to <code>fscanf</code>. You'll have to create the format string with <code>sprintf</code>, e.g.:</p>
<pre><code>char format[256];
snprintf(format, sizeof(format), "%%%d[^\n]%%*c", buffer_size - 1);
result = fscanf(fp, format, ap->name);
</code></pre>
http://stackoverflow.com/questions/1885854/is-it-possible-legal-to-assign-an-anonymous-union-in-a-compound-literal/1885931#18859312Answer by Adam Rosenfield for Is it possible (legal) to assign an anonymous union in a compound literal?Adam Rosenfield2009-12-11T05:18:58Z2009-12-11T05:18:58Z<p>Anonymous unions are not standard C -- they are a compiler extension. I would strongly recommend giving the union a name. If you insist on using an anonymous union, then you can only give an initializer for the first element of it:</p>
<pre><code>node n0 = {1, 0}; // initializes `s' to 0
</code></pre>
<p>When compiled with <code>-Wall -Wextra -pedantic</code>, gcc gave me the warning "missing braces around initializer", which is a valid warning. The initializer should actually be specified like this:</p>
<pre><code>node n0 = {1, {0}}; // initializes `s' to 0
</code></pre>
<p>Now this only gives a warning that "ISO C doesn't support unnamed structs/unions".</p>
<p>If you give the union a name, then you can use a C99 feature called <em>designated initializers</em> to initialize a specific member of the union:</p>
<pre><code>typedef struct
{
int type;
union {
char *s;
int i;
} value;
} node;
node n0 = {1, { .s = "string"; }};
node n1 = {2, { .i = 123; }};
</code></pre>
<p>You need the union to have a name; otherwise, the compiler will complain about the designated initializer inside it.</p>
<p>The syntax you were trying to use <code>node n0 = {type: 1, i: 4}</code> is invalid syntax; it looks like you were trying to use designated initializers.</p>
http://stackoverflow.com/questions/1871222/objective-c-runtime-interface-documentation/1871230#18712303Answer by Adam Rosenfield for Objective-c Runtime Interface DocumentationAdam Rosenfield2009-12-09T02:19:21Z2009-12-09T02:19:21Z<p>The <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/ObjCRuntimeRef/Reference/reference.html" rel="nofollow">Objective-C Runtime Reference</a> is the best documentation I'm aware of. See also its companion guides, the <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/ObjCRuntimeGuide/index.html#//apple%5Fref/doc/uid/TP40008048" rel="nofollow">Objective-C Runtime Programming Guide</a> and <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/ObjectiveC/index.html#//apple%5Fref/doc/uid/TP30001163" rel="nofollow">The Objective-C Programming Language</a>.</p>
http://stackoverflow.com/questions/1868719/sigsegv-seemingly-caused-by-printf/1869921#18699213Answer by Adam Rosenfield for SIGSEGV, (seemingly) caused by printfAdam Rosenfield2009-12-08T21:19:30Z2009-12-08T21:19:30Z<p>You have a bug elsewhere in your code not related to the <code>printf</code> statement. You're stomping on memory somewhere, but the problem doesn't manifest itself until <code>printf</code> tries to allocate some memory with <code>__BAlloc_D2A</code>, which crashes because the heap data structures it uses to keep track of free memory blocks have been corrupted.</p>
<p>To try to detect where you're stomping on memory, there are a number of tools available. If you were on Linux, I would suggest using <a href="http://valgrind.org/" rel="nofollow">valgrind</a>, which essentially runs your code in a virtual machine and tells you whenever you do anything illegal like read/write memory out of bounds, read an uninitialized variable, etc. However, it's not available in Mac OS X (yet).</p>
<p>One option is to use <a href="http://developer.apple.com/Mac/library/documentation/Darwin/Reference/ManPages/man3/libgmalloc.3.html" rel="nofollow">libgmalloc</a>:</p>
<pre><code>% cat gmalloctest.c
#include <stdlib.h>
#include <stdio.h>
main()
{
unsigned *buffer = (unsigned *)malloc(sizeof(unsigned) * 100);
unsigned i;
for (i = 0; i < 200; i++) {
buffer[i] = i;
}
for (i = 0; i < 200; i++) {
printf ("%d ", buffer[i]);
}
}
% cc -g -o gmalloctest gmalloctest.c
% gdb gmalloctest
Reading symbols for shared libraries .. done
(gdb) set env DYLD_INSERT_LIBRARIES /usr/lib/libgmalloc.dylib
(gdb) r
Starting program: gmalloctest
Reading symbols for shared libraries .. done
GuardMalloc: Allocations will be placed on 16 byte boundaries.
GuardMalloc: - Some buffer overruns may not be noticed.
GuardMalloc: - Applications using vector instructions (e.g., SSE or Altivec) should work.
GuardMalloc: GuardMalloc version 19
Program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: KERN_PROTECTION_FAILURE at address: 0xb000d000
0x00001f65 in main () at gmalloctest.c:10
10 buffer[i] = i;
(gdb) print i
$1 = 100
(gdb) where
#0 0x00001f65 in main () at gmalloctest.c:10
(gdb)
</code></pre>
<p>See also <a href="http://developer.apple.com/mac/library/documentation/Performance/Conceptual/ManagingMemory/Articles/MallocDebug.html#//apple%5Fref/doc/uid/20001884-CJBJFIDD" rel="nofollow">Enabling the Malloc Debugging Features</a>.</p>
http://stackoverflow.com/questions/1857204/how-to-pass-a-value-from-cocoa-to-an-sqlite-query/1857237#18572375Answer by Adam Rosenfield for How to pass a value from Cocoa to an SQLite queryAdam Rosenfield2009-12-07T01:10:36Z2009-12-07T01:10:36Z<p>The problem is that a <code>NSString</code> is not what <code>sqlite3_prepare_v2()</code> is expecting for its second argument. It wants a <code>const char*</code>. C is a little lax here, and it lets you implicitly cast an <code>NSString*</code> to a <code>const char*</code>, which is WRONG -- the compiler is giving you a warning which you shouldn't ignore.</p>
<p>You need to convert the <code>NSString</code> into a <code>const char*</code>. The simplest way to do this is to use the <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSString%5FClass/Reference/NSString.html#//apple%5Fref/occ/instm/NSString/UTF8String" rel="nofollow"><code>-UTF8String</code></a> message to convert it into UTF-8:</p>
<pre><code>// V---- HERE ----V
if(sqlite3_prepare_v2(database, [sql UTF8String], -1, &selectstmt, NULL) == SQLITE_OK)
</code></pre>
<p>Alternatively, in the unlikely case that you want to use a different encoding, you can use the <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSString%5FClass/Reference/NSString.html#//apple%5Fref/occ/instm/NSString/cStringUsingEncoding%3A" rel="nofollow"><code>-cStringUsingEncoding:</code></a> message to convert the string to a C string using a specific character encoding.</p>
http://stackoverflow.com/questions/1856468/how-to-output-ieee-754-format-integer-as-a-float/1856541#18565415Answer by Adam Rosenfield for How to output IEEE-754 format integer as a floatAdam Rosenfield2009-12-06T20:42:34Z2009-12-06T20:42:34Z<p>The union method you suggested is the usual route that most people would take. However, it's technically <em>undefined behavior</em> in C/C++ to read a different member from a union than the one that was most recently written. Despite this, though, it's well-supported among pretty much all compilers.</p>
<p>Casting pointers, as <a href="http://stackoverflow.com/questions/1856468/how-to-output-ieee-754-format-integer-as-a-float/1856476#1856476">Jon Skeet suggested</a>, is a bad idea -- that violates the <a href="http://cellperformance.beyond3d.com/articles/2006/06/understanding-strict-aliasing.html" rel="nofollow">strict aliasing</a> rules of C. An aggressive optimizing compiler will produce incorrect code for this, since it assumes that pointers of types <code>unsigned long *</code> and <code>float *</code> will never alias each other.</p>
<p>The most correct way, in terms of standards compliance (that is, not invoking undefined behavior), is to cast through a <code>char*</code>, since the strict aliasing rules permit a <code>char*</code> pointer to alias a pointer of any other type:</p>
<pre><code>unsigned long ul = 0x40A00000;
float f;
char *pul = (char *)&ul; // ok, char* can alias any type
char *pf = (char *)&f; // ok, char* can alias any type
memcpy(pf, pul, sizeof(float));
</code></pre>
<p>Though honestly, I would just go with the union method. From the cellperformance.com link above:</p>
<blockquote>
<p>It is an extremely common idiom and is well-supported by all major compilers. As a practical matter, reading and writing to any member of a union, in any order, is acceptable practice.</p>
</blockquote>
http://stackoverflow.com/questions/1855896/memory-alignment-on-modern-processors/1855960#18559601Answer by Adam Rosenfield for Memory alignment on modern processors?Adam Rosenfield2009-12-06T17:31:14Z2009-12-06T17:31:14Z<p>It depends on a lot of factors. If you're only accessing the pixel data one byte at a time, the alignment will not make any difference the vast majority of the time. For reading/writing one byte of data, most processors won't care at all whether that byte is on a 4-byte boundary or not.</p>
<p>However, if you're accessing data in units larger than a byte (say, in 2-byte or 4-byte units), then you will definitely see alignment effects. For some processors (e.g. many RISC processors), it is outright illegal to access unaligned data on certain levels: attempting to read a 4-byte word from an address that's not 4-byte aligned will generate a Data Access Exception (or Data Storage Exception) on a PowerPC, for example.</p>
<p>On other processors (e.g. x86), accessing unaligned addresses is permitted, but it often comes with a hidden performance penalty. Memory loads/stores are often implemented in microcode, and the microcode will detect the unaligned access. Normally, the microcode will fetch the proper 4-byte quantity from memory, but if it's not aligned, it will have to fetch <em>two</em> 4-byte locations from memory and reconstruct the desired 4-byte quantity from the appropriate bytes of the two locations. Fetching two memory locations is obviously slower than one.</p>
<p>That's just for simple loads and stores, though. Some instructions, such as those in the MMX or SSE instruction sets, require their memory operands to be properly aligned. If you attempt to access unaligned memory using those special instructions, you'll see something like an illegal instruction exception.</p>
<p>To summarize, I wouldn't really worry too much about alignment unless you're writing super performance-critical code (e.g. in assembly). The compiler helps you out a lot, e.g. by padding structures so that 4-byte quantities are aligned on 4-byte boundaries, and on x86, the CPU also helps you out when dealing with unaligned accesses. Since the pixel data you're dealing with is in quantities of 3 bytes, you'll almost always being doing single byte accesses anyways.</p>
<p>If you decide you instead want to access pixels in singular 4-byte accesses (as opposed to 3 1-byte accesses), it would be better to use 32-bit pixels and have each individual pixel aligned on a 4-byte boundary. Aligning each row to a 4-byte boundary but not each pixel will have little, if any, effect.</p>
<p>Based on your code, I'm guessing it's related to reading the Windows bitmap file format -- bitmap files require the length of each scanline to be a multiple of 4 bytes, so setting up your pixel data buffers with that property has the property that you can just read in the entire bitmap in one fell swoop into your buffer (of course, you still have to deal with the fact that the scanlines are stored bottom-to-top instead of top-to-bottom and that the pixel data is BGR instead of RGB). This isn't really much of an advantage, though -- it's not that much harder to read in the bitmap one scanline at a time.</p>
http://stackoverflow.com/questions/1364927/code-golf-reverse-quine/1850224#18502241Answer by Adam Rosenfield for Code golf: Reverse quineAdam Rosenfield2009-12-04T23:00:40Z2009-12-04T23:00:40Z<h1>C89, 119 characters</h1>
<p>Unfortunately, this requires use of the highly non-standard function <code>strrev()</code>:</p>
<pre><code>main(){char*a="};)43,)b(verrts,43,a(ftnirp;)a(pudrts=b*,%c%s%c=a*rahc{)(niam",*b=strdup(a);printf(a,34,strrev(b),34);}
</code></pre>
http://stackoverflow.com/questions/1849956/objective-c-array-iteration-speed/1850028#18500285Answer by Adam Rosenfield for Objective-C Array Iteration SpeedAdam Rosenfield2009-12-04T22:18:36Z2009-12-04T22:18:36Z<p>The speed of iteration is not affected by what type of data you're storing in the array. It <em>is</em> affected by the type of array you're using: there are significant differences between iterating through an Objective-C <code>NSArray</code> (or any of its subclasses, such as <code>NSMutableArray</code>), a C-style array, or a C++ <code>std::vector</code>.</p>
<p>If you're using an <code>NSArray</code>, and you're using Objective-C 2.0 (e.g. on the iPhone or on Mac OS X 10.5 or later), you can use <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/ObjectiveC/Articles/ocFastEnumeration.html" rel="nofollow">fast enumeration</a> to iterate, which is significantly faster than the older style of iteration:</p>
<pre><code>// Fast enumeration
for(id object in myNSArray)
; // do stuff with object
// Slow enumeration
int count = [myNSArray count], i;
for(i = 0; i < count; i++)
{
id object = [myNSArray objectAtIndex:i];
// do stuff with object
}
</code></pre>
<p>I'm not sure how fast enumeration compares with C-style arrays or C++ <code>std::vector</code>s, but I would bet that it's still a little bit slower. It's slower because you have the extra overhead of Objective-C: passing messages (such as <code>count</code> and <code>objectAtIndex:</code>) goes through the Objective-C runtime, which is slower than bare pointer arithmetic even in the best case.</p>
<p>Iterating through a C-style array or a C++ <code>std::vector</code> is very fast, since the compiler can optimize them to really simple pointer arithmetic instructions with no overhead:</p>
<pre><code>// C-style array
SomeType *myArray = ...; // e.g. malloc(myArraySize * sizeof(SomeType))
int i;
for(i = 0; i < myArraySize; i++)
; // do stuff with myArray[i]
// C++ vector
std::vector<SomeType> myArray = ...;
for(std::vector<SomeType>::iterator i = myArray.begin(); i != myArray.end(); ++i)
; // do stuff with *i
</code></pre>
http://stackoverflow.com/questions/1830158/how-to-call-erase-with-a-reverse-iterator/1830272#18302721Answer by Adam Rosenfield for How to call erase with a reverse iteratorAdam Rosenfield2009-12-02T02:19:30Z2009-12-02T02:19:30Z<p>While using the <code>reverse_iterator</code>'s <code>base()</code> method and decrementing the result works here, it's worth noting that <code>reverse_iterator</code>s are not given the same status as regular <code>iterator</code>s. In general, you should prefer regular <code>iterator</code>s to <code>reverse_iterator</code>s (as well as to <code>const_iterator</code>s and <code>const_reverse_iterator</code>s), for precisely reasons like this. See <a href="http://www.ddj.com/cpp/184401406" rel="nofollow">Doctor Dobbs' Journal</a> for an in-depth discussion of why.</p>
http://stackoverflow.com/questions/1829824/which-most-common-extensions-are-there-or-used-to-ansi-c/1829862#18298620Answer by Adam Rosenfield for Which most common extensions are there (or used) to ANSI C?Adam Rosenfield2009-12-02T00:13:01Z2009-12-02T00:13:01Z<p>A number of compilers allow anonymous structs inside anonymous unions, which is useful for some things, e.g.:</p>
<pre><code>struct vector3
{
union
{
struct
{
float x, y, z;
};
float v[3];
};
};
// members can now be accessed by name or by index:
vector3 v;
v.x = 1.0f; v.y = 2.0f; v.z = 3.0f;
v.v[0] = v.v[1] = v.v[2] = 0.0f;
</code></pre>
http://stackoverflow.com/questions/1824115/display-socket-options/1824239#18242391Answer by Adam Rosenfield for Display socket optionsAdam Rosenfield2009-12-01T05:52:43Z2009-12-01T05:52:43Z<p>You can use <a href="http://linux.die.net/man/8/lsof" rel="nofollow"><code>lsof(8)</code></a>. If <code>PID</code> is the process ID and <code>FD</code> is the file descriptor number of the socket you're interested in, you can do this:</p>
<pre><code>lsof -a -p PID -d FD -T f
</code></pre>
<p>To list all IPv4 sockets of a process:</p>
<pre><code>lsof -a -p PID -i 4 -T f
</code></pre>
<p>This will print out the socket options with a <code>SO=</code>, among other information. Note that if no options are set, you'll get the empty string, so you'll see something like <code>SO=PQLEN=0</code> etc. To test for <code>SO_BROADCAST</code>, just grep for the string <code>SO_BROADCAST</code> after the <code>SO=</code>, e.g.</p>
<pre><code>if lsof -a -p PID -d FD -T f | grep -q 'SO=[^=]*SO_BROADCAST'; then
# socket has SO_BROADCAST
else
# it doesn't
fi
</code></pre>
http://stackoverflow.com/questions/1820862/obj-c-linear-interpolation-between-two-numbers/1820951#18209513Answer by Adam Rosenfield for obj-c linear interpolation between two numbersAdam Rosenfield2009-11-30T16:45:37Z2009-11-30T16:45:37Z<p>No, but it's an easy one-liner:</p>
<pre><code>inline double lerp(double a, double b, double t)
{
return a + (b - a) * t;
}
inline float lerpf(float a, float b, float t)
{
return a + (b - a) * t;
}
</code></pre>
http://stackoverflow.com/questions/1820477/c-static-virtual-members/1820499#182049910Answer by Adam Rosenfield for C++ static virtual members?Adam Rosenfield2009-11-30T15:30:23Z2009-11-30T15:30:23Z<p>No, there's no way to do it, since what would happen when you called <code>Object::GetTypeInformation()</code>? It can't know which derived class version to call since there's no object associated with it.</p>
<p>You'll have to make it a non-static virtual function to work properly; if you also want to be able to call a specific derived class's version non-virtually without an object instance, you'll have to provide a second redunduant static non-virtual version as well.</p>
http://stackoverflow.com/questions/1817196/gcc-g-error-when-compiling-large-file/1817228#18172280Answer by Adam Rosenfield for gcc/g++: error when compiling large fileAdam Rosenfield2009-11-30T00:05:15Z2009-11-30T00:05:15Z<p>If you're just generating a punch of calls to <code>push_back()</code> in a row, you can refactor it into something like this:</p>
<pre><code>// Old code:
v.push_back("foo");
v.push_back("bar");
v.push_back("baz");
// Change that to this:
{
static const char *stuff[] = {"foo", "bar", "baz"};
v.insert(v.end(), stuff, stuff + ARRAYCOUNT(stuff));
}
</code></pre>
<p>Where <code>ARRAYCOUNT</code> is a macro defined as follows:</p>
<pre><code>#define ARRAYCOUNT(a) (sizeof(a) / sizeof(a[0]))
</code></pre>
<p>The extra level of braces is just to avoid name conflicts if you have many such blocks; alternatively, you can just generate a new unique name for the <code>stuff</code> placeholder.</p>
<p>If that still doesn't work, I suggest breaking your source file up into many smaller source files. That's easy if you have many separate functions; if you have one enormous function, you'll have to work a little harder, but it's still very doable.</p>
http://stackoverflow.com/questions/216037/what-tools-are-there-for-functional-programming-in-c15What tools are there for functional programming in C?Adam Rosenfield2008-10-19T05:12:17Z2009-11-29T22:36:49Z
<p>I've been thinking a lot lately about how to go about doing functional programming in C (<em>not</em> C++). Obviously, C is a procedural language and doesn't really support functional programming natively.</p>
<p>Are there any compiler/language extensions that add some functional programming constructs to the language? GCC provides <a href="http://gcc.gnu.org/onlinedocs/gcc/Nested-Functions.html" rel="nofollow">nested functions</a> as a language extension; nested functions can access variables from the parent stack frame, but this is still a long way away from mature closures.</p>
<p>For example, one thing that I think could be really useful in C is that anywhere where a function pointer is expected, you could be able to pass a lambda expression, creating a closure which decays into a function pointer. C++0x is going to include lambda expressions (which I think is awesome); however, I'm looking for tools applicable to straight C.</p>
<p>[Edit] To clarify, I'm not trying to solve a particular problem in C that would be more suited to functional programming; I'm merely curious about what tools are out there if I wanted to do so.</p>
http://stackoverflow.com/questions/1816628/printing-ip-addresses-using-gdb/1816694#18166945Answer by Adam Rosenfield for printing ip addresses using gdbAdam Rosenfield2009-11-29T20:38:36Z2009-11-29T20:38:36Z<p>Just use <a href="http://linux.die.net/man/3/inet%5Fntoa" rel="nofollow"><code>inet_ntoa(3)</code></a> as so:</p>
<pre><code>(gdb) p (char*)inet_ntoa(0x01234567) # Replace with your IP address
$1 = 0xa000b660 "103.69.35.1"
</code></pre>
http://stackoverflow.com/questions/1813926/why-doesnt-the-following-perfectly-valid-c-code-show-the-contents-of-a-file-in/1813987#18139870Answer by Adam Rosenfield for Why doesn't the following (perfectly valid) C code show the contents of a file in Objective-C?Adam Rosenfield2009-11-28T22:37:25Z2009-11-28T22:37:25Z<p>Summarizing the responses so far, and adding my own observations:</p>
<p>You should check the return value from <code>open()</code> and <code>read()</code>. If they fail, you're going to blindly continue on and print garbage.</p>
<p><code>read()</code> returns the number of characters read, or -1 in case of error. It does NOT null-terminate its buffer, so using <code>strlen()</code> to find the amount of data read is wrong.</p>
<p>You shouldn't put a call to <code>strlen()</code> in the loop test condition, since you'll be re-evaluating it each iteration.</p>
<p>The casting of <code>buf[i]</code> to <code>int</code> in the <code>printf</code> statement is unnecessary. The extra arguments to variadic functions such as <code>printf</code> (that is, all of the arguments that make up the <code>...</code>) undergo default argument promotion as follows:</p>
<ul>
<li><code>char</code>s, <code>short</code>s, and their unsigned counterparts are promoted to <code>int</code>s</li>
<li><code>float</code>s are promoted to <code>double</code>s</li>
</ul>
<p>Without a cast, <code>buf[i]</code> would get implicitly promoted to an <code>int</code> anyways, so adding the cast, while correct, makes the code more confusing to anyone reading it.</p>
<p>So, your code should look like this:</p>
<pre><code>int fd = open("test.txt",O_RDONLY);
if(fd < 0)
{
fprintf(stderr, "open failed: %s\n", strerror(errno));
return;
}
char buf[128];
// It's better to use sizeof(buf) here, so we don't have to change it in case we
// change the size of buf. -1 to leave space for the null terminator
int reader = read(fd,buf,sizeof(buf)-1);
if(reader < 0)
{
fprintf(stderr, "read failed: %s\n", strerror(errno));
close(fd);
return;
}
buf[reader] = 0; // add null terminator for safety
int i;
for (i=0; i < reader; i++)
{
printf("%i: I read: %c", i, buf[i]);
}
</code></pre>
http://stackoverflow.com/questions/1813313/string-array-in-java/1813332#18133324Answer by Adam Rosenfield for string array in javaAdam Rosenfield2009-11-28T18:38:19Z2009-11-28T18:38:19Z<p>You need to make a copy of the array, but you only need to make a shallow copy, not a deep copy -- the individual strings don't need to be copied. So it would look something like this:</p>
<pre><code>create new output array O
for each string S in the input array I
if S is not null
add S to O
</code></pre>
<p>If you're using <code>ArrayList</code>s, you can use this as-is; however, if you're using plain old Java arrays, you can't resize it each time you add an element. So, instead, you'll need to count the number of non-null entries first, then create an output array of the appropriate size, then loop through the input array again.</p>
http://stackoverflow.com/questions/1813266/unique-elements-struct-array/1813278#18132783Answer by Adam Rosenfield for unique elements - struct arrayAdam Rosenfield2009-11-28T18:22:06Z2009-11-28T18:22:06Z<p>Look carefully at this line:</p>
<pre><code>if (strcmp(mystruct[i++]->ip,mystruct[i]->ip)!=0)
</code></pre>
<p>You're comparing index <code>i</code> to index <code>i</code> (which are equal, since they're the same) and then incrementing <code>i</code>. (Actually, this is undefined behavior, since you're modifying <code>i</code> and reading it more than once before a sequence point).</p>
<p>You really want to do this:</p>
<pre><code>if (strcmp(mystruct[i + 1]->ip,mystruct[i]->ip)!=0)
</code></pre>
<p>to compare index <code>i+1</code> to index <code>i</code> without touching <code>i</code>, since <code>i</code> is incremented in the <code>for</code> loop. Also, <code>i</code> should only loop from 0 to 17, not 0 to 18, since you don't want to read past the end of the array.</p>
http://stackoverflow.com/questions/1811206/on-win32-how-to-detect-whether-a-left-shift-or-right-alt-is-pressed-using-perl/1811773#18117730Answer by Adam Rosenfield for On Win32, how to detect whether a Left Shift or Right ALT is pressed using Perl, Python, or Ruby (or C)?Adam Rosenfield2009-11-28T06:25:36Z2009-11-28T06:25:36Z<p>If you want to know the current state of the keys <em>right now</em>, you can use <a href="http://msdn.microsoft.com/en-us/library/ms646293%28VS.85%29.aspx" rel="nofollow"><code>GetAsyncKeyState()</code></a> with an argument of <code>VK_LSHIFT</code> or <code>VK_RMENU</code> for left shift and right alt respectively. Make sure to test the most significant bit of the result, since the result contains more than one bit of information, e.g.</p>
<pre><code>if(GetAsyncKeyState(VK_LSHIFT) & 0x8000)
; // left shift is currently down
</code></pre>
<p>If you instead want to be notified of keypresses instead of polling them asynchronously, you should listen for the <a href="http://msdn.microsoft.com/en-us/library/ms646280%28VS.85%29.aspx" rel="nofollow"><code>WM_KEYDOWN</code></a> window notification. Put something like this in your window's message handler:</p>
<pre><code>LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
{
switch(msg)
{
...
case WM_KEYDOWN:
if(wparam == VK_LSHIFT)
; // left shift was pressed
// etc.
break;
}
}
</code></pre>
<p>You'll also have to handle the <code>WM_KEYUP</code> message to know when keys are released.</p>
http://stackoverflow.com/questions/1809958/hide-stderr-output-in-unit-tests/1809963#18099633Answer by Adam Rosenfield for Hide stderr output in unit testsAdam Rosenfield2009-11-27T17:49:56Z2009-11-27T17:57:11Z<p>You could create a dummy file object that did nothing with its output, and set stderr to that:</p>
<pre><code>class NullWriter:
def write(self, s):
pass
sys.stderr = NullWriter()
</code></pre>
<p>If you only want to quiet stderr for a specific duration, you can use a <code>with</code> statement like so:</p>
<pre><code>class Quieter:
def __enter__(self):
self.old_stderr = sys.stderr
sys.stderr = NullWriter()
def __exit__(self, type, value, traceback):
sys.stderr = self.old_stderr
with Quieter():
# Do stuff; stderr will be suppressed, and it will be restored
# when this block exits
</code></pre>
<p>Requires Python 2.6 or higher, or you can use it in Python 2.5 with a <code>from __future__ import with_statement</code>.</p>
http://stackoverflow.com/questions/1800003/which-is-better-using-a-nullable-or-a-boolean-returnout-parameter/1800021#18000210Answer by Adam Rosenfield for which is better, using a nullable or a boolean return+out parameterAdam Rosenfield2009-11-25T21:19:32Z2009-11-25T21:19:32Z<p>If there's only one way it can fail, or if you'll never need to know <em>why</em> it failed, I'd say it's probably simpler and easier to go with the nullable return value.</p>
<p>Conversely, if there are multiple ways it could fail, and the calling code could want to know exactly why it failed, then go with the out parameter and return an error code instead of a bool (alternatively, you could throw an exception, but based on your question, it seems you've already decided not to throw an exception).</p>
http://stackoverflow.com/questions/1791687/do-all-hash-based-datastructures-in-java-use-the-bucket-concept/1791792#17917922Answer by Adam Rosenfield for Do all Hash-based datastructures in java use the 'bucket' concept?Adam Rosenfield2009-11-24T17:54:25Z2009-11-24T17:54:25Z<p>No -- <a href="http://en.wikipedia.org/wiki/Open%5Faddressing" rel="nofollow">open addressing</a> is an alternate method of representing hash tables, where objects are stored directly in the table, instead of residing in a linked list. Only one object can be stored at a given index, so resolving collisions is more complicated.</p>
<p>When adding an object for which another object already resides at the same index, a probing sequence is used to determine the new index at which to store the new object. Removing objects is also more complicated, since you if you remove an object, you need to leave a marker that says "there used to be an object here"; for more details, see Wikipedia.</p>
<p>Open addressing is preferable when the objects being stored as small and will rarely be deleted. Open addressing has improved cache performance, since you don't need to go through an extra level of indirection walking a linked list.</p>
<p>The classes you mentioned -- <code>HashTable</code>, <code>HashSet</code>, and <code>HashMap</code> don't use open addressing, but you could easily create new classes that implemented open addressing and provided the same APIs as those classes.</p>
http://stackoverflow.com/questions/1787875/question-on-extern-specifier-in-c/1787927#17879275Answer by Adam Rosenfield for Question on extern specifier in CAdam Rosenfield2009-11-24T05:08:21Z2009-11-24T05:08:21Z<p>By default, global variables have <em>external linkage</em>, which means that they can be used by other source files (or "translation units"). If you instead declare your global variables with the <code>static</code> keyword, they will have <em>internal linkage</em>, meaning they will not be usable by other source files.</p>
<p>For variables with external linkage, you can't have multiple variables with the same name, or the linker will complain. You can have two variables with the same name, though, as long as at least one has internal linkage, and of course you can't reference both of them in the same source file.</p>
<p>An <code>extern</code> declaration is just saying to the compiler "here is the name of some variable with external linkage defined in another translation unit," allowing you to refer to that variable.</p>
<p>C++ is exactly the same, except for the addition of namespaces. If global variables are put inside a namespace, then they can have the same name without linker errors, provided they are in different namespaces. Of course, all references to those variables then have to either refer to the full name <code>namespace::var_name</code>, or use a <code>using</code> declaration to establish a local namespace context.</p>
<p>C++ also has anonymous namespaces, which are entirely equivalent to using the <code>static</code> keyword for global variables in C: all variables and functions declared inside an anonymous namespace have internal linkage.</p>
<p>So, to answer your original question, you are right -- compilation would succeed, but linking would fail, due to multiple definitions of the variable <code>x</code> with external linkage (specifically, from the translation units <code>one.c</code> and <code>two.c</code>).</p>
<p>From <code>three.c</code>, there is no way to refer simultaneously to both variables <code>x</code>. You'll need to rename <code>x</code> in one or both modules, or switch to C++ and put at least one <code>x</code> inside a namespace.</p>
http://stackoverflow.com/questions/1787752/is-there-a-g-equivalent-to-visual-studios-declspecnovtable/1787870#17878702Answer by Adam Rosenfield for Is there a g++ equivalent to Visual Studio's __declspec(novtable)? Adam Rosenfield2009-11-24T04:53:01Z2009-11-24T04:53:01Z<p>I don't think there is one -- if there was, it would be listed under the <a href="http://gcc.gnu.org/onlinedocs/gcc/Type-Attributes.html" rel="nofollow">type attributes page</a> of the GCC manual. GCC uses type attributes to add extra annotations to types (such as alignment and padding), but there is no type attribute equivalent to <code>__declspc(novtable)</code> listed there.</p>
<p>I also don't see any compiler flag in the <a href="http://linux.die.net/man/1/gcc" rel="nofollow">man page</a> relating to this optimization.</p>
http://stackoverflow.com/questions/1787356/use-imagemagick-to-place-an-image-inside-a-larger-canvas/1787402#17874020Answer by Adam Rosenfield for Use ImageMagick to place an image inside a larger canvasAdam Rosenfield2009-11-24T02:25:54Z2009-11-24T02:25:54Z<p>See <a href="http://www.imagemagick.org/Usage/crop/" rel="nofollow">cutting and bordering</a> for a huge number of examples. Here's one simple way you might do it:</p>
<pre><code>convert input.png -bordercolor Black -border 5x5 output.png
</code></pre>
<p>Of course, you'll need to calculate the size of the border to add (if any) based on the dimensions of the input image. Are you using an ImageMagick API, or just the command line tools?</p>
http://stackoverflow.com/questions/1787249/why-doesnt-this-division-work-in-python/1787260#17872603Answer by Adam Rosenfield for Why doesn't this division work in python?Adam Rosenfield2009-11-24T01:35:49Z2009-11-24T01:35:49Z<p>In Python 2.x, division works like it does in C-like languages: if both arguments are integers, the result is truncated to an integer, so 29/1009 is 0. 0 as a float is 0.0. To fix it, cast to a float before dividing:</p>
<pre><code>print str(float(numerator)/denominator)
</code></pre>
<p>In Python 3.x, the division acts more naturally, so you'll get the correct mathematical result (within floating-point error).</p>
http://stackoverflow.com/questions/1932222/c-vector-vs-array-timeComment by Adam Rosenfield on C++ Vector vs Array (Time)Adam Rosenfield2009-12-19T16:38:28Z2009-12-19T16:38:28ZImportant note: Even though you arrive at the correct conclusion, you're not performing a proper comparison. You perform N^2 iterations of the innermost loop (the <code>v[i] = true</code> statement), but N is 2000 in one test and 10000 in the other, so you're really doing 25 times as much work, not 5 times as much, aside from the difference between a <code>vector</code> and a plain array. This actually makes the difference even more pronounced.http://stackoverflow.com/questions/1929588/x86-howto-catch-data-alignment-faults-aka-sigbus-on-sparc/1929757#1929757Comment by Adam Rosenfield on x86: howto catch data-alignment faults (aka SIGBUS on sparc)Adam Rosenfield2009-12-19T05:49:08Z2009-12-19T05:49:08ZToo bad CR0 can't be modified in user-mode. You'll need to get your OS to cooperate if you want to set the AM flag in CR0.http://stackoverflow.com/questions/1931126/is-it-good-practice-to-null-a-pointer-after-deleting-it/1931171#1931171Comment by Adam Rosenfield on Is it good practice to NULL a pointer after deleting it?Adam Rosenfield2009-12-18T23:10:42Z2009-12-18T23:10:42ZYour application won't always crash on a double delete. Depending on what happens between the two deletes, anything could happen. Most likely, you'll corrupt your heap, and you'll crash at some point later in a completely unrelated piece of code. While a segfault is usually better than silently ignoring the error, the segfault isn't guaranteed in this case, and it's of questionable utility.http://stackoverflow.com/questions/1921539/using-boolean-values-in-c/1921557#1921557Comment by Adam Rosenfield on Using boolean values in CAdam Rosenfield2009-12-18T05:01:47Z2009-12-18T05:01:47ZOption 5 (C99): Use <code>_Bool</code>, <code>_True</code>, and <code>_False</code>http://stackoverflow.com/questions/1911965/emacs-how-can-i-copy-the-end-of-the-line-starting-one-line-above-the-cursorComment by Adam Rosenfield on [emacs] How can I copy the end of the line starting one line above the cursor?Adam Rosenfield2009-12-16T03:05:22Z2009-12-16T03:05:22ZCan you rephrase that? I can't understand what you're saying.http://stackoverflow.com/questions/1868719/sigsegv-seemingly-caused-by-printf/1869921#1869921Comment by Adam Rosenfield on SIGSEGV, (seemingly) caused by printfAdam Rosenfield2009-12-09T05:59:38Z2009-12-09T05:59:38ZAh, good to know. Maybe I should finally upgrade away from 10.4. And yes, Valgrind does indeed rock hard.http://stackoverflow.com/questions/1856468/how-to-output-ieee-754-format-integer-as-a-float/1856489#1856489Comment by Adam Rosenfield on How to output IEEE-754 format integer as a floatAdam Rosenfield2009-12-06T20:52:06Z2009-12-06T20:52:06ZDoesn't even compile.http://stackoverflow.com/questions/1856468/how-to-output-ieee-754-format-integer-as-a-float/1856476#1856476Comment by Adam Rosenfield on How to output IEEE-754 format integer as a floatAdam Rosenfield2009-12-06T20:50:01Z2009-12-06T20:50:01ZI'd leave it in -- type-punning with pointers is a common technique despite its wrongness. Many compilers don't follow the strict aliasing rules (heck, there isn't even a single fully C99-compliant compiler 10 years after the standard), but it's still worth knowing about.http://stackoverflow.com/questions/1856468/how-to-output-ieee-754-format-integer-as-a-float/1856483#1856483Comment by Adam Rosenfield on How to output IEEE-754 format integer as a floatAdam Rosenfield2009-12-06T20:45:20Z2009-12-06T20:45:20ZNo -- floats get implicitly converted to doubles when passed to variadic functions like <code>printf</code>, and so the <code>%f</code> format specifier expects an 8-byte double, not a 4-byte unsigned long. You're going to get garbage.http://stackoverflow.com/questions/1856468/how-to-output-ieee-754-format-integer-as-a-float/1856476#1856476Comment by Adam Rosenfield on How to output IEEE-754 format integer as a floatAdam Rosenfield2009-12-06T20:43:09Z2009-12-06T20:43:09ZBad idea. This breaks the C99 strict aliasing rules, and an aggressive optimizing compiler could produce the incorrect result. See <a href="http://cellperformance.beyond3d.com/articles/2006/06/understanding-strict-aliasing.html" rel="nofollow">cellperformance.beyond3d.com/articles/2006/…</a> .http://stackoverflow.com/questions/1855904/gmail-account-creatorComment by Adam Rosenfield on gmail account creatorAdam Rosenfield2009-12-06T17:16:00Z2009-12-06T17:16:00ZThis is expressly against Section 5.3 of Google's Terms of Service: <a href="http://www.google.com/accounts/TOS?hl=en" rel="nofollow">google.com/accounts/TOS?hl=en</a>http://stackoverflow.com/questions/1853062/c-operator-overloading-and-error-handling/1853091#1853091Comment by Adam Rosenfield on c++: Operator overloading and error handling Adam Rosenfield2009-12-05T19:03:05Z2009-12-05T19:03:05ZI think he means a vector with 2 elements (i.e. a point in 2D space), not a 2D matrix.http://stackoverflow.com/questions/1851078/random-bytes-with-freadComment by Adam Rosenfield on Random bytes with freadAdam Rosenfield2009-12-05T04:37:52Z2009-12-05T04:37:52ZWhy is your code littered with disgusting <code>#ifdefs</code> for ANSI/Unicode strings? You don't need to reinvent the wheel -- Windows already provides the <code>TCHAR</code> data type (maps to <code>char</code> or <code>wchar_t</code> depending on if <code>UNICODE</code> is defined), the <code>TEXT</code> and <code>_T</code> macros for creating string constants, and a huge library of macros such as <code>_tfopen()</code> that map to their ANSI/Unicode equivalents as appropriate.http://stackoverflow.com/questions/137783/given-a-function-which-produces-a-random-integer-in-the-range-1-to-5-write-a-fun/1700617#1700617Comment by Adam Rosenfield on Given a function which produces a random integer in the range 1 to 5, write a function which produces a random integer in the range 1 to 7Adam Rosenfield2009-12-05T03:40:23Z2009-12-05T03:40:23ZThis does not produce a uniform distribution. This produces the numbers 0-6 with probabilities 2/25, 4/25, 5/25, 5/25, 5/25, 3/25, 1/25, as can be verified by counting all 25 possible outcomes.http://stackoverflow.com/questions/1844162/assisting-in-avoiding-assert-alwaysComment by Adam Rosenfield on Assisting in avoiding assert... always!Adam Rosenfield2009-12-05T03:00:57Z2009-12-05T03:00:57Z@drhirsch: A failed assertion kills the program with <code>abort(3)</code>, which raises the SIGART signal, which by default kills the program and dumps core; if it doesn't dump core, you may have set your core file limit to 0. Use <code>ulimit(1)</code> or <code>setrlimit(2)</code> to raise that limit.