User Raindog - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T05:14:48Zhttp://stackoverflow.com/feeds/user/29049http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/293672/reading-files-larger-than-4gb-using-c-stl8Reading files larger than 4GB using c++ stl.Raindog2008-11-16T08:14:23Z2009-11-18T13:36:31Z
<p>A few weeks back I was using std::ifstream to read in some files and it was failing immediately on open because the file was larger than 4GB. At the time I couldnt find a decent answer as to why it was limited to 32 bit files sizes, so I wrote my own using native OS API.</p>
<p>So, my question then: Is there a way to handle files greater than 4GB in size using std::ifstream/std::ostream (IE: standard c++)</p>
<p>EDIT: Using the STL implementation from the VC 9 compiler (Visual Studio 2008).
EDIT2: Surely there has to be standard way to support file sizes larger than 4GB.</p>
http://stackoverflow.com/questions/213953/boost-phoenix-or-lambda-library-problem-removing-elements-from-a-stdvector4Boost phoenix or lambda library problem: removing elements from a std::vector.Raindog2008-10-17T21:48:05Z2009-07-11T18:52:25Z
<p>I recently ran into a problem that I thought boost::lambda or boost::phoenix could help be solve, but I was not able to get the syntax right and so I did it another way. What I wanted to do was remove all the elements in "strings" that were less than a certain length and not in another container.</p>
<p>This is my first try:</p>
<pre><code>std::vector<std::string> strings = getstrings();
std::set<std::string> others = getothers();
strings.erase(std::remove_if(strings.begin(), strings.end(), (_1.length() < 24 && others.find(_1) == others.end())), strings.end());
</code></pre>
<p>How I ended up doing it was this:</p>
<pre><code>struct Discard
{
bool operator()(std::set<std::string> &cont, const std::string &s)
{
return cont.find(s) == cont.end() && s.length() < 24;
}
};
lines.erase(std::remove_if( lines.begin(), lines.end(), boost::bind<bool>(Discard(), old_samples, _1)), lines.end());
</code></pre>
http://stackoverflow.com/questions/224704/boost-lambda-or-phoenix-problem-using-stdforeach-to-operate-on-each-element-o2boost lambda or phoenix problem: using std::for_each to operate on each element of a containerRaindog2008-10-22T06:49:15Z2009-07-11T18:51:43Z
<p>I ran into a problem while cleaning up some old code. This is the function:</p>
<pre><code>uint32_t ADT::get_connectivity_data( std::vector< std::vector<uint8_t> > &output )
{
output.resize(chunks.size());
for(chunk_vec_t::iterator it = chunks.begin(); it < chunks.end(); ++it)
{
uint32_t success = (*it)->get_connectivity_data(output[it-chunks.begin()]);
}
return TRUE;
}
</code></pre>
<p>What i am interested in doing is cleaning up the for loop to be a lambda expression but quickly got stuck on how exactly I would pass the correct argument to get_connectivity_data. get_connectivity_data takes a std::vector by reference and fills it with some data. output contains a std::vector for each "chunk".</p>
<p>Basically my conclusion for this was that it was substantially easier, cleaner and <em>shorter</em> to leave my code as-is.</p>
<p>EDIT:</p>
<p>So the closest answer to my question as I envisioned it would look was this:</p>
<pre><code> std::for_each( chunks.begin(), chunks.end(),
bind( &chunk_vec_t::value::type::get_connectivity_data,
_1,
output[ std::distance( _1, chunks.begn() ]
)
);
</code></pre>
<p>Yet that code does not compile, I made some modifications to the code to get it to compile but I ran into 2 issues:</p>
<ol>
<li>_ 1 is a smart ptr, and std::distance did not work on it, I think i needed to use &chunks[0] as the start</li>
<li>Since _ 1 is a smart pointer, I had to do: &chunk_vec_t::value_ type::ValueType::get_ connectivity_ data which caused a crash in the VC9 compiler...</li>
</ol>
<p>The answer regarding zip_ iterators looked good until i read more into it and discovered that for this particular use, the amount of extra code needed was substantial (binding this and that, etc).</p>
<p>EDIT2:</p>
<p>I found an acceptable solution that is both low on extraneous syntax and clear, which I've posted here and below.</p>
<pre><code>std::transform(chunks.begin(), chunks.end(), back_inserter(tmp), boost::bind(&ADTChunk::get_connectivity_data, _1) );
</code></pre>
http://stackoverflow.com/questions/223634/linux-programming-environment-configuration2Linux Programming environment configuration.Raindog2008-10-21T21:50:26Z2008-10-30T01:08:29Z
<p>The other day I set up an unbuntu installation in a VM and went to gather the tools and libraries I figured I would need for programming moslty in C++.</p>
<p>I had a problem though, where to put things such as 3rd party source libraries, etc. From what I can gather, a lot of source distributions assume that a lot of their dependencies are already installed in a certain location and assume that a lot of tools are also installed in particular locations.</p>
<p>To give an example of what I currently do on windows, is I have a directory where I keep all source code. C:\code. In this directory, I have a directory for all 3rd party libraries, c:\code\thirdparty\libs. This way I can easily set up relative paths for all of the dependencies of any projects I write or come across and wish to compile. The reason I am interested in setting up a linux programming environment is that it seems that both the tool and library dependaecy problems have been solved efficiently making it easy for example to build OpenSSH from source.</p>
<p>So what I was looking for was a decent convetion I can use when I am trying to ogranize my projects and libraries on linux that is easy to maintain and easy to use.</p>
http://stackoverflow.com/questions/167512/pros-and-cons-of-developing-on-a-vm-on-a-pc/238484#2384840Answer by Raindog for Pros and Cons of Developing on a VM on a PCRaindog2008-10-26T19:23:48Z2008-10-26T19:23:48Z<p>I wouldnt want to develop in a VM so much as test things in a VM. For instance, it might be nice to set up a couple VM's to emulate an n-tier architecture, or a client-server setup or finally simply to test code on multiple OSs</p>
http://stackoverflow.com/questions/232395/how-do-i-sort-a-two-dimensional-array-in-c/237702#2377020Answer by Raindog for How do I sort a two-dimensional array in C#?Raindog2008-10-26T07:48:29Z2008-10-26T07:48:29Z<p>If you could get the data as a generic tuple when you read it in or retrieved it, it would be a lot easier; then you would just have to write a Sort function that compares the desired column of the tuple, and you have a single dimension array of tuples.</p>
http://stackoverflow.com/questions/194195/which-is-better-com-dll-or-standard-dll-with-a-typelib/237428#2374280Answer by Raindog for Which is "better": COM DLL or Standard DLL with a Typelib?Raindog2008-10-26T02:47:31Z2008-10-26T02:47:31Z<p>It really depends on the clients of the component I would think.</p>
http://stackoverflow.com/questions/235379/general-question-what-do-you-want-from-a-web-framework/237411#237411-1Answer by Raindog for General question, what do you want from a web framework?Raindog2008-10-26T02:37:06Z2008-10-26T02:37:06Z<p>You've made the assumption that all MVC applications are websites. MVC is widely used for more than just web apps so things like URL mappers, template server pages and "Server side" languages are not associated with the MVC pattern, so much as a particular implementation and adaptation of the MVC for use in web apps.</p>
http://stackoverflow.com/questions/224704/boost-lambda-or-phoenix-problem-using-stdforeach-to-operate-on-each-element-o/231060#2310601Answer by Raindog for boost lambda or phoenix problem: using std::for_each to operate on each element of a containerRaindog2008-10-23T19:15:17Z2008-10-23T19:15:17Z<p>After a bit of work I came up with this solution:</p>
<pre><code>std::transform(chunks.begin(), chunks.end(), back_inserter(tmp), boost::bind(&ADTChunk::get_connectivity_data, _1) );
</code></pre>
<p>It required that I change get_connectivity_data to return std::vector instead of taking one by reference, and it also required that I change the elements of chunks to be boost::shared_ptr instead of Loki::SmartPtr.</p>
http://stackoverflow.com/questions/203667/c-named-parameter-idiom-vs-boostparameter-library/223826#2238260Answer by Raindog for C++ "Named Parameter Idiom" vs. Boost::Parameter libraryRaindog2008-10-21T22:45:23Z2008-10-21T22:45:23Z<p>You probably don't want Boost.Parameter for general application logic so much as you would want it for library code that you are developing where it can be quite a time saver for clients of the library.</p>
http://stackoverflow.com/questions/95458/does-anyone-still-code-using-notepad/223655#2236550Answer by Raindog for Does anyone still code using "notepad" ?Raindog2008-10-21T21:56:41Z2008-10-21T21:56:41Z<p>Where I work some people use what I think is worse than notepad. Some old console text editor app that arguably has fewer features than notepad... I wish I could remember the name though.</p>
http://stackoverflow.com/questions/223215/c-example-of-coding-horror-or-brilliant-idea/223600#2236001Answer by Raindog for C++ example of Coding Horror or Brilliant Idea?Raindog2008-10-21T21:37:15Z2008-10-21T21:37:15Z<p>I actually do something similar, and so does nearly every MMO or online video game ever written. Although they have a concept called a "Packet" and each packet has it's own layout. So you might have:</p>
<pre><code>struct header
{
short id;
short size;
}
struct foo
{
header hd;
short hit_points;
}
short get_foo_data(char *packet)
{
return reinterpret_cast<foo*>(packet)->hit_points;
}
void handle_packet(char *packet)
{
header *hd = reinterpret_cast<header*>(packet);
switch(hd->id)
{
case FOO_PACKET_ID:
short val = get_foo_data(packet);
//snip
}
}
</code></pre>
<p>And they do that for the majority of their packets. Some packets obviously have dynamic sizes, and for those members they use length prefixed fields and some logic to parse that data.</p>
http://stackoverflow.com/questions/222557/cs-placement-new/223571#2235711Answer by Raindog for C++'s "placement new"Raindog2008-10-21T21:27:04Z2008-10-21T21:27:04Z<p>Script engines can use it in the native interface to allocate native objects from scripts. See Angelscript (www.angelcode.com/angelscript) for examples.</p>
http://stackoverflow.com/questions/209804/what-reason-is-there-for-c-or-java-having-lambdas/214192#2141920Answer by Raindog for What reason is there for C# or Java having lambdas?Raindog2008-10-17T23:34:12Z2008-10-17T23:34:12Z<p>Lambda's allow for more readable code in that they allow operations to be defined closer to the point of use rather than like the current C++ method of using function objects whose definition is sometimes far from the point of use. (This is not including some of the boost libraries). I think the key point from lambdas is that they allow more concise and easy to understand code.</p>
http://stackoverflow.com/questions/170380/why-do-thread-functions-need-to-be-declared-as-cdecl/214030#2140300Answer by Raindog for Why do thread functions need to be declared as '__cdecl'?Raindog2008-10-17T22:19:50Z2008-10-17T22:19:50Z<p>The real answer has to do with how windows internally calls the thread proc routine, and it is expecting the function to abide by a specific calling convention, which in this case is a macro, WINAPI, which according to my system is defined as:</p>
<pre><code>#define WINAPI __stdcall
</code></pre>
<p>This means that the called function is responsible for cleaning up the stack. The reason why boost::thread is able to support arbitrary functions is that it passes a pointer to the function object used in the call to thread::create function to CreateThread. The threadproc associated with the thread simply calls operator() on the function object.</p>
<p>The reason MFC requires __cdecl therefore has to do with the way it internally calls the function passed in to the call to AfxBeginThread. There is no good reason to do this unless they were planning on allowing vararg parameters... </p>
http://stackoverflow.com/questions/212669/do-the-concepts-in-accelerated-c-practical-programming-by-example-still-hold-up/213446#2134460Answer by Raindog for Do the concepts in Accelerated C++ Practical Programming by Example still hold up today?Raindog2008-10-17T19:02:59Z2008-10-17T19:27:26Z<p>Some of the answers are totally missing the point. OOP in C++ has many opportunities to be much faster than their C counterparts. I'll give the example from I think Effective C++ by Scott Meyers, which is that quicksort runs slower than C++ sort because the compiler is able to inline the function call easily in C++ whereas it is unable to do so in C due to quicksort being passed a function pointer. </p>
<p>Additionally, nothing about c++ makes it slow, unlike other languages, any slowness is purely library implementations or algorithm design.</p>
http://stackoverflow.com/questions/212990/simple-c-uml-w-reverse-engineering/213402#2134020Answer by Raindog for Simple C++ UML w/ reverse engineeringRaindog2008-10-17T18:52:04Z2008-10-17T18:52:04Z<p>Visio also supports this.</p>
http://stackoverflow.com/questions/213048/what-is-the-best-scripting-language-to-learn/213290#2132900Answer by Raindog for What Is The Best Scripting Language To Learn?Raindog2008-10-17T18:27:24Z2008-10-17T18:27:24Z<p>Of all of the scripting languages mentioned here, I believe Ruby is the best choice. I learned Ruby after having learned C/C++, C#, VB, VBS and a little javascript and to me Ruby has the easiest to learn and cleanest syntax, the fewest surprises when coding and things that just make sense.</p>
<p>For example, Python uses whitespace as a programming construct and those <strong>namehere</strong> methods, perl is way to easy to write "write once" code and favors global variables. Javascript supports a lot of metaprogramming facilities that ruby and python have but they are not as cleanly implemented and it feels almost like template meta programming in C++.</p>
http://stackoverflow.com/questions/213195/openid-authentication-error0OpenID authentication error.Raindog2008-10-17T18:08:04Z2008-10-17T18:10:57Z
<p>When I try to login to this site using my yahoo openid, it takes me to the yahoo site, I click "continue" meaning that i <em>want</em> to send my authentication details to stackoverflow.com and stackoverflow.com gives me the following error underneath the login text field:</p>
<p>Unable to log in with your OpenID provider:</p>
<p>failed to authenticate, returning Failed. Please ensure your identifier is correct and try again. </p>
http://stackoverflow.com/questions/149268/boost-library/150599#150599Comment by Raindog on Boost LibraryRaindog2008-11-17T00:28:52Z2008-11-17T00:28:52ZWith bullet 5: Agreed! Try debugging the boost graph library...http://stackoverflow.com/questions/293672/reading-files-larger-than-4gb-using-c-stl/293927#293927Comment by Raindog on Reading files larger than 4GB using c++ stl.Raindog2008-11-17T00:18:29Z2008-11-17T00:18:29ZI ended up wrapping the OS API directly for the case where my file size was larger than 4gbhttp://stackoverflow.com/questions/293672/reading-files-larger-than-4gb-using-c-stl/293706#293706Comment by Raindog on Reading files larger than 4GB using c++ stl.Raindog2008-11-17T00:17:48Z2008-11-17T00:17:48ZNo, I'm running a 32 bit OS. Regardless though, a 32 bit OS is able to have greater than 4GB of disk space...http://stackoverflow.com/questions/62512/three-dimensional-arrays-of-integers-in-c/63541#63541Comment by Raindog on Three dimensional arrays of integers in C++Raindog2008-10-27T07:25:16Z2008-10-27T07:25:16ZYou can easily allocate before hand thoughhttp://stackoverflow.com/questions/224704/boost-lambda-or-phoenix-problem-using-stdforeach-to-operate-on-each-element-o/231060#231060Comment by Raindog on boost lambda or phoenix problem: using std::for_each to operate on each element of a containerRaindog2008-10-26T01:42:16Z2008-10-26T01:42:16ZCorrect. boost::shared_ptr explicitly does not provide a policy based implementation for simplicity reasons.http://stackoverflow.com/questions/224704/boost-lambda-or-phoenix-problem-using-stdforeach-to-operate-on-each-element-oComment by Raindog on boost lambda or phoenix problem: using std::for_each to operate on each element of a containerRaindog2008-10-26T01:41:12Z2008-10-26T01:41:12ZThe VC compiler performs the RVO in even debug mode. I am sure for such simple functions, it release builds are able to perform the same optimization.http://stackoverflow.com/questions/212669/do-the-concepts-in-accelerated-c-practical-programming-by-example-still-hold-up/212830#212830Comment by Raindog on Do the concepts in Accelerated C++ Practical Programming by Example still hold up today?Raindog2008-10-24T19:29:49Z2008-10-24T19:29:49ZCorrect. I love seeing Java vs. C++ performance comparisions where the C++ code they use has everything dynamically allocated.http://stackoverflow.com/questions/212669/do-the-concepts-in-accelerated-c-practical-programming-by-example-still-hold-up/213446#213446Comment by Raindog on Do the concepts in Accelerated C++ Practical Programming by Example still hold up today?Raindog2008-10-24T19:29:00Z2008-10-24T19:29:00ZNo it's not. sort takes a function object, the reason it is fast is that the compiler can inline the comparison member function of the function object, whereas quicksort takes a function pointer.http://stackoverflow.com/questions/213048/what-is-the-best-scripting-language-to-learn/213290#213290Comment by Raindog on What Is The Best Scripting Language To Learn?Raindog2008-10-24T17:35:49Z2008-10-24T17:35:49ZI learned a little about them and found other things to be easier to use while provide the same, if not more language features.http://stackoverflow.com/questions/224704/boost-lambda-or-phoenix-problem-using-stdforeach-to-operate-on-each-element-o/227115#227115Comment by Raindog on boost lambda or phoenix problem: using std::for_each to operate on each element of a containerRaindog2008-10-23T19:23:39Z2008-10-23T19:23:39ZAlso note that the only reason i needed the element number was because I had explicitly resized the container, otherwise I could have used an inserter(which i eventually did)http://stackoverflow.com/questions/224704/boost-lambda-or-phoenix-problem-using-stdforeach-to-operate-on-each-element-oComment by Raindog on boost lambda or phoenix problem: using std::for_each to operate on each element of a containerRaindog2008-10-23T19:16:57Z2008-10-23T19:16:57ZBy using an stl algorithm such as for_each or transform. I didnt "replace a loop" I removed explicit looping from my code which is what I desired.http://stackoverflow.com/questions/224704/boost-lambda-or-phoenix-problem-using-stdforeach-to-operate-on-each-element-o/227115#227115Comment by Raindog on boost lambda or phoenix problem: using std::for_each to operate on each element of a containerRaindog2008-10-23T18:22:17Z2008-10-23T18:22:17ZThe reason i down voted your response is not because it was a bad solution, but because I asked explicitly for a lambda/phoenix solution.http://stackoverflow.com/questions/125597/is-it-reasonable-to-have-boost-as-a-dependency-for-a-c-open-source-project/125633#125633Comment by Raindog on Is it reasonable to have Boost as a dependency for a C++ open source project?Raindog2008-10-23T06:48:16Z2008-10-23T06:48:16ZI thought that boost was regularly tested on like 12 systems and 10212 compilers?(Exaggeration of course). But I know they do a lot of testing on a lot of systems.http://stackoverflow.com/questions/203667/c-named-parameter-idiom-vs-boostparameter-library/204510#204510Comment by Raindog on C++ "Named Parameter Idiom" vs. Boost::Parameter libraryRaindog2008-10-21T22:45:07Z2008-10-21T22:45:07ZBy this same reasoning we should remove templates from C++ because they are complex and confusing. It's called "learning"http://stackoverflow.com/questions/170380/why-do-thread-functions-need-to-be-declared-as-cdecl/170599#170599Comment by Raindog on Why do thread functions need to be declared as '__cdecl'?Raindog2008-10-21T22:42:11Z2008-10-21T22:42:11Zumm fastcall puts the 1st 2 arguments in ecx and edx. Then pushes the rest on the stack in the same order as the rest of the calling conventions. stdcall and cdecl differ in that stdcall cleans up its own stack, cdecl callers have to clean up the stack. There there is thiscall which ecx == this