User Larry Gritz - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T07:36:51Z http://stackoverflow.com/feeds/user/3832 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/69738/c-how-to-get-fprintf-results-as-a-stdstring-w-o-sprintf/69911#69911 6 Answer by Larry Gritz for C++: how to get fprintf results as a std::string w/o sprintf Larry Gritz 2008-09-16T06:52:13Z 2009-08-27T22:19:18Z <p>Here's the idiom I like for making functionality identical to 'sprintf', but returning a std::string, and immune to buffer overflow problems. This code is part of an open source project that I'm writing (BSD license), so everybody feel free to use this as you wish.</p> <pre><code>#include &lt;string&gt; #include &lt;cstdarg&gt; #include &lt;vector&gt; #include &lt;string&gt; std::string format (const char *fmt, ...) { va_list ap; va_start (ap, fmt); std::string buf = vformat (fmt, ap); va_end (ap); return buf; } std::string vformat (const char *fmt, va_list ap) { // Allocate a buffer on the stack that's big enough for us almost // all the time. size_t size = 1024; char buf[size]; // Try to vsnprintf into our buffer. va_list apcopy; va_copy (apcopy, ap); int needed = vsnprintf (&amp;buf[0], size, fmt, ap); // NB. On Windows, vsnprintf returns -1 if the string didn't fit the // buffer. On Linux &amp; OSX, it returns the length it would have needed. if (needed &lt;= size &amp;&amp; needed &gt;= 0) { // It fit fine the first time, we're done. return std::string (&amp;buf[0]); } else { // vsnprintf reported that it wanted to write more characters // than we allotted. So do a malloc of the right size and try again. // This doesn't happen very often if we chose our initial size // well. std::vector &lt;char&gt; buf; size = needed; buf.resize (size); needed = vsnprintf (&amp;buf[0], size, fmt, apcopy); return std::string (&amp;buf[0]); } } </code></pre> <p>EDIT: when I wrote this code, I had no idea that this required C99 conformance and that Windows (as well as older glibc) had different vsnprintf behavior, in which it returns -1 for failure, rather than a definitive measure of how much space is needed. Here is my revised code, could everybody look it over and if you think it's ok, I will edit again to make that the only cost listed:</p> <pre><code>std::string Strutil::vformat (const char *fmt, va_list ap) { // Allocate a buffer on the stack that's big enough for us almost // all the time. Be prepared to allocate dynamically if it doesn't fit. size_t size = 1024; char stackbuf[1024]; std::vector&lt;char&gt; dynamicbuf; char *buf = &amp;stackbuf[0]; while (1) { // Try to vsnprintf into our buffer. int needed = vsnprintf (buf, size, fmt, ap); // NB. C99 (which modern Linux and OS X follow) says vsnprintf // failure returns the length it would have needed. But older // glibc and current Windows return -1 for failure, i.e., not // telling us how much was needed. if (needed &lt;= (int)size &amp;&amp; needed &gt;= 0) { // It fit fine so we're done. return std::string (buf, (size_t) needed); } // vsnprintf reported that it wanted to write more characters // than we allotted. So try again using a dynamic buffer. This // doesn't happen very often if we chose our initial size well. size = (needed &gt; 0) ? (needed+1) : (size*2); dynamicbuf.resize (size); buf = &amp;dynamicbuf[0]; } } </code></pre> http://stackoverflow.com/questions/1126445/why-does-strlen-return-a-64-bit-integer-am-i-missing-somthing/1126897#1126897 2 Answer by Larry Gritz for Why does strlen() return a 64-bit integer? Am i missing somthing? Larry Gritz 2009-07-14T17:39:07Z 2009-07-14T17:39:07Z <p>It's not about whether anybody will actually make a string that size. By convention, ALL return types that indicate the number of bytes something occupies in memory are size_t.</p> http://stackoverflow.com/questions/1077028/starting-a-software-company-101/1077090#1077090 1 Answer by Larry Gritz for Starting a software company 101 Larry Gritz 2009-07-02T22:54:54Z 2009-07-02T22:54:54Z <p>This book is pretty helpful: John Nesheim, "High Tech Startup".</p> <p>Also, several books from <a href="http://www.nolo.com" rel="nofollow">Nolo Press</a> are excellent, take a look at their catalog.</p> <p>I love Stack Overflow, but these decisions are too important to "crowdsource." Get a good corporate attorney, he or she can answer these questions, tailored to your particular situation. Screwing these things up (like where and how to incorporate) will be a HUGE pain down the road, and will cost you tens or hundreds of times what it would cost for a few hours of lawyer to get it right from the start.</p> http://stackoverflow.com/questions/936937/which-exif-tag-to-store-keyword-tag-for-a-photo/1056241#1056241 2 Answer by Larry Gritz for Which EXIF tag to store keyword/tag for a photo? Larry Gritz 2009-06-29T01:36:41Z 2009-06-29T01:36:41Z <p>There's no EXIF tag for this, but there is an IPTC "keywords" tag. JPEG can handle IPTC records, so there should be no problem.</p> http://stackoverflow.com/questions/1050919/how-would-you-align-pictures/1056230#1056230 1 Answer by Larry Gritz for How would you align pictures? Larry Gritz 2009-06-29T01:33:06Z 2009-06-29T01:33:06Z <p>This isn't a real answer to your question, but the technique is called "registration". You may have better luck with a google search on "image registration".</p> http://stackoverflow.com/questions/1054096/what-is-a-dependent-texture-read/1056222#1056222 0 Answer by Larry Gritz for What is a dependent texture read? Larry Gritz 2009-06-29T01:28:45Z 2009-06-29T01:28:45Z <p>A "dependent texture read" is when return values from one texture lookup are used to determine WHERE to look up from a second texture. An important implication is that the texture coordinates (where you look up from) is not determined until the middle of execution of the shader... there's no kind of static analysis you can do on the shader (even knowing the values of all parameters) that will tell you what the coordinates will be ahead of time. It also <em>strictly</em> orders the two texture reads and limits how much the execution order could be changed by optimizations in the driver, etc.</p> <p>On older graphics cards, there used to be quite a few limitations on this kind of thing. For example, at one point (IIRC) you could look up from multiple textures but only with a small number of distinct texture coordinates. The hardware was actually implemented in a way that certain types of dependent texture reads were either impossible or very inefficient.</p> <p>In the latest generation or two of cards, you shouldn't have to worry about this. But you may be reading books or articles from a couple years ago when you really did have to pay close attention to such things.</p> http://stackoverflow.com/questions/1046068/would-one-have-to-know-the-machine-architecture-to-write-code/1046737#1046737 0 Answer by Larry Gritz for Would one have to know the machine architecture to write code? Larry Gritz 2009-06-25T23:43:56Z 2009-06-25T23:43:56Z <p>A 32 bit machine will allow you to have a maximum of 4 GB of addressable virtual memory. (In practice, it's even less than that, usually 2 GB or 3 GB depending on the OS and various linker options.) On a 64 bit machine, you can have a HUGE virtual address space (in any practical sense, limited only by disk) and a pretty damn big RAM.</p> <p>So if you are expecting 6GB data sets for some computation (let's say something that needs incoherent access and can't just be streamed a bit at a time), on a 64 bit architecture you could just read it into RAM and do your stuff, whereas on a 32 bit architecture you need a fundamentally different way to approach it, since you simply do not have the option of keeping the entire data set resident.</p> http://stackoverflow.com/questions/724942/md5-code-coverage/959102#959102 0 Answer by Larry Gritz for MD5 Code Coverage Larry Gritz 2009-06-06T06:06:31Z 2009-06-06T06:06:31Z <p>I know this is not technically an answer to your programming question, but I honestly think the most valuable advice I can give you is that you should use a widely-used and well-vetted MD5 (or any other crypto) algorithm, DO NOT roll your own. How can I put this delicately... this advice is doubly true if you are asking questions about integer math. The road to hell is littered with the bodies of people who tried to implement tricky crypto themselves without fully understanding what they were doing, and ended up leaving gaping security holes in the process. Be smart, use somebody else's debugged implementation, use your own valuable time to implement parts of the system you can't get from someplace else.</p> http://stackoverflow.com/questions/860602/recommended-open-source-profilers/860981#860981 4 Answer by Larry Gritz for Recommended Open Source Profilers Larry Gritz 2009-05-13T23:48:55Z 2009-05-13T23:48:55Z <ul> <li><a href="http://valgrind.org/info/tools.html" rel="nofollow">Valgrind</a> (And related tools like cachegrind, etc.)</li> <li><a href="http://goog-perftools.sourceforge.net/" rel="nofollow">Google performance tools</a></li> </ul> http://stackoverflow.com/questions/848126/well-written-c-examples/849112#849112 0 Answer by Larry Gritz for Well written C++ examples Larry Gritz 2009-05-11T17:22:16Z 2009-05-11T17:22:16Z <p>How about: <em>Programming: Principles and Practice Using C++</em> by Bjarne Stroustrup?</p> http://stackoverflow.com/questions/779550/are-there-any-rendering-alternatives-to-rasterisation-or-ray-tracing/786967#786967 10 Answer by Larry Gritz for Are there any rendering alternatives to rasterisation or ray tracing? Larry Gritz 2009-04-24T18:04:47Z 2009-04-25T00:09:25Z <p>Aagh! These answers are very uninformed!</p> <p>Of course, it doesn't help that the question is imprecise.</p> <p>OK, "rendering" is a really wide topic. One issue within rendering is camera visibility or "hidden surface algorithms" -- figuring out what objects are seen in each pixel. There are various categorizations of visibility algorithms. That's <strong>probably</strong> what the poster was asking about (given that they thought of it as a dichotomy between "rasterization" and "ray tracing").</p> <p>A classic (though now somewhat dated) categorization reference is Sutherland et al "A Characterization of Ten Hidden-Surface Algorithms", ACM Computer Surveys 1974. It's very outdated, but it's still excellent for providing a framework for thinking about how to categorize such algorithms.</p> <p>One class of hidden surface algorithms involves "ray casting", which is computing the intersection of the line from the camera through each pixel with objects (which can have various representations, including triangles, algebraic surfaces, NURBS, etc.).</p> <p>Other classes of hidden surface algorithms include "z-buffer", "scanline techniques", "list priority algorithms", and so on. They were pretty darned creative with algorithms back in the days when there weren't many compute cycles and not enough memory to store a z-buffer.</p> <p>These days, both compute and memory are cheap, and so three techniques have pretty much won out: (1) dicing everything into triangles and using a z-buffer; (2) ray casting; (3) Reyes-like algorithms that uses an extended z-buffer to handle transparency and the like. Modern graphics cards do #1; high-end software rendering usually does #2 or #3 or a combination. Though various ray tracing hardware has been proposed, and sometimes built, but never caught on, and also modern GPUs are now programmable enough to actually ray trace, though at a severe speed disadvantage to their hard-coded rasterization techniques. Other more exotic algorithms have mostly fallen by the wayside over the years. (Although various sorting/splatting algorithms can be used for volume rendering or other special purposes.)</p> <p>"Rasterizing" really just means "figuring out which pixels an object lies on." Convention dictates that it excludes ray tracing, but this is shaky. I suppose you could justify that rasterization answers "which pixels does this shape overlap" whereas ray tracing answers "which object is behind this pixel", if you see the difference.</p> <p>Now then, hidden surface removal is not the only problem to be solved in the field of "rendering." Knowing what object is visible in each pixel is only a start; you also need to know what color it is, which means having some method of computing how light propagates around the scene. There are a whole bunch of techniques, usually broken down into dealing with shadows, reflections, and "global illumination" (that which bounces between objects, as opposed to coming directly from lights).</p> <p>"Ray tracing" means applying the ray casting technique to also determine visibility for shadows, reflections, global illumination, etc. It's possible to use ray tracing for everything, or to use various rasterization methods for camera visibility and ray tracing for shadows, reflections, and GI. "Photon mapping" and "path tracing" are techniques for calculating certain kinds of light propagation (using ray tracing, so it's just wrong to say they are somehow fundamentally a different rendering technique). There are also global illumination techniques that don't use ray tracing, such as "radiosity" methods (which is a finite element approach to solving global light propagation, but in most parts of the field have fallen out of favor lately). But using radiosity or photon mapping for light propagation STILL requires you to make a final picture somehow, generally with one of the standard techniques (ray casting, z buffer/rasterization, etc.).</p> <p>People who mention specific shape representations (NURBS, volumes, triangles) are also a little confused. This is an orthogonal problem to ray trace vs rasterization. For example, you can ray trace nurbs directly, or you can dice the nurbs into triangles and trace them. You can directly rasterize triangles into a z-buffer, but you can also directly rasterize high-order parametric surfaces in scanline order (c.f. Lane/Carpenter/etc CACM 1980).</p> http://stackoverflow.com/questions/116701/how-can-a-c-c-program-put-itself-into-background 6 How can a C/C++ program put itself into background? Larry Gritz 2008-09-22T18:44:02Z 2009-04-08T19:11:06Z <p>What's the best way for a running C or C++ program that's been launched from the command line to put itself into the background, equivalent to if the user had launched from the unix shell with '&amp;' at the end of the command? (But the user didn't.) It's a GUI app and doesn't need any shell I/O, so there's no reason to tie up the shell after launch. But I want a shell command launch to be auto-backgrounded without the '&amp;' (or on Windows).</p> <p>Ideally, I want a solution that would work on any of Linux, OS X, and Windows. (Or separate solutions that I can select with #ifdef.) It's ok to assume that this should be done right at the beginning of execution, as opposed to somewhere in the middle.</p> <p>One solution is to have the main program be a script that launches the real binary, carefully putting it into the background. But it seems unsatisfying to need these coupled shell/binary pairs.</p> <p>Another solution is to immediately launch <em>another</em> executed version (with 'system' or CreateProcess), with the same command line arguments, but putting the child in the background and then having the parent exit. But this seems clunky compared to the process putting <em>itself</em> into background.</p> <p><strong>Edited after a few answers</strong>: Yes, a fork() (or system(), or CreateProcess on Windows) is one way to sort of do this, that I hinted at in my original question. But all of these solutions make a SECOND process that is backgrounded, and then terminate the original process. I was wondering if there was a way to put the EXISTING process into the background. One difference is that if the app was launched from a script that recorded its process id (perhaps for later killing or other purpose), the newly forked or created process will have a different id and so will not be controllable by any launching script, if you see what I'm getting at.</p> <p><strong>Edit #2</strong>: </p> <p>fork() isn't a good solution for OS X, where the man page for 'fork' says that it's unsafe if certain frameworks or libraries are being used. I tried it, and my app complains loudly at runtime: "The process has forked and you cannot use this CoreFoundation functionality safely. You MUST exec()." </p> <p>I was intrigued by daemon(), but when I tried it on OS X, it gave the same error message, so I assume that it's just a fancy wrapper for fork() and has the same restrictions.</p> <p>Excuse the OS X centrism, it just happens to be the system in front of me at the moment. But I am indeed looking for a solution to all three platforms.</p> http://stackoverflow.com/questions/687813/are-c-int-operations-atomic-on-the-mips-architecture/687981#687981 2 Answer by Larry Gritz for Are C++ int operations atomic on the mips architecture Larry Gritz 2009-03-26T23:51:51Z 2009-03-26T23:51:51Z <p>The question invites misleading answers.</p> <p>You can only authoritatively answer "is it atomic" questions about assembly/machine language.</p> <p>Any given C/C++ code fragment makes no guarantees, can vary depending on exactly which compiler (and version) you use, etc. (Unless you call some platform-specific intrinsic or whatnot that is guaranteed to compile to a known atomic machine instruction.)</p> http://stackoverflow.com/questions/374147/what-is-boost-missing/687048#687048 6 Answer by Larry Gritz for What is Boost missing? Larry Gritz 2009-03-26T18:40:50Z 2009-03-26T18:40:50Z <p>boost::atomic</p> http://stackoverflow.com/questions/682434/whats-the-difference-between-these-two-classes/682600#682600 0 Answer by Larry Gritz for What's the difference between these two classes? Larry Gritz 2009-03-25T17:22:42Z 2009-03-25T17:22:42Z <p>One practical difference is that in your second example, you never release either the memory for the vector, or its contents (because you don't delete it, and therefore call its destructor).</p> <p>But the first example will automatically destroy the vector (and free its contents) upon destruction of your FieldStorage object.</p> http://stackoverflow.com/questions/621220/null-pointer-with-boostsharedptr/621430#621430 0 Answer by Larry Gritz for NULL pointer with boost::shared_ptr? Larry Gritz 2009-03-07T06:33:54Z 2009-03-07T06:33:54Z <p>Well, this is legal:</p> <pre><code>shared_ptr&lt;Foo&gt; foo; /* don't assign */ </code></pre> <p>And in this state, it doesn't point to anything. You can even test this property:</p> <pre><code>if (foo) { // it points to something } else { // no it doesn't } </code></pre> <p>So why not do this:</p> <pre><code>std::vector &lt; shared_ptr&lt;Foo&gt; &gt; vec; vec.push_back (shared_ptr&lt;Foo&gt;); // push an unassigned one </code></pre> http://stackoverflow.com/questions/496702/can-a-shell-script-set-environment-variables-of-the-calling-shell 3 Can a shell script set environment variables of the calling shell? Larry Gritz 2009-01-30T18:50:22Z 2009-02-20T05:50:00Z <p>I'm trying to write a shell script that, when run, will set some environment variables that will stay set in the caller's shell.</p> <pre><code>setenv FOO foo </code></pre> <p>in csh/tcsh, or</p> <pre><code>export FOO=foo </code></pre> <p>in sh/bash only set it during the script's execution.</p> <p>I already know that </p> <pre><code>source myscript </code></pre> <p>will run the commands of the script rather than launching a new shell, and that can result in setting the "caller's" environment.</p> <p>But here's the rub:</p> <p>I want this script to be callable from either bash or csh. In other words, I want users of either shell to be able to run my script and have their shell's environment changed. So 'source' won't work for me, since a user running csh can't source a bash script, and a user running bash can't source a csh script.</p> <p>Is there any reasonable solution that doesn't involve having to write and maintain TWO versions on the script?</p> http://stackoverflow.com/questions/552540/why-are-some-programs-written-in-c-windows-only-and-others-are-not/553804#553804 0 Answer by Larry Gritz for Why are some programs written in C++ windows-only and others are not? Larry Gritz 2009-02-16T16:04:35Z 2009-02-16T16:04:35Z <p>Others have commented on GUIs and use of other libraries that exist on only a subset of major platforms.</p> <p>Another factor is the developers. Many developers (or software companies) only have expertise, access to, customer demand for, or need to use a single platform, and so they don't spend the extra effort to make their software cross-platform. For example, if a company has a Windows PC and developer tools on everybody's desk, no Linux or Mac machines in house to develop or test on, and no developers who are experts on those other platforms, and no large customers demanding a different platform, it's hard for them to justify not just plowing ahead with a Windows-only package. And if they change their mind later, when they have the expertise, equipment, or additional requirements, they may find it's too late to fix a large code base that has been allowed to become very platform-dependent. </p> <p>Platform-independence takes real effort, every step of the way. If you start from day one with a plan, use cross-platform libraries (e.g., Qt, boost, OpenGL, etc., carefully avoiding MFC, DirectX, etc.), and build and test on all platforms regularly, it's probably only 10-20% more effort to make a good cross-platform app. But if you start with a one-platform app that's been in development for a long time, making it cross-platform can take as much effort as writing it from scratch, and that can be especially hard to justify if the new platform has a comparatively small market share in your industry or if your developers hate working on it.</p> http://stackoverflow.com/questions/505476/why-does-cstr-print-the-string-twice/508391#508391 5 Answer by Larry Gritz for Why does c_str() print the string twice? Larry Gritz 2009-02-03T18:46:36Z 2009-02-03T18:46:36Z <p>A traditional C string (really a char*) has a sequence of characters terminated by a character 0. (Not the numeral '0', but an actual zero value, which we write as '\0'.) There's no explicit length -- so various string operations just read one character at a time until it hits the '\0'.</p> <p>A C++ std::string has an explicit length in its structure.</p> <p>Is it possible that the memory layout of your string's characters looks like this:</p> <pre><code>'NTNT\0' </code></pre> <p>but the string's length is set to 2?</p> <p>That would result in exactly this behavior -- manipulating the std::string directly will act like it's just two characters long, but if you do traditional C operations using s.c_str(), it will look like "NTNT".</p> <p>I'm not sure what shenanigans would get you into this state, but it would certainly match the symptoms.</p> <p>One way you could get into this state would be to actually <em>write</em> to the string's characters, something like: strcat((char *)s.c_str(), "NT")</p> http://stackoverflow.com/questions/496487/is-it-acceptable-not-to-deallocate-memory/496743#496743 2 Answer by Larry Gritz for Is it acceptable not to deallocate memory Larry Gritz 2009-01-30T18:59:40Z 2009-01-30T18:59:40Z <p>I've done this before, only to find that, much later, I needed the program to be able to process several inputs without separate commands, or that the guts of the program were so useful that they needed to be turned into a library routine that could be called many times from within another program that was not expected to terminate. It was much harder to go back later and re-engineer the program than it would have been to make it leak-less from the start.</p> <p>So, while it's technically safe as you've described the requirements, I advise against the practice since it's likely that your requirements may someday change.</p> http://stackoverflow.com/questions/452827/why-do-locks-work/452880#452880 3 Answer by Larry Gritz for Why do locks work? Larry Gritz 2009-01-17T06:08:44Z 2009-01-17T06:08:44Z <p>The simplest explanation is that the locks, way down underneath, are based on a hardware instruction that is guaranteed to be atomic and can't clash between threads.</p> <p>Ordinary local variables in a function are already specific to an individual thread. It's only statics, globals, or other data that can be simultaneously accessed by multiple threads that needs to have locks protecting it.</p> http://stackoverflow.com/questions/451434/can-two-processes-render-to-one-opengl-canvas/452248#452248 1 Answer by Larry Gritz for Can two processes render to one OpenGL canvas ? Larry Gritz 2009-01-16T22:14:11Z 2009-01-16T22:14:11Z <p>My understanding is that this is not possible with any existing drivers. An OpenGL context is owned by just one process.</p> <p>It's even dicey for two threads within a single process to each be making OpenGL calls to a single OpenGL context. (That doesn't need to be so by design, but it is often a problem with current drivers.)</p> http://stackoverflow.com/questions/436367/best-way-to-safely-printf-to-a-string/436549#436549 2 Answer by Larry Gritz for Best way to safely printf to a string? Larry Gritz 2009-01-12T18:55:00Z 2009-01-12T18:55:00Z <p><a href="http://stackoverflow.com/questions/69738/c-how-to-get-fprintf-results-as-a-stdstring-w-o-sprintf#69911">This StackOverflow question</a> has a similar discussion. Also in that question I present my favorite solution, a "format" function that takes identical arguments to printf and returns a std::string. </p> http://stackoverflow.com/questions/429632/how-to-speed-up-floating-point-to-integer-number-conversion/430668#430668 5 Answer by Larry Gritz for How to speed up floating-point to integer number conversion? Larry Gritz 2009-01-10T06:26:53Z 2009-01-10T06:26:53Z <p>Most of the other answers here just try to eliminate loop overhead.</p> <p>Only Caspin's answer gets to the heart of what is likely the real problem -- that converting floating point to integers is shockingly expensive on an x86 processor. Caspin's solution is correct, though he gives no citation or explanation.</p> <p>Here is the source of the trick, with some explanation and also versions specific to whether you want to round up, down, or toward zero: <a href="http://www.stereopsis.com/sree/fpu2006.html" rel="nofollow">Know your FPU</a></p> <p>Sorry to provide a link, but really anything written here, short of reproducing that excellent article, is not going to make things clear.</p> http://stackoverflow.com/questions/405112/how-are-objects-stored-in-memory-in-c/405141#405141 9 Answer by Larry Gritz for How are objects stored in memory in C++? Larry Gritz 2009-01-01T16:52:18Z 2009-01-01T22:34:16Z <p>Almost. You cast to an Object*, and neglected to take an address. Let's re-ask as the following:</p> <pre><code>((int*)&amp;myObject)[0] == i1 </code></pre> <p>You have to be really careful with assumptions like this. As you've defined the structure, this should be true in any compiler you're likely to come across. But all sorts of other properties of the object (which you may have omitted from your example) will, as others said, make it non-POD and could (possibly in a compiler-dependent way) make the above statement not true.</p> <p>Note that I wouldn't be so quick to tell you it would work if you had asked about i3 -- in that case, even for plain POD, alignment or endianness could easily screw you up.</p> <p>In any case, you should be avoiding this kind of thing, if possible. Even if it works fine now, if you (or anybody else who doesn't understand that you're doing this trick) ever changes the structure order or adds new fields, this trick will fail in all the places you've used it, which may be hard to find.</p> <p>Answer to your edit: If that's your entire class definition, and you're using one of the mainstream compilers with default options, and running on an x86 processor, then yes, you've probably guessed the right memory layout. But choice of compiler, compiler options, and different CPU architecture could easily invalidate your assumptions.</p> http://stackoverflow.com/questions/390385/cannot-convert-to/390590#390590 1 Answer by Larry Gritz for Cannot convert (*)[] to ** Larry Gritz 2008-12-24T01:41:12Z 2008-12-24T18:32:54Z <p>The problem is that a double** is a pointer to a pointer. Your 'f' function wants to be passed the address of a pointer to a double. If you call f(var), well, where exactly do you think that pointer is? It doesn't exist.</p> <p>This will work:</p> <pre><code>double *tmp = (double *) var; f (&amp;tmp); </code></pre> <p>Also, it would work to change the definition of f:</p> <pre><code>void f (double a[4][2]) { } </code></pre> <p>Now f takes a pointer to the kind of array you have. That will work.</p> http://stackoverflow.com/questions/389180/assert-and-ndebug/389901#389901 1 Answer by Larry Gritz for assert and NDEBUG Larry Gritz 2008-12-23T19:53:15Z 2008-12-23T19:53:15Z <p>I like to define my own assertion macros. I make two -- ASSERT tests always (even for optimized builds) and DASSERT only has an effect for debug builds. You probably want to default to ASSERT, but if something is expensive to test, or assertions inside inner loops of performance-sensitive areas can be changed to DASSERT.</p> <p>Also, remember, that assertions should only be used for totally nonsensical conditions that indicate a logical error in your program and from which you can't recover. It's a test of your programming correctness. Assertions should NEVER be used in place of error handling, exceptions, or robustness, and you should never assert anything related to malformed or incorrect user input -- such things should be handled gracefully. An assertion is just a controlled crash where you have the opportunity to output some extra debugging info.</p> <p>Here are my macros:</p> <pre><code>/// ASSERT(condition) checks if the condition is met, and if not, calls /// ABORT with an error message indicating the module and line where /// the error occurred. #ifndef ASSERT #define ASSERT(x) \ if (!(x)) { \ char buf[2048]; \ snprintf (buf, 2048, "Assertion failed in \"%s\", line %d\n" \ "\tProbable bug in software.\n", \ __FILE__, __LINE__); \ ABORT (buf); \ } \ else // This 'else' exists to catch the user's following semicolon #endif /// DASSERT(condition) is just like ASSERT, except that it only is /// functional in DEBUG mode, but does nothing when in a non-DEBUG /// (optimized, shipping) build. #ifdef DEBUG # define DASSERT(x) ASSERT(x) #else # define DASSERT(x) /* DASSERT does nothing when not debugging */ #endif </code></pre> http://stackoverflow.com/questions/388264/setting-up-a-mac-for-programmers/388324#388324 8 Answer by Larry Gritz for Setting up a Mac for programmers Larry Gritz 2008-12-23T06:53:38Z 2008-12-23T06:53:38Z <p>Install all the Mac dev stuff, XCode etc., so you get the compilers.</p> <p>For sure, Macports. Look through their catalog and install all the usual packages you're used to from Linux or other systems -- including development-related stuff like flex/bison, emacs, doxygen, m4, perl, python, etc.</p> <p>I prefer "iTerm" over the built-in terminal. Don't forget to "export COMMAND_MODE=unix2003" that makes a number of things work the way you're used to.</p> <p>I haven't given URLs for any of the things I've mentioned. That's what Google is for.</p> http://stackoverflow.com/questions/384200/c-operator-ambiguity/384210#384210 1 Answer by Larry Gritz for C++ Operator Ambiguity Larry Gritz 2008-12-21T07:09:49Z 2008-12-21T07:37:40Z <p>It's too hard to get rid of the ambiguity. It could easily interpret it as the direct [] access, or cast-to-float* followed by array indexing. </p> <p>My advice is to drop the operator GLfloat*. It's just asking for trouble to have implicit casts to float this way. If you must access the floats directly, make a get() (or some other name of your choice) method to Vector4 that returns a pointer to the raw floats underneath.</p> <p>Other random advice: rather than reinvent your own vector classes, you should use the excellent ones in the "IlmBase" package that is part of <a href="http://www.openexr.com/downloads.html" rel="nofollow">OpenEXR</a></p> http://stackoverflow.com/questions/372484/how-do-i-programmatically-check-memory-use-in-a-fairly-portable-way-c-c/372525#372525 6 Answer by Larry Gritz for How do I programmatically check memory use in a fairly portable way? (C/C++) Larry Gritz 2008-12-16T20:11:07Z 2008-12-16T20:24:58Z <p>Here's some code I wrote to try to do this in a portable way. It's not perfect, but I think it should at least give a pointer to how to do this on each of several platforms.</p> <p>(P.S. I use OSX and Linux regularly, and know this works well. I use Windows more rarely, so caveats apply to the Windows clause, but I think it's right.)</p> <pre><code>#ifdef __linux__ # include &lt;sys/sysinfo.h&gt; #endif #ifdef __APPLE__ # include &lt;mach/task.h&gt; # include &lt;mach/mach_init.h&gt; #endif #ifdef _WINDOWS # include &lt;windows.h&gt; #else # include &lt;sys/resource.h&gt; #endif /// The amount of memory currently being used by this process, in bytes. /// By default, returns the full virtual arena, but if resident=true, /// it will report just the resident set in RAM (if supported on that OS). size_t memory_used (bool resident=false) { #if defined(__linux__) // Ugh, getrusage doesn't work well on Linux. Try grabbing info // directly from the /proc pseudo-filesystem. Reading from // /proc/self/statm gives info on your own process, as one line of // numbers that are: virtual mem program size, resident set size, // shared pages, text/code, data/stack, library, dirty pages. The // mem sizes should all be multiplied by the page size. size_t size = 0; FILE *file = fopen("/proc/self/statm", "r"); if (file) { unsigned long vm = 0; fscanf (file, "%ul", &amp;vm); // Just need the first num: vm size fclose (file); size = (size_t)vm * getpagesize(); } return size; #endif #elif defined(__APPLE__) // Inspired by: // http://miknight.blogspot.com/2005/11/resident-set-size-in-mac-os-x.html struct task_basic_info t_info; mach_msg_type_number_t t_info_count = TASK_BASIC_INFO_COUNT; task_info(current_task(), TASK_BASIC_INFO, (task_info_t)&amp;t_info, &amp;t_info_count); size_t size = (resident ? t_info.resident_size : t_info.virtual_size); return size; #elif defined(_WINDOWS) // According to MSDN... PROCESS_MEMORY_COUNTERS counters; if (GetProcessMemoryInfo (GetCurrentProcess(), &amp;count, sizeof (count))) return count.PagefileUsage; else return 0; #else // No idea what platform this is return 0; // Punt #endif } </code></pre> http://stackoverflow.com/questions/1412081/are-do-while-false-loops-common Comment by Larry Gritz on Are do-while-false loops common? Larry Gritz 2009-09-11T22:35:14Z 2009-09-11T22:35:14Z Interesting meat of the question, but 100% useless title. Always construct the question title so that you could imagine somebody else with the same problem finding it with a google search. http://stackoverflow.com/questions/1406643/retval-false-somefunction-does-somefunction-get-called/1406676#1406676 Comment by Larry Gritz on retval = false && someFunction(); // Does someFunction() get called? Larry Gritz 2009-09-10T22:58:05Z 2009-09-10T22:58:05Z That doesn't tell the whole story. Of course the compiler will do that, if the left-hand part of the expression can be statically known to be true or false. But furthermore, this will happen AT RUNTIME even if the left-hand expression is something complicated. That's part of the definition of the C++ language. http://stackoverflow.com/questions/1394370/what-gnu-make-substitute-do-you-recommend/1394398#1394398 Comment by Larry Gritz on What GNU make substitute do you recommend? Larry Gritz 2009-09-08T16:07:35Z 2009-09-08T16:07:35Z I actually like gmake, with a bunch of special makefiles I've prepared over the years. But I recently switched to cmake and it simplified cross-platform development (Linux, OS X, Windows) so much that cmake is my new default for new projects. http://stackoverflow.com/questions/69738/c-how-to-get-fprintf-results-as-a-stdstring-w-o-sprintf/69911#69911 Comment by Larry Gritz on C++: how to get fprintf results as a std::string w/o sprintf Larry Gritz 2009-08-27T17:47:08Z 2009-08-27T17:47:08Z Bklyn: thanks for the tips, again related to vsnprintf that wasn't C99. Could you look over my edits and tell me what you think of the new version? http://stackoverflow.com/questions/69738/c-how-to-get-fprintf-results-as-a-stdstring-w-o-sprintf/69911#69911 Comment by Larry Gritz on C++: how to get fprintf results as a std::string w/o sprintf Larry Gritz 2009-08-27T17:11:21Z 2009-08-27T17:11:21Z Andreas: Thanks so much! I didn't realize that vsnprintf has a different failure return value on Windows. I will edit the code example to reflect this. http://stackoverflow.com/questions/1158374/portable-compare-and-swap-atomic-operations-c-c-library/1158419#1158419 Comment by Larry Gritz on Portable Compare And Swap (atomic operations) C/C++ library? Larry Gritz 2009-08-20T16:45:38Z 2009-08-20T16:45:38Z But Boost's atomic.hpp only has atomics for 32-bit ints. A good atomic library would also have 64-bit int atomics and pointer atomics. http://stackoverflow.com/questions/66882/simplest-way-to-check-if-two-integers-have-same-sign/66915#66915 Comment by Larry Gritz on Simplest way to check if two integers have same sign? Larry Gritz 2009-08-17T00:11:33Z 2009-08-17T00:11:33Z Doesn't work for overflow http://stackoverflow.com/questions/66882/simplest-way-to-check-if-two-integers-have-same-sign/66908#66908 Comment by Larry Gritz on Simplest way to check if two integers have same sign? Larry Gritz 2009-08-17T00:10:26Z 2009-08-17T00:10:26Z only works for 32 bit ints, which was not stipulated in the question http://stackoverflow.com/questions/1046068/would-one-have-to-know-the-machine-architecture-to-write-code/1046100#1046100 Comment by Larry Gritz on Would one have to know the machine architecture to write code? Larry Gritz 2009-06-25T23:39:24Z 2009-06-25T23:39:24Z No, it's way worse than that. You need to know endianness if reading or writing any binary data to files, as well, and it doesn't matter if it's in structures or not. http://stackoverflow.com/questions/966476/read-write-locks Comment by Larry Gritz on Read/Write Locks Larry Gritz 2009-06-08T20:56:44Z 2009-06-08T20:56:44Z Is there a reason you implemented your own instead of using one of the excellent implementations already well-tested such as Boost or Intel TBB? http://stackoverflow.com/questions/848126/well-written-c-examples/848159#848159 Comment by Larry Gritz on Well written C++ examples Larry Gritz 2009-05-11T17:21:19Z 2009-05-11T17:21:19Z Boost is pretty high-level C++ Kung Fu. It exploits every last trick of template programming, and as a C++ programmer for 20 years, I still find it hard to understand Boost implementation (and sometimes even their use) without carefully thinking about every last line. It's the last thing I'd recommend for a newbie. http://stackoverflow.com/questions/779550/are-there-any-rendering-alternatives-to-rasterisation-or-ray-tracing/779601#779601 Comment by Larry Gritz on Are there any rendering alternatives to rasterisation or ray tracing? Larry Gritz 2009-04-24T17:36:52Z 2009-04-24T17:36:52Z Photon mapping <i>uses</i> ray tracing, it's not separate from ray tracing (any more than &quot;ray traced shadows&quot; or &quot;ray traced reflections&quot; are separate from &quot;ray tracing&quot;). Also, photon mapping is used to compute particular propagation of light (certain types of global illumination), it's not directly applicable to computing the direct camera visibility of objects, so photon mapping is not really a correct answer to the question. http://stackoverflow.com/questions/687813/are-c-int-operations-atomic-on-the-mips-architecture/687981#687981 Comment by Larry Gritz on Are C++ int operations atomic on the mips architecture Larry Gritz 2009-03-28T00:31:34Z 2009-03-28T00:31:34Z He doesn't say which MIPS chip, or which version of gcc. But mainly I was commenting that any question &quot;...in C&quot; is barking up the wrong tree with atomics. http://stackoverflow.com/questions/624148/problems-with-string Comment by Larry Gritz on Problems with string Larry Gritz 2009-03-08T20:03:09Z 2009-03-08T20:03:09Z Nearly every line has an error of some kind, none of which are related to the question, and the crux of the question (the length() function and the MyString class definition) are not given. -1 for extremely unclear question. http://stackoverflow.com/questions/612374/what-is-the-best-way-to-initialize-a-bitfield-struct-in-c/612400#612400 Comment by Larry Gritz on What is the best way to initialize a bitfield struct in C++? Larry Gritz 2009-03-05T18:56:19Z 2009-03-05T18:56:19Z I believe it's unportable (in the sense that different architectures may store the bits in different locations), but how is it inefficient?