User yrp - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T11:53:03Zhttp://stackoverflow.com/feeds/user/7228http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/244941/monitoring-a-folder-for-new-files-in-windows/245311#2453110Answer by yrp for Monitoring a folder for new files in Windowsyrp2008-10-28T23:55:08Z2008-10-28T23:55:08Z<p>Change notifactions may cause some overhead, if you've NTFS, consider <a href="http://msdn.microsoft.com/en-us/library/aa363798(VS.85).aspx" rel="nofollow">NTFS change journals</a>.</p>
http://stackoverflow.com/questions/177437/const-static/177456#1774560Answer by yrp for const staticyrp2008-10-07T07:07:16Z2008-10-07T07:07:16Z<p>Making it private would still mean it appears in the header. I tend to use "the weakest" way that works. See this classic article by Scott Meyers: <a href="http://www.ddj.com/cpp/184401197" rel="nofollow">http://www.ddj.com/cpp/184401197</a> (it's about functions, but can be applied here as well).</p>
http://stackoverflow.com/questions/170686/best-open-xml-parser-for-c/170910#1709101Answer by yrp for Best open XML parser for C++yrp2008-10-04T19:48:09Z2008-10-04T19:48:09Z<p>Do not use TinyXML if you're concerned about efficiency/memory management (it tends to allocate <em>lots</em> of tiny blocks). My personal favourite is <a href="http://rapidxml.sourceforge.net/" rel="nofollow">RapidXML</a>.</p>
http://stackoverflow.com/questions/169404/c-template-destructors-for-both-primitive-and-complex-data-types/169986#1699861Answer by yrp for C++ template destructors for both primitive and complex data typesyrp2008-10-04T08:30:42Z2008-10-04T08:30:42Z<p>You most probably <em>do</em> want to use smart pointers here, it really simplifies the problem. However, just as an excercise, it's quite easy to determine if given type is pointer. Rough implementation (could be more elegant, but I dont want to introduce int2type):</p>
<pre><code>typedef char YesType;
typedef char NoType[2];
template<typename T>
struct IsPointer
{
typedef NoType Result;
};
template<typename T>
struct IsPointer<T*>
{
typedef YesType Result;
};
template<typename T>
struct MyContainer
{
~MyContainer()
{
IsPointer<T>::Result r;
Clear(&r);
delete[] data;
}
void Clear(YesType*)
{
for (int i = 0; i < numElements; ++i)
delete data[i];
}
void Clear(NoType*) {}
T* data;
int numElements;
</code></pre>
<p>};</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/146459#1464598Answer by yrp for What is the worst class/variable/function name you have ever encounteredyrp2008-09-28T18:38:57Z2008-09-28T18:38:57Z<p>IsHardwareSoundPlaying_PleaseDontUseThis(). Called in at least 50 places in the code base, working perfectly.</p>
http://stackoverflow.com/questions/125880/can-anyone-recommend-a-c-stdmap-replacement-container/125899#1258993Answer by yrp for Can anyone recommend a C++ std::map replacement container?yrp2008-09-24T07:49:26Z2008-09-24T07:49:26Z<p>See <a href="http://loki-lib.sourceforge.net/" rel="nofollow">Loki::AssocVector</a> and/or hash_map (most of STL implementations have this one).</p>
http://stackoverflow.com/questions/122826/reducing-memory-footprint-of-large-unfamiliar-codebase/123042#1230423Answer by yrp for Reducing memory footprint of large unfamiliar codebase.yrp2008-09-23T18:59:05Z2008-09-23T18:59:05Z<p><a href="http://msinilo.pl/blog/?cat=7" rel="nofollow">this is description/skeleton</a> of memory tracing application I used to reduce memory consumption of our game by 20%. It helped me to track many allocations done by external modules.</p>
http://stackoverflow.com/questions/121787/what-is-the-stl-implementation-with-the-lowest-memory-footprint/121818#1218181Answer by yrp for What is the STL implementation with the lowest memory footprint?yrp2008-09-23T15:39:59Z2008-09-23T15:39:59Z<p><a href="http://stlport.org/" rel="nofollow">STLPort</a>. Havent measured memory usage differences, but it's definitelly quicker (yes, real world usage).</p>
http://stackoverflow.com/questions/121757/how-do-you-implement-coroutines-in-c/121799#1217991Answer by yrp for How do you implement Coroutines in C++yrp2008-09-23T15:37:26Z2008-09-23T15:37:26Z<p>I dont think there are many full-blown, clean implementations in C++. One try that I like is <a href="http://www.sics.se/~adam/pt/" rel="nofollow">protothread library</a>.</p>
http://stackoverflow.com/questions/114085/what-is-a-performant-string-hashing-function-that-results-in-a-32-bit-integer-wit/114126#1141267Answer by yrp for What is a performant string hashing function that results in a 32 bit integer with low collision rates? yrp2008-09-22T10:17:20Z2008-09-22T10:17:20Z<p><a href="http://murmurhash.googlepages.com/" rel="nofollow">Murmur Hash</a> is pretty nice.</p>
http://stackoverflow.com/questions/113830/performance-penalty-for-working-with-interfaces-in-c/113996#1139961Answer by yrp for Performance penalty for working with interfaces in C++?yrp2008-09-22T09:38:16Z2008-09-22T09:38:16Z<p>One thing that should be noted is that virtual function call cost can vary from one platform to another. On consoles they may be more noticeable, as usually vtable call means a cache miss and can screw branch prediction.</p>
http://stackoverflow.com/questions/101774/what-is-your-bug-task-tracking-tool/101803#1018034Answer by yrp for What is your bug/task tracking tool?yrp2008-09-19T13:28:52Z2008-09-19T13:28:52Z<p><a href="http://www.seapine.com/ttpro.html" rel="nofollow">TestTrackPro</a> . </p>
http://stackoverflow.com/questions/101329/if-classes-with-virtual-functions-are-implemented-with-vtables-how-is-a-class-wi/101341#1013410Answer by yrp for If classes with virtual functions are implemented with vtables, how is a class with no virtual functions implemented? yrp2008-09-19T12:07:44Z2008-09-19T12:07:44Z<p>There's no need for function pointers as it cant change during the runtime.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100452#1004528Answer by yrp for Hidden Features of Visual Studio (2005-2008)?yrp2008-09-19T08:17:41Z2008-09-19T08:17:41Z<p>I'm not sure if it's "hidden", but not many people know about it -- <a href="http://www.codeproject.com/KB/debug/pseudoregister.aspx" rel="nofollow">pseudoregisters</a>. Comes very handy when debugging, I've @ERR, hr in my watch window all the time.</p>
http://stackoverflow.com/questions/93958/what-conferences-do-you-attend/97705#977050Answer by yrp for What conferences do you attend?yrp2008-09-18T22:38:11Z2008-09-18T22:38:11Z<p><a href="http://gdconf.com/" rel="nofollow">GDC</a>. It's not that amazingly valuable when it comes to lectures (90% of the papers can be later found on the net), but it's great place for industry chats and finding new connections.</p>
http://stackoverflow.com/questions/93260/a-free-tool-to-check-c-c-source-code-against-a-set-of-coding-standards/93291#932919Answer by yrp for A free tool to check C/C++ source code against a set of coding standards?yrp2008-09-18T14:54:15Z2008-09-18T14:54:15Z<p>The only tool I know is <a href="http://www.inspirel.com/vera/" rel="nofollow">Vera</a>. Havent used it, though, so cant comment how viable it is. <a href="http://www.inspirel.com/vera/ce/demo.html" rel="nofollow">Demo</a> looks promising.</p>
http://stackoverflow.com/questions/91849/how-to-get-all-datatype-sizes-and-function-stack-footprint-sizes-in-a-c-c-proje/92319#923190Answer by yrp for How to get all datatype sizes and function stack footprint sizes in a C/C++ project?yrp2008-09-18T13:01:57Z2008-09-18T13:01:57Z<p>I'm not aware of any tools, but if you're working under MSVC you can use <a href="http://msdn.microsoft.com/en-us/library/t6tay6cz(VS.80).aspx" rel="nofollow">DIA SDK</a> to extract size information from .PDB files. Sadly, this wont work for stack footprints IIRC.</p>
http://stackoverflow.com/questions/91384/unit-testing-for-c-code-tools-and-methodology/91451#914513Answer by yrp for Unit testing for C++ code - Tools and methodologyyrp2008-09-18T10:20:38Z2008-09-18T10:20:38Z<p><a href="http://unittest-cpp.sourceforge.net/" rel="nofollow">UnitTest++</a>, small & simple.</p>
http://stackoverflow.com/questions/91420/export-variable-from-c-static-library/91433#914332Answer by yrp for Export variable from C++ static libraryyrp2008-09-18T10:18:04Z2008-09-18T10:18:04Z<p>Are they defined in .cpp file as well? Roughly, it should look like:</p>
<pre><code>struct Format
{
[...]
static Format gFmt128;
};
// Format.cpp
Format Format::gFmt128 = { 0, 128, 0 }
</code></pre>
http://stackoverflow.com/questions/87889/game-engine-scripting-languages/88239#882391Answer by yrp for Game Engine Scripting Languagesyrp2008-09-17T22:14:31Z2008-09-17T22:14:31Z<p>One more vote for Lua. Small, fast, easy to integrate, what's important for modern consoles - you can easily control its memory operations.</p>
http://stackoverflow.com/questions/87794/c-unit-testing-framework/87869#878694Answer by yrp for C++ unit testing frameworkyrp2008-09-17T21:29:54Z2008-09-17T21:29:54Z<p>I'm a big fan of <a href="http://unittest-cpp.sourceforge.net/" rel="nofollow">UnitTest++</a>, it's very lightweight, but does the job. You can run single tests there easily.</p>
http://stackoverflow.com/questions/87372/is-there-a-technique-in-c-to-know-if-a-class-has-a-member-function-of-a-given-s/87846#8784616Answer by yrp for Is there a Technique in C++ to know if a class has a member function of a given signatureyrp2008-09-17T21:27:29Z2008-09-17T21:27:29Z<p>I'm not sure if I understand you correctly, but you may exploit SFINAE to detect function presence at compile-time. Example from my code (tests if class has member function size_t used_memory() const).</p>
<pre><code>template<typename T>
struct HasUsedMemoryMethod
{
template<typename U, size_t (U::*)() const> struct SFINAE {};
template<typename U> static char Test(SFINAE<U, &U::used_memory>*);
template<typename U> static int Test(...);
static const bool Has = sizeof(Test<T>(0)) == sizeof(char);
};
template<typename TMap>
void ReportMemUsage(const TMap& m, rde::int_to_type<true>)
{
// We may call used_memory() on m here.
}
template<typename TMap>
void ReportMemUsage(const TMap&, rde::int_to_type<false>)
{
}
template<typename TMap>
void ReportMemUsage(const TMap& m)
{
ReportMemUsage(m,
rde::int_to_type<HasUsedMemoryMethod<TMap>::Has>());
}
</code></pre>
http://stackoverflow.com/questions/72931/whats-the-best-alternative-to-c-for-real-time-graphics-programming/73244#732441Answer by yrp for What's the best alternative to C++ for real-time graphics programming?yrp2008-09-16T14:56:14Z2008-09-16T14:56:14Z<p>There are no true alternatives for big AAA titles, especially on the consoles. For smaller titles C# should do.</p>
http://stackoverflow.com/questions/70159/what-is-the-best-source-to-learn-c/70213#7021310Answer by yrp for What is the best source to learn C++?yrp2008-09-16T07:55:14Z2008-09-16T07:55:14Z<p>I wouldnt say Stroustrup's book is the best for beginners, it's rather terse (still worth reading of course, but maybe not as the first on the subject). Try Bruce Eckel's <a href="http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.html" rel="nofollow">"Thinking in C++"</a>, it's free.</p>
http://stackoverflow.com/questions/67174/find-memory-leaks-caused-by-smart-pointers/70055#700550Answer by yrp for Find memory leaks caused by smart pointersyrp2008-09-16T07:24:41Z2008-09-16T07:24:41Z<p>It's not a matter of finding a leak. In case of smart-pointers it'll most probably direct to some generic place like CreateObject(), which is being called thousands of time. It's a matter of determining what place in the code didnt call Release() on ref-counted object.</p>
http://stackoverflow.com/questions/67426/dynamically-sorted-stl-containers/67586#675860Answer by yrp for Dynamically sorted STL containersyrp2008-09-15T22:21:29Z2008-09-15T22:21:29Z<p>It's not that simple. In my experience insert/delete is used less often than find. Advantage of sorted vector is that it takes less memory and is more cache-friendly. If happen to have version that is compatible with STL maps (like the one I linked before) it's easy to switch back and forth and use optimal container for every situation.</p>
http://stackoverflow.com/questions/67554/whats-the-best-free-c-profiler-for-windows-if-there-are/67577#6757716Answer by yrp for What's the best Free C++ Profiler for windows (if there are)yrp2008-09-15T22:18:51Z2008-09-15T22:18:51Z<p>AMD Code Analyst is free, but not as advanced as VTune. There's also <a href="http://www.codersnotes.com/sleepy/" rel="nofollow">Sleepy</a>, which is very simple, but does the job in many cases. </p>
http://stackoverflow.com/questions/67426/dynamically-sorted-stl-containers/67496#674960Answer by yrp for Dynamically sorted STL containersyrp2008-09-15T22:05:26Z2008-09-15T22:05:26Z<p>For "STL compatible" sorted vector see A. Alexandrescu's AssocVector from <a href="http://loki-lib.sourceforge.net/" rel="nofollow">Loki</a>.</p>
http://stackoverflow.com/questions/67302/favorite-programming-related-blog/67374#673740Answer by yrp for Favorite programming-related blogyrp2008-09-15T21:52:50Z2008-09-15T21:52:50Z<p>I'd say <a href="http://smallcode.weblogs.us/" rel="nofollow">smallcode</a>.</p>
http://stackoverflow.com/questions/67174/find-memory-leaks-caused-by-smart-pointers/67317#673173Answer by yrp for Find memory leaks caused by smart pointersyrp2008-09-15T21:45:53Z2008-09-15T21:45:53Z<p>The way I do it is simply:
- on every AddRef() record call-stack,
- matching Release() removes it.
This way at the end of the program I'm left with AddRefs() without maching Releases. No need to match pairs,</p>
http://stackoverflow.com/questions/138245/difference-in-speed-between-char-and-integer-arraysComment by yrp on difference in speed between char and integer arrays?yrp2008-09-26T08:24:29Z2008-09-26T08:24:29ZBoth versions will run at same speed. It's "final" type that matters and it's still int*, and it'll be treated by compiler as such. Plus, in the second version you may have problem with buffer overruns (you allocated 4x less memory than in the first version, is it enough?)http://stackoverflow.com/questions/132241/hidden-features-of-c/132314#132314Comment by yrp on Hidden features of Cyrp2008-09-25T10:20:42Z2008-09-25T10:20:42ZIt's even better... char c = 2["Hello"]; (c == 'l' after this).http://stackoverflow.com/questions/117346/c-timing-milliseconds-since-last-whole-second/117564#117564Comment by yrp on C++ timing, milliseconds since last whole secondyrp2008-09-22T22:00:56Z2008-09-22T22:00:56ZThose problems apply for QueryPerformanceTimer as well -- <a href="http://www.virtualdub.org/blog/pivot/entry.php?id=106" rel="nofollow">virtualdub.org/blog/pivot/…</a>http://stackoverflow.com/questions/93073/how-to-implement-thread-safe-reference-counting-in-c/93130#93130Comment by yrp on How to implement thread safe reference counting in C++yrp2008-09-18T14:47:33Z2008-09-18T14:47:33ZOr simply InterlockedIncrement/Decrement.