User rama-jka toti - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T23:24:03Zhttp://stackoverflow.com/feeds/user/75248http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1725139/save-inline-asm-register-value-to-c-pointer-can-get-it-on-gcc-but-not-vc/1725732#17257320Answer by rama-jka toti for save inline asm register value to C pointer, can get it on GCC but not VCrama-jka toti2009-11-12T22:03:31Z2009-11-12T22:08:49Z<p>Tough to see because it is just a snippet, plus it could be called from C++ code / thiscall.</p>
<p>It might have to be 'naked' ( __declspec(naked) ) in some cases.</p>
<p>It won't port as VC is dropping x64 inline asm support iirc.</p>
<p>Use the __cpuid or __cpuidex intrinsic and enjoy.</p>
http://stackoverflow.com/questions/1711426/design-methods-for-multiple-serialization-targets-formats-not-versions1Design methods for multiple serialization targets/formats (not versions)rama-jka toti2009-11-10T21:41:04Z2009-11-12T14:55:42Z
<p>Whether as members, whether perhaps static, separate namespaces, via friend-s, via overloads even, or any other C++ language feature...</p>
<p>When facing the problem of supporting multiple/varying formats, maybe protocols or any other kind of targets for your types, what was the most flexible and maintainable approach? </p>
<p>Were there any conventions or clear cut winners?</p>
<p>A brief note why a particular approach helped would be great.</p>
<p>Thanks.</p>
<p>[ ProtoBufs like suggestions should not cut it for an upvote, no matter how flexible that particular impl might be :) ]</p>
http://stackoverflow.com/questions/1711058/sizeofthis-in-header-only-constructor-implementation2sizeof(*this) in header only constructor implementationrama-jka toti2009-11-10T20:44:43Z2009-11-11T15:37:12Z
<p>The title says it all, and whilst the 'standards' are to prefer a <code>sizeof(typename)</code>, are there any instances where the <code>sizeof(*this)</code> is <em>more</em> error-prone or somehow undesirable?</p>
<p>I cannot see any at the first glance, but if yes, why with a short explanation would be helpful.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1714166/can-go-programming-language-replace-c-c/1714229#17142292Answer by rama-jka toti for Can Go programming language replace C/ C++ ?rama-jka toti2009-11-11T10:06:20Z2009-11-11T10:06:20Z<p>Nothing to do with the language as you have to judge for yourself. Just can't resist the initial reaction whenever I see the 'hash table' in description:</p>
<p>"Hash tables are provided by the language. They are called maps."</p>
<p>it makes me recall <a href="http://www.virtualdub.org/blog/pivot/entry.php?id=259" rel="nofollow">http://www.virtualdub.org/blog/pivot/entry.php?id=259</a></p>
<p>"I've always thought that hash tables were well named, because often when you see how people have used them you wonder what they were smoking at the time. "</p>
http://stackoverflow.com/questions/1711660/the-pragmatic-programmer-book-is-10-years-old-now-are-parts-of-it-no-longer-re/1711704#17117041Answer by rama-jka toti for "The Pragmatic Programmer" book is 10 years old now, are parts of it no longer relevant?rama-jka toti2009-11-10T22:30:16Z2009-11-10T22:30:16Z<p>It's one of the rare almost timeless pieces.. But 'tracer bullets' is being challenged in many fast-paced environments.</p>
http://stackoverflow.com/questions/1703649/adding-functionality-to-a-handle-wrapper/1703778#17037783Answer by rama-jka toti for Adding functionality to a handle wrapper.rama-jka toti2009-11-09T20:59:00Z2009-11-09T21:04:21Z<p>I won't get into discussion on boost::shared_ptr or any smart ptr. And here is a few reasons why, from different angles between the lines, and why smart pointers can always and always be made redundant or beaten out.</p>
<p>Code does seem to emulate the CLR and NT model in which case there are predefined semantics by the OS for what you're doing. It's called ::DuplicateHandle and it works well and is more suited for cross process scenarios (and would hack less than boost::interprocess or similar). And it is applicable to few other contexts.</p>
<p>Now the second, hopefully not a contraversial bit where the poor-old-OO inheritance is neglected because containment focus wins out regurarly (yet it has nothing to do with OO really when you play mix-ins for those that continously scream: contain me ). So no matter how rare it might be, or whether it is an OO, non-OO or O(o) argument : "inheritance" wins here.</p>
<p>Why? Because it is a waitable handle concept, including the Win32 Event, Mutex, Auto reset kinds, Thread, all of it apart from critical_section (which also has a backing handle deep within - but is specially treated in both CLR and NT, plus it has dual-nature ). Thus it makes absolute sense for:</p>
<p>typedef CHandleT< HANDLE > WaitHandle;</p>
<p>to be the root of the "hierarchy", along with copy semantics of what the underlying implementation already is. </p>
<p>Lastly, it ends up the most efficient representation of your data types that are handles, as they will mimic the OS you are targetting and need no ref count or avalanche/rippling ref count either.</p>
<p>Then came cross-platform development and boost::thread-ing and ruined the bed-time story :-)</p>
http://stackoverflow.com/questions/1703270/implementation-of-red-black-tree-in-c/1703286#17032860Answer by rama-jka toti for Implementation of Red-Black Tree in C#rama-jka toti2009-11-09T19:46:44Z2009-11-09T19:46:44Z<p>Rip the TreeSet from C5 collection libs.</p>
http://stackoverflow.com/questions/1703213/c-is-there-an-advantage-to-disposing-resources-in-reverse-order-of-their-alloca/1703243#17032430Answer by rama-jka toti for C#: Is there an Advantage to Disposing Resources in Reverse Order of their Allocation?rama-jka toti2009-11-09T19:36:56Z2009-11-09T19:36:56Z<p>Nested 'usings' shows you the 'outlived' is not really on, and rarely is (not to go and say never after 40 years of evidence).. And that includes the stack-based VM that runs on say CMOS.</p>
<p>[ Despite some attempts by MSDN.com and Duffius to make it vanish, you know manage it all for you the difference between the heap and stack. What a smart idea.. in space ]</p>
http://stackoverflow.com/questions/1694813/decorator-with-generic-base-class/1696402#1696402-1Answer by rama-jka toti for Decorator with generic base classrama-jka toti2009-11-08T13:06:52Z2009-11-08T14:14:46Z<p>It is a different kind of question.</p>
<p>And the answer is, no, you cannot do it.</p>
<p>MSFT did it realising you would be blowing your one shot at the base class in a single inheritance limitation (they call it simplification), a layman excuse and not the root of the problem. Moreover, it would make the compiler and language far more complicated (re: capable/expressive) than it currently is.</p>
<p>Thus they chose the term "generics". They made it their own "concept". It was presenting "new idioms". </p>
<p>[ That adds up to three quoted, pretty bad, excuses above. Only three and none of them are new or true concepts and hardly fresh idioms in history of computing ]</p>
<p>However it had to distinguish itself as something "new", as a constraint "feature", and target "audience" they were aiming at. Three extra excuses again. Soon another wave of excuses followed as people complained about value type support, violating of DRYs with repeated usings etc etc. Another glaring example is overuse of interfaces in combination with generics, functional 3.0 workarounds etc, all for a feature that shows that generics are a lousy type-interface mechanism.</p>
<p>As your collegue is looking for a compile-time feature for a good reason, I can only suggest they will eventually implement something similar 25 years later to what he already has in his arsenal. It would be a compiler-as-a-service workaround (not a new idea again) for an SI system. This is when Anders will finally have the guts to catch up with meta-programming techniques (refs: <a href="http://www.getsomenuts.tv/" rel="nofollow">http://www.getsomenuts.tv/</a> )</p>
<p>The overstated point that there is an obvious optimisation as a side-effect of runtime approach (reusing IL, metadata or generating less bloated code) is mute. Reason is very simple, it is trivial to do for VM systems.</p>
<p>In conclusion, those were the two driving limitations of Smalltalk and Java idea that made the MS research teams experiment, post some papers and implement the generics feature as a Rotor hack initially. Thereafter it made its way into CLR 2.0. </p>
<p>*The debris of that design was even left with method names containing <em>hack</em> in the shipped version on your hard disk.*</p>
http://stackoverflow.com/questions/1695601/multi-dimensional-array-transmit-issue/1696058#16960581Answer by rama-jka toti for multi-dimensional array transmit issuerama-jka toti2009-11-08T11:11:43Z2009-11-08T11:22:38Z<p>For a long while it was a poorly documented part as they extended the RPC into 'object' space and what not and docs are probably still out of date. Besides, you do realise it is a multi-decade old tech extending the old DPC RPC ? :-)</p>
<p>Whilst MS historically had some of the most optimal marshalling code for that age (wars on Corba-on-the-Cob and ACE-style-blasphemy-code), most likely the difference of online/offline is in being partially-interpreted (and optimised when it can) or fully interpreted (ie. all data driven). </p>
<p>I can't access MSDN or any microsoft site, because I either pissed them off or I have one of those popular viruses that block all their sites ( and I don't mind the former or the latter, it makes me use my time more effectively without managed noise). </p>
<p>If that link is not for /Oic or similar switch for the MIDL compiler. it should give you an idea what it is all about. I wouldn't be bothered too much by it, try both and see the perf/size if you have to.</p>
http://stackoverflow.com/questions/1695807/why-c-cs-pragmaonce-isnt-an-iso-standard/1695959#16959591Answer by rama-jka toti for Why C/C++'s #pragma_once isn't an ISO standard?rama-jka toti2009-11-08T10:23:14Z2009-11-08T10:32:14Z<p>IIRC, #pragma <em>anything</em> is not part of the language. And it shows up in practice, a lot.</p>
<p>(edit:completely agree that the inclusion and linking system should have been more of a focus for the new standard as it is one of the most obvious weaknesses, in 'le this day and age' )</p>
http://stackoverflow.com/questions/1666537/any-issues-with-large-numbers-of-critical-sections/1694458#16944580Answer by rama-jka toti for Any issues with large numbers of critical sections?rama-jka toti2009-11-07T21:21:52Z2009-11-07T21:21:52Z<p>As others have pointed out, yes there is an issue and it is called too fine-grained locking.. it's resource wasteful and even though the chances are small you will start creating a lot of backing primitives and data when the things do get an occasional, call it longer than usual or whatever, contention. Plus you are wasting resources as it is not really a trivial data structure as for example in VM impls..</p>
<p>If I recall correctly you will have a higher chance of a SEH exception from that point onwards on Win32 or just higher memory usage. Partitioning and pooling them is probably the way to go but it is a more complex implementation. Paritioning on something else (re:action) and expecting some short-lived contention is another way to deal with it.</p>
<p>In any case, it is a problem of resource management with what you have right now.</p>
http://stackoverflow.com/questions/1693842/is-there-any-way-to-determine-the-available-stack-space-at-run-time/1693867#16938672Answer by rama-jka toti for Is there any way to determine the available stack space at run time? rama-jka toti2009-11-07T17:53:37Z2009-11-07T17:53:37Z<p>Just read %esp, and remember its value goes down. You already know your defaulted max size from the environment, as well as your threads' starting point.</p>
<p>gcc has great assembly support, unlike some flakes out there.</p>
http://stackoverflow.com/questions/1693089/fastest-way-to-write-large-stl-vector-to-file-using-stl/1693126#16931260Answer by rama-jka toti for Fastest way to write large STL vector to file using STLrama-jka toti2009-11-07T14:06:29Z2009-11-07T14:06:29Z<p>Use the write method on it, it is in ram after all and you have contigous memory.. Fastest, while looking for flexibility later? Lose the built-in buffering, hint sequential i/o, lose the hidden things of iterator/utility, avoid streambuf when you can but do get dirty with boost::asio ..</p>
http://stackoverflow.com/questions/1692990/which-would-be-the-best-2d-graphics-library/1693047#16930470Answer by rama-jka toti for Which would be the best 2D graphics library?rama-jka toti2009-11-07T13:38:14Z2009-11-07T13:38:14Z<p>We did this type of work for over 20 years now, and the story doesn't change at all.</p>
<p>As you see you haven't got much choice.. </p>
<p>The truth is with the entire reluctance and work in graphics vendor wars where you will see for example NVidia cards horribly slow down all GDI+/WinForms code, requiring double-buffering hacks, and what not. </p>
<p>Not only is NVidia or MSFT 'reluctant' to address acceleration or fix issues, they insist on leaving them as is and introducing even slower and horribly painted ListViews, Grids, and much more.. They also sell lots of 'half-technical garbage' on their blogs and support on this issue for over 5 years now.</p>
<p>WPF sucks trunks, it bloats so fast and acts like an Atari pushing Unreal Tournmaent 3. As for approaching ironically-native focus and acceleration (as they should have understood from the beginning/doh!), MILCore is supposed to help a lot with Silverlight and slimmed down CLR. But nope, it doesn't, the browsers now feel like C64.</p>
<p>SlimDX and TAO are probably an overkill and for XNA you'll need widget and toolkits that are starting to spring up. If you even consider doing D2D and Windows 7 say goodbye to much of your audience that simply runs XP because it is around c20% faster and about 300% faster in GDI (classic, most hardware accelerated apps) and nothing WinForm/WPF can even compare close to it... </p>
<p>What you are getting involved in is a dirty part of the industry and one that is littered with politics, perf problems, bugs, stories and silence/reluctance when alternatives are presented. You can still interop into partially accelerated GDI bits, but the mixing of GDI+ and GDI causing other issues as well as bring further complication that has no good workarounds.</p>
<p>But to answer and in hope the above saves you time as it is a long history of it.. If you want good portability, 30 times better perf than WPF or WinForms, the best way forward is to use OpenGL and OpenTK and aim at 2D. You will still see the pathetic JIT-er drag itself at times and you will have some interop work cut out, but the difference in performance is astonishing (because if someone didn't hear, we got 300 times faster hardware, yet 50 times slower apps on .NET these days).</p>
<p>Lastly, use good algo-s not to overload that WPF or WinForms/GDI+ crap with too many points as it chokes so hard and fast on large data sets that kids smash it by 3x faster perf even on ARM/iPhone devices. </p>
<p>[piece to Seattle bloating camp]</p>
http://stackoverflow.com/questions/1692300/aligning-a-class-to-a-class-it-inherits-from-force-all-stack-alignment-change-s/1692698#16926980Answer by rama-jka toti for Aligning a class to a class it inherits from? Force all stack alignment? Change sizeof?rama-jka toti2009-11-07T11:02:31Z2009-11-07T13:00:49Z<p>Keeping the Michael's answer in mind with respect to portability.. I assume you are aiming at SSE vectorization and are starting to feel that pain and that really ought to be a standard way to do it with explicit hints and low-level control. Both compilers you mention do strive for 16 byte alignment on stack by default.</p>
<p>So while compiler support does vary, can be changed, is challenged etc, it can also be heavily underutilised on one of them; it depends on the optimizers and types you are containing and naturally the vectorizer choices for sanity. Then again, it's not clear what you are doing and what the use is.</p>
<p>Since your problem definition without an example is sketchy, perhaps you can give a shot to <strong>declspec(align(16)) for California (with LTCG), and __attribute</strong>((aligned (16))) for gcc. If that helps, it'd be good to let us know and what specifically worked or not in example, which compiler warnings or errors too. I would also avoid any smart pointer usage for various reasons.</p>
<p>sizeof being in your question indicates you are also facing challenges with regards to variable arrays and pointer types, in which case the former might be problematic. And even though you can live with losing the copy constructor and assignment facilities, it will do no harm to inspect the machine code. That is, in case of complication, what you need to do is look at the output and in case of VC++ switch to Intel for better hints in Windows, and test for/compilet and runtime assert/trap failures early or for the other one pick any free object file analysis tool. Then you just work around the clearly problematic constructs in a sanest way you can, something that is always possible.</p>
http://stackoverflow.com/questions/1691473/c-c-somehow-register-my-classes-in-a-list/1692483#16924830Answer by rama-jka toti for [C/C++] somehow register my classes in a listrama-jka toti2009-11-07T08:57:35Z2009-11-07T08:57:35Z<p>Use boost::mpl, vector or map.</p>
http://stackoverflow.com/questions/1683954/detect-and-prevent-overlapping-windows-in-c/1683982#16839820Answer by rama-jka toti for Detect and Prevent Overlapping Windows in C#rama-jka toti2009-11-05T22:08:54Z2009-11-05T22:36:41Z<p>Try checking your PaintEventArgs ClipRectangle ..</p>
<p>(edit: and/or WindowFromPoint shooting match)</p>
http://stackoverflow.com/questions/1683856/what-kind-of-problem-is-more-easily-solved-with-f-than-c/1683907#16839071Answer by rama-jka toti for What kind of problem is more easily solved with F# than C#?rama-jka toti2009-11-05T21:51:04Z2009-11-05T21:51:04Z<p>Give a shot to some parsing problem.. then compare the readability or if you wish succintness :)..</p>
http://stackoverflow.com/questions/1682368/is-there-a-way-to-find-an-interface-implentation-based-on-a-generic-type-argument/1682858#16828581Answer by rama-jka toti for Is there a way to find an interface implentation based on a generic type argument?rama-jka toti2009-11-05T19:07:56Z2009-11-05T20:04:00Z<p>That example still needs further fixing.. For each repository it is missing a constraint. For each public (right now it is invalid private) method it is also missing a functional body.. For that interface method it requires a generic argument.</p>
<p>Then try, or play around, if I understood you right:
<code></p>
<pre><code>public static TEntity clr_bloat_reflected_msdn_method<TEntity>(string commonString) where TEntity : class
{
Assembly a = Assembly.GetExecutingAssembly();
foreach (Type t in a.GetTypes())
if (!t.IsAbstract && typeof(IGetByCommonStringRepository<TEntity>).IsAssignableFrom(t))
return ((IGetByCommonStringRepository<TEntity>)Activator.CreateInstance(t)).GetByCommonStringColumn(commonString);
return null;
}
</code></pre>
<p></code></p>
http://stackoverflow.com/questions/1682443/net-type-definitions-in-merged-assemblies-ilmerge/1682591#1682591-1Answer by rama-jka toti for .NET type definitions in merged assemblies (ILMerge)rama-jka toti2009-11-05T18:27:35Z2009-11-05T18:27:35Z<p>Welcome to perils of strings and (physical-location) strings in code.. </p>
<p>All tools of that kind have similar problems and they better be smart, as many devs and designers of runtime features such as binding and serialisation didn't really envisage it but they sure pushed ILMerge as a 'smart' tool. It's so smart it can't even prune types. </p>
<p>Note that versioning also comes into play here, and configuration, .* and stars-in-their-eyes, and version independence from Redmond does not help either.</p>
<p>You will keep hitting trouble with thirdy party bits for sure. And believe me, I know you need the merging, as some pathetic small number of types can take ages for MS JIT to kick in for large apps (and nope, I don't want NGEN or optimised 3.5SP1 loading that's even slower than before due to System.Core or heaven-forbid WPF bloat ).</p>
<p>Best option, imho, at least on a large scale, is to get a decent commercial tool that scans and handles this (ie. from the existing pain and obfuscation experience out there). In the long run, you might end up instrumenting existing IL code if you don't have the sources.</p>
<p>[ Then there was a INotifyPropertyChanged string invention that so solved the global warming problem - Designed by Casio-Calc Inventors ]</p>
http://stackoverflow.com/questions/1682310/c-generics-problem-newing-up-the-generic-type-with-parameters-in-the-construct/1682376#16823760Answer by rama-jka toti for C# generics problem - newing up the generic type with parameters in the constructorrama-jka toti2009-11-05T17:53:40Z2009-11-05T17:53:40Z<p>It's a C# and CLR handicap, you cannot pass an argument to new T(), simple. </p>
<p>If you're coming from a C++ background this used be NOT-broken and TRIVIAL. PLUS you don't even require an interface/constraint. Breakage all over the place, and without that functional factory 3.0 hack you are forced to do 2-pass initialisation. Managed Blasphemy!</p>
<p>Do the new T() first and then set the property or pass an exotic initialiser syntax or as all well suggested use the Pony's functional workaround.. All yucky but that's the compiler and runtime idea of 'generics' for you.</p>
http://stackoverflow.com/questions/1682131/can-i-enforce-the-order-of-xml-attributes-using-a-schema/1682294#16822940Answer by rama-jka toti for Can I enforce the order of XML attributes using a schema?rama-jka toti2009-11-05T17:38:48Z2009-11-05T17:38:48Z<p>From what I recall, Expat is a non validating parser and better for it.. so you can probably scrap that XSD idea. Neither is the order-dependent a good idea in many XML approaches (XSD got criticised on element order a heck of a lot back in the day, for example, by pro or anti- sellers of XML Web Services at MSFT).</p>
<p>Do your custom encoding and simply extend either your logic for more efficient lookup or dig into the parser source. It is trivial to write the tooling around encoding efficient replacement whilst shielding the software agents and users from it.. you want do to this so it is easily migrated while preserving backward compatibility and reversibility. Also, go for fixed-size constraints/attribute-name-translation.</p>
<p>[ Consider yourself lucky with Expat :) and its raw speed. Imagine how CLR devs love XML scaling facilities, they routinely send 200MB on the wire in process of 'just querying the database' .. ]</p>
http://stackoverflow.com/questions/1623519/java-or-c-library-for-signal-analysis-on-the-sound-card/1681847#16818470Answer by rama-jka toti for Java or C# library for signal analysis on the sound cardrama-jka toti2009-11-05T16:37:57Z2009-11-05T16:37:57Z<p>Dependening on what you're looking to do Exocortex.DSP went into Math.NET attempt and so on.. Worth investigating if it is sufficient or performing well.</p>
<p>Alternatively, use what pros use and interop into it, Intel DSP and Math kernel packages have some work done and plenty of decent attempts out there to easily interface with it.. And to add, neither Java or C# does a good job on primitive arrays, and their implementation is usually outperformed by an order of magnitude for any decent size data set.</p>
<p>[piece to against-interop managed world ]</p>
http://stackoverflow.com/questions/1681517/marshalling-struct-with-embedded-pointer-from-c-to-unmanaged-driver/1681728#16817281Answer by rama-jka toti for Marshalling struct with embedded pointer from C# to unmanaged driverrama-jka toti2009-11-05T16:21:25Z2009-11-05T16:21:25Z<p>Give it a shot by replacing the byte[] <em>array</em> with an IntPtr..</p>
http://stackoverflow.com/questions/1681618/c-whats-the-best-way-to-track-avoid-dead-events/1681671#16816710Answer by rama-jka toti for C# - what's the best way to track & avoid dead eventsrama-jka toti2009-11-05T16:15:09Z2009-11-05T16:15:09Z<p>As always, be explicit and forget that GC exists (irony). Do the -= and sleep well.</p>
<p>Alternative, a hack, WeakReferences..</p>
http://stackoverflow.com/questions/1680907/why-is-system-math-and-for-example-mathnet-numerics-based-on-double/1681502#16815020Answer by rama-jka toti for Why is System.Math and for example MathNet.Numerics based on double?rama-jka toti2009-11-05T15:58:20Z2009-11-05T16:11:55Z<p>Neither Decimal nor float or double are good enough if you require something to be precise. Furthermore, Decimal is so expensive and overused out there it is becoming a regular joke. </p>
<p>If you work in fractions and require ultimate precision, use fractions. It's same old rule, convert once and only when necessary. Your rounding rules too will vary per app, domain and so on, but sure you can find an odd example or two where it is suitable. But again, if you want fractions and ultimate precision, the answer is not to use anything but fractions. Consider you might want a feature of arbitrary precision as well. </p>
<p>The actual problem with CLR in general is that it is so odd and plain broken to implement a library that deals with numerics in generic fashion largely due to bad primitive design and shortcoming of the most popular compiler for the platform. It's almost the same as with Java fiasco.</p>
<p>double just turns out to be the best compromise covering most domains, and it works well, despite the fact MS JIT is still incapable of utilising a CPU tech that is about 15 years old now.</p>
<p>[piece to users of MSDN slowdown compilers]</p>
http://stackoverflow.com/questions/1679044/should-i-read-the-exceptional-c-books-if-ive-read-the-effective-c-series/1679095#16790951Answer by rama-jka toti for Should I read the Exceptional C++ books if I've read the Effective C++ series.rama-jka toti2009-11-05T08:24:36Z2009-11-05T08:24:36Z<p>Frankly, Sutter yanks a lot in the exception safety ever since the introduction of the idea in one of the journals of the pre2000 age. The fact he used it a lot on replication and transactional systems makes sense, and unless you are a huge follower and interested in only the software of such 'safety' kind you will be bored to death. Meyers is far more practical and engaging. </p>
<p>Besides, if you want to move on, there are other books in the series, notably from the legends and not the writers for the sake of writing. Look up the bits from Jousttis (C++ templates), Gurtoyov (metaprgamming) and more recently 'Daddy 2' Stepanov. In my opinion, they are more influential, knowledgable, practical and shaping than anything DDJ or exception safety induced writeups..</p>
<p>And of course, if you ever need to go back to basics (and there is always a reason to), one of the best possible books on the subject is by the daddy himself: The C++ Programming Language (most underestimated and skimmed over book out there).</p>
http://stackoverflow.com/questions/1678588/my-huge-application-throws-an-outofmemoryexception-now-what/1679036#16790361Answer by rama-jka toti for My (huge) application throws an OutOfMemoryException, now what?rama-jka toti2009-11-05T08:05:12Z2009-11-05T08:05:12Z<p>Your PeakWorkingSet indicates the common number when 32bit CLR's starts to bomb out.</p>
<p>Despite what people tell you, and despite the huge irony of automatic memory management, you have to be aware of this and make sure you never approach that limit on such/32bit systems. Many are unaware of it and I usually love picking up their C# bloat downvotes , but when you run a few of such apps on a single desktop you can expect some havoc to be caused. Just look at the managed portion of VS shutdown, it's like a train running through a PC.</p>
<p>There is a free MemProfiler for .NET, use it and look for the hanging roots.. eventually, and especially as you start dealing with moderate size data, you will have to use design for streaming rather than rely it will run on x64 with more RAM.</p>
<p>And having a c880MB dataset is pathetic in size these days.. FACT!</p>
<p>[Piece to C# 3.0 sheep ]</p>
http://stackoverflow.com/questions/1628434/null-objects-vs-empty-objects/1629921#16299210Answer by rama-jka toti for null objects vs. empty objectsrama-jka toti2009-10-27T10:29:40Z2009-10-27T10:35:23Z<p>For the exception protagonists they usually stem from transactional programming and strong exception safety guarantees or blind guidelines. In any decent complexity, ie. async workflow, I/O and especially networking code they are simply inappropriate. The reason why you see Google style docs on the matter in C++, as well as all good async code 'not enforcing it' (think your favourite managed pools as well).</p>
<p>There is more to it and while it might look like a simplification, it really is that simple. For one you will get a lot of exceptions in something that wasn't designed for heavy exception use.. anyway I digress, read upon on this from the world's top library designers, the usual place is boost (just don't mix it up with the other camp in boost that loves exceptions, because they had to write music software :-).</p>
<p>In your instance, and this is not Fowler's expertise, an efficient 'empty object' idiom is only possible in C++ due to available casting mechanism (perhaps but certainly not always by means of <em>dominance</em> ).. On ther other hand, in your null <em>type</em> you are capable throwing exceptions and doing whatever you want while preserving the clean call site and structure of code. </p>
<p>In C# your choice can be a single instance of a type that is either good or malformed; as such it is capable of throwing acceptions or simply running as is. So it might or might not violate other contracts ( up to you what you think is better depending on the quality of code you're facing ).</p>
<p>In the end, it does clean up call sites, but don't forget you will face a clash with many libraries (and especially returns from containers/Dictionaries, end iterators spring to mind, and any other 'interfacing' code to the outside world ). Plus null-as-value checks are extremely optimised pieces of machine code, something to keep in mind but I will agree any day wild pointer usage without understanding constness, references and more is going to lead to different kind of mutability, aliasing and perf problems.</p>
<p>To add, there is no silver bullet, and crashing on null reference or using a null reference in managed space, or throwing and not handling an exception is an identical problem, despite what managed and exception world will try to sell you. Any decent environment offers a protection from those (heck you can install any filter on any OS you want, what else do you think VMs do), and there are so many other attack vectors that this one has been overhammered to pieces. Enter x86 verification from Google yet again, their own way of doing much faster and better 'IL', 'dynamic' friendly code etc.. </p>
<p>Go with your instinct on this, weight the pros and cons and localise the effects.. in the future your compiler will optimise all that checking anyway, and far more efficiently than any runtime or compile-time human method (but not as easily for cross-module interaction).</p>
http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1744176#1744176Comment by rama-jka toti on Why should exceptions be used conservatively?rama-jka toti2009-11-17T18:15:12Z2009-11-17T18:15:12ZIt is perfectly possible to guarantee that an instance of type has/not completely constructed without exceptions at all. And while it can look like a cludge, it outperforms, is quite rare plus the error codes are a universal/cross-env mechanism (which is all there is out there, on any box). All of this while exceptions are pretty much limited to your language, environment and often even compiler choice. That's why 'must' and 'only' are missing the point.http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1744176#1744176Comment by rama-jka toti on Why should exceptions be used conservatively?rama-jka toti2009-11-17T09:02:15Z2009-11-17T09:02:15Zagain, it is a myth and 'must' is too strong. passing a reference argument to a constructor 'downgrades' you to pre/post verification and error code land. while there, note that plenty of std libs allow you to replace the new handler. ok, while it does break a very useful contract, ie. that the constructor has run fully or not, the workaround is usable and pretty rare. again, the 'must' just doesn't make any sense, all you end up with is machine code and that 'must' is a myth which was never correct.http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1744176#1744176Comment by rama-jka toti on Why should exceptions be used conservatively?rama-jka toti2009-11-17T01:00:46Z2009-11-17T01:00:46Zthe last paragraph and 'must' is a myth. It is convenient but never a must.http://stackoverflow.com/questions/1725498/is-anybody-working-on-a-high-level-standard-library-for-c/1725691#1725691Comment by rama-jka toti on Is anybody working on a high level standard library for C++rama-jka toti2009-11-12T22:32:27Z2009-11-12T22:32:27ZI'd consider myself lucky that it hasn't, otherwise it would have messed up with memory models as much as Java, and to lesser extent C#. These are known artifacts in those environments. Second, rest assured that the people doing the CPUs are telling C++ compiler guys what to do and how.In that sense, both Java and C# 'rushed in'.You could have used posix or nt or boost wrapped one for years and most compilers gave you freebies that are executing far better than in VMs and their pools on top of OS bits.It is niche though,however, that's not its focus, it's a tool for any kind of idea,ie.Rubieshttp://stackoverflow.com/questions/1725498/is-anybody-working-on-a-high-level-standard-library-for-c/1725691#1725691Comment by rama-jka toti on Is anybody working on a high level standard library for C++rama-jka toti2009-11-12T22:31:54Z2009-11-12T22:31:54ZI can agree on some things but for threading I'll drop a note that hopefully makes sense. Remember though that all other environments are implemented with C or C++ and then some real ugly glueing..http://stackoverflow.com/questions/1711426/design-methods-for-multiple-serialization-targets-formats-not-versions/1722766#1722766Comment by rama-jka toti on Design methods for multiple serialization targets/formats (not versions)rama-jka toti2009-11-12T19:01:17Z2009-11-12T19:01:17ZI'll accept this for completeness and effort covering plenty of angles.. cheers. however, I cannot see the coding standards preference not introduce friend, and while I can't nail it yet, I'm somewhat reluctant to go for it.. could be wrong though but have to see first.http://stackoverflow.com/questions/1703649/adding-functionality-to-a-handle-wrapper/1703778#1703778Comment by rama-jka toti on Adding functionality to a handle wrapper.rama-jka toti2009-11-11T11:28:20Z2009-11-11T11:28:20Zall good and not an issue at all.. it wouldn't be interesting or challenging if we all agreed to the same principles. and without wide, different angles it would be dry and boring fast imo. piece to all..http://stackoverflow.com/questions/1703649/adding-functionality-to-a-handle-wrapper/1703778#1703778Comment by rama-jka toti on Adding functionality to a handle wrapper.rama-jka toti2009-11-11T10:24:21Z2009-11-11T10:24:21Zok will delete all the comments.. you have a fair point but he got 10 solid examples how it beats the 'Coding Standards' shoehorning :)http://stackoverflow.com/questions/1711058/sizeofthis-in-header-only-constructor-implementationComment by rama-jka toti on sizeof(*this) in header only constructor implementationrama-jka toti2009-11-11T09:59:05Z2009-11-11T09:59:05Zok, lets nitpick. There's a question mark as a doh, question. The title is a specific context. The 'header' is a dark .h-pit that had someone, anyone, look at some code and come across the construct and wonder about its usage. Whilst a specific scenario, it's ok to ignore it and see some other perspectives. Third, the fact English is not the only language on the planet should allow for some leniency. And what I'm really asking is starting from ',' and goes beyond the italic part to the end of that paragraph. I'll edit the title but if it can be made better, please let me know again.http://stackoverflow.com/questions/1711393/practical-uses-of-typedreference/1712038#1712038Comment by rama-jka toti on Practical uses of TypedReferencerama-jka toti2009-11-10T23:47:37Z2009-11-10T23:47:37Z+1 for not slamming the C-style varidiac bits :) And here's to hope you'll have variadic templates (not generics) by 5.0.http://stackoverflow.com/questions/1711660/the-pragmatic-programmer-book-is-10-years-old-now-are-parts-of-it-no-longer-re/1711703#1711703Comment by rama-jka toti on "The Pragmatic Programmer" book is 10 years old now, are parts of it no longer relevant?rama-jka toti2009-11-10T22:47:03Z2009-11-10T22:47:03Z+1 for nothing ever changing :-) still as hard as ever..http://stackoverflow.com/questions/1711058/sizeofthis-in-header-only-constructor-implementationComment by rama-jka toti on sizeof(*this) in header only constructor implementationrama-jka toti2009-11-10T22:21:43Z2009-11-10T22:21:43Zcheers for the tag and edit..http://stackoverflow.com/questions/1711426/design-methods-for-multiple-serialization-targets-formats-not-versions/1711489#1711489Comment by rama-jka toti on Design methods for multiple serialization targets/formats (not versions)rama-jka toti2009-11-10T22:19:05Z2009-11-10T22:19:05Z+1 for scalability viewpoint..http://stackoverflow.com/questions/1711426/design-methods-for-multiple-serialization-targets-formats-not-versions/1711601#1711601Comment by rama-jka toti on Design methods for multiple serialization targets/formats (not versions)rama-jka toti2009-11-10T22:17:47Z2009-11-10T22:17:47Z+1 for boost as i almost consider it part of language.. and of course for similarity/diversity angle.http://stackoverflow.com/questions/1711426/design-methods-for-multiple-serialization-targets-formats-not-versions/1711536#1711536Comment by rama-jka toti on Design methods for multiple serialization targets/formats (not versions)rama-jka toti2009-11-10T22:09:17Z2009-11-10T22:09:17Zthanks.. and all appreciated, +1. I always do an upvote phase first for the perspective (and there are many) or effort, and more questions perhaps later..