User Pieter - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T11:41:28Zhttp://stackoverflow.com/feeds/user/5822http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1864545/problem-with-formatting-output-c/1866085#18660850Answer by Pieter for Problem with formatting output c++Pieter2009-12-08T10:33:01Z2009-12-08T10:33:01Z<p>As I see your code, the <code>displayArrayOrder</code> doesn't just display the order but also sets the <code>isLeaf</code> property, that property is then used in the other display functions directly.</p>
<p>As Jerry Coffin noted, split those things of, and use the same print record function in all your display functions.</p>
<p>Something like this should get you started. (apparently, you print <code>leaf</code> when <code>isLeaf</code> is false, I kept that convention)</p>
<pre><code>bool BST::hasToPrintLeaf(int index) {
if (!items[index].isLeaf) {
return true
}
if (index > size ||
(index < size && items[2*index+1].empty && items[2*index+2].empty)) {
items[index].isLeaf = false;
return true;
}
}
void BST::printRecord(std::ostream & out, int index) {
out << left << setw(27) << items[index].instanceData;
out << right << setw(10);
if(hasToPrintLeaf(index)) {
out << left << setw(11) << "leaf";
}
out << setw(12) << index << endl;
}
</code></pre>
<p>Note that I didn't really change anything with regard to your logic, while I have my doubts about some things... (your two leaf tests exclude index == size as a case for example)</p>
http://stackoverflow.com/questions/1701067/stl-how-to-check-that-an-element-is-in-a-stdset/1701855#17018552Answer by Pieter for STL: How to check that an element is in a std::set ?Pieter2009-11-09T15:42:31Z2009-11-09T15:42:31Z<p>Another way of simply telling if an element exists is to check the <code>count()</code></p>
<pre><code>if (myset.count(x)) {
// x is in the set, count is 1
} else {
// count zero, i.e. x not in the set
}
</code></pre>
<p>Most of the times, however, I find myself needing access to the element wherever I check for its existence. </p>
<p>So I'd have to find the iterator anyway. Then, of course, it's better to simply compare it to <code>end</code> too. </p>
<pre><code>set< X >::iterator it = myset.find(x);
if (it != myset.end()) {
// do something with *it
}
</code></pre>
http://stackoverflow.com/questions/1700079/howto-create-combinations-of-several-vectors-without-hardcoding-loops-in-c/1700218#17002181Answer by Pieter for Howto create combinations of several vectors without hardcoding loops in C++?Pieter2009-11-09T10:31:25Z2009-11-09T10:31:25Z<p>Combining three vectors is essentially the same as first combining two vectors, and then combining the third one with the result.</p>
<p>So it all boils down to writing a function that can combine two vectors.</p>
<pre><code>std::vector< std::string > combine(std::vector< std::string > const & inLhs, std::vector< std::string > const & inRhs) {
std::vector< std::string > result;
for (int i=0; i < inLhs.size(); ++i) {
for (int j=0; j < inRhs.size(); ++j) {
result.push_back(inLhs[i] + inRhs[j]);
}
}
return result;
}
</code></pre>
<p>And then something like:</p>
<pre><code>std::vector< std::string > result = combine(Vec1, Vec2);
result = combine(result, Vec3);
</code></pre>
<p>and so on for every vector you need combined.</p>
<p>Note that it's more the "C++ way" to use input and output iterators i.s.o. passing vectors around, and much more efficient. In the above version the vector gets copied over and over...</p>
<p>I simply used vectors to stay closer to your original code and, hopefully, make more sense to you.</p>
http://stackoverflow.com/questions/323294/datatype-of-sum-result-in-mysql0Datatype of SUM result in MySQLPieter2008-11-27T09:14:37Z2009-10-28T11:43:12Z
<p>I'm having a bit of a problem with converting the result of a MySQL query to a Java class when using SUM.</p>
<p>When performing a simple SUM in MySQL</p>
<pre><code>SELECT SUM(price) FROM cakes WHERE ingredient = 'chocolate';
</code></pre>
<p>with <code>price</code> being an integer, it appears that the <code>SUM</code> sometimes returns a string and sometimes an integer, depending on the version of the JDBC driver.</p>
<p>Apparently the server does tell the JDBC driver that the result of <code>SUM</code> is a string, and the JDBC driver sometimes 'conveniently' converts this to an integer. (see <a href="http://marc.info/?l=mysql-java&m=116295785422117&w=2" rel="nofollow">Marc Matthews' explanation</a>).</p>
<p>The Java code uses some <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/beans/BeanInfo.html" rel="nofollow">BeanInfo</a> and <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/beans/Introspector.html" rel="nofollow">Introspection</a> to automagically fill in a (list of) bean(s) with the result of a query. But this obviously can't work if the datatypes differ between servers where the application is deployed.</p>
<p>I don't care wether I get a string or an integer, but I'd like to always have the same datatype, or at least know in advance which datatype I'll be getting. </p>
<p>Is there some way to know which datatype will be returned by a MySQL <code>SUM</code> from within the Java code? Or does anyone know some better way to deal with this?</p>
http://stackoverflow.com/questions/1518822/c-including-files-problems/1518994#15189942Answer by Pieter for c++ including files problemsPieter2009-10-05T09:17:03Z2009-10-05T09:17:03Z<p>Most probably, one of your includes is not self contained. E.g. you use an std::vector in headerfoo.h and in headerbar.h, but only include it in headerbar.h</p>
<pre><code>headerfoo.h
typedef std::vector< int > MyCollection;
headerbar.h
#include <vector>
typedef std::vector< double > MyOtherCollection;
</code></pre>
<p>Now as long as you include <code>headerbar.h</code> first, you'll be fine (because then the <code>vector</code> header is included), but if you include <code>headerfoo.h</code> first, you'll get a compile error of the kind 'unknown type vector'</p>
<pre><code>sourcefoo.cpp
#include "headerbar.h"
#include "headerfoo.h" // compiles fine, vector is known via headerbar
</code></pre>
<p>The only good solution here, is to include the <code>vector</code> header in <code>headerfoo.</code>h too</p>
<pre><code>headerfoo.h
#include <vector>
typedef std::vector< int > MyVector;
</code></pre>
<p>Now the order in which you include headers is no longer relevant, this is called making a header self contained, i.e. no matter what else you include before this header it'll compile.</p>
<p>This is always a good idea, consider you don't do this, but simply rely on the correct order of includes as a quick fix. If then later the code of bar changes, and you decide a <code>list</code> is a better fit for <code>MyOtherCollection</code>, vector is no longer included anywhere:</p>
<pre><code> headerbar.h
#include <list>
#typedef std::list< double > MyOtherCollection;
</code></pre>
<p>While your change has no mistakes, the build will break, since you relied on headerbar to introduce types for other, unrelated, code.</p>
http://stackoverflow.com/questions/1497309/tiny-serializer/1497758#14977580Answer by Pieter for Tiny serializerPieter2009-09-30T12:18:56Z2009-09-30T12:25:14Z<p>I know you don't want to use a 3rdParty serializer, but if you would reconsider: use <a href="http://www.boost.org/doc/libs/1%5F40%5F0/libs/serialization/doc/tutorial.html" rel="nofollow">Boost.Serialization</a>.</p>
<p>(even if this is not the answer for you, it might be for someone else stumbling on this question)</p>
<p>Very simple example</p>
<pre><code>class some_data
{
public:
template<class Archive>
void serialize(Archive & ar, const unsigned int version)
{
ar & my_string;
ar & my_double;
}
private:
std::string my_string;
double my_double;
};
</code></pre>
<p>and then to save:</p>
<pre><code>my_data dataObject;
std::ofstream ofs("filename");
boost::archive::text_oarchive oa(ofs);
oa << dataObject;
</code></pre>
<p>or to load:</p>
<pre><code>my_data dataObject;
std::ifstream ifs("filename");
boost::archive::text_iarchive ia(ifs);
ia >> dataObject;
</code></pre>
http://stackoverflow.com/questions/1492591/c-templates-header-files-still-broken/1493245#14932451Answer by Pieter for c++ templates: header files still broken?Pieter2009-09-29T15:17:55Z2009-09-29T15:43:30Z<p>Export is only support by the EDG frontend, comercially only available in the Comeau compiler as far as I know.</p>
<p>Export doesn't eliminate the need for source disclosure, nor does it reduce compile dependencies, while it requires a massive effort from compiler builders. </p>
<p>So Herb Sutter himself asked compiler builders to 'forget about' export. As the time investment needed would be better spend elsewhere... so I don't think export will ever be implemented by other compilers after they saw how long it took, and how little was gained.</p>
<p>The paper is called "Why we can't afford export", it's listed on <a href="http://gotw.ca/publications" rel="nofollow">Sutters blog</a> but no pdf there (a quick google should turn it up though), it's six years old now, I suppose they all listened and never bothered :)</p>
<p>Many people use two header files (e.g. <code>.hpp</code> and <code>.ipp</code>), one with only the declaration, and one with the definitions, then it's simply a matter of including one in the other.</p>
<p>foo.hpp</p>
<pre><code>#ifndef MY_TEMPLATES_HPP
#define MY_TEMPLATES_HPP
template< class T >
void foo(T & t);
#include "foo.ipp"
#endif
</code></pre>
<p>foo.ipp</p>
<pre><code>#ifdef MY_TEMPLATES_IPP
nonsense here, that will generate compiler error
#else
#define MY_TEMPLATES_IPP
template< class T >
void foo(T & t) {
... // long function
}
#endif
</code></pre>
<p>This only gains some clarity of course, nothing really changes compared to simply inlining everything in one header file.</p>
http://stackoverflow.com/questions/1481216/c-reference-type-recommended-usage/1481541#14815411Answer by Pieter for C++ reference type recommended usagePieter2009-09-26T16:08:20Z2009-09-26T16:08:20Z<p>Stream operators are an obvious example</p>
<pre><code>std::ostream & operator<< (std::ostream &, MyClass const &...) {
....
}
mystream << myClassVariable;
</code></pre>
<p>You obviously don't want a pointer as checking for NULL makes using an operator very tedious i.s.o. convenient</p>
http://stackoverflow.com/questions/1481382/runtime-error-sigsegv/1481510#14815100Answer by Pieter for runtime error (SIGSEGV)Pieter2009-09-26T15:58:48Z2009-09-26T15:58:48Z<p>There's nothing inherently wrong as far as I can see at first glance. However a segfault is certainly very possible when providing inputs your code can't cope with. </p>
<p>There's nothing preventing from writing outside the boundaries of <code>arr</code> on input for example.</p>
<p>Is there a specific input for which this fails?</p>
http://stackoverflow.com/questions/1453809/c-constructers-and-destructers/1454064#14540642Answer by Pieter for c++ constructers and destructersPieter2009-09-21T11:31:55Z2009-09-21T11:31:55Z<p>As other pointed out, using a <code>destroy</code> method is a bit pointless, you should just define the destructor <code>~Animal</code>, but if you absolutely need to implement it, I would do</p>
<pre><code> [...]
void destroy() {
delete [] new_name;
new_name = NULL;
}
~Animal() {
destroy();
}
[...]
</code></pre>
<p>This is a rather bad design though. In general, you should strive to only release (member variable's) memory in the destructor. That way you're guaranteed pointers are valid in all other functions. </p>
<p>By adding such a destroy function, every other function has to check for a valid new_name pointer before dereferencing it...</p>
http://stackoverflow.com/questions/1443395/unable-to-create-an-operator-for-a-generic-type/1443463#14434631Answer by Pieter for Unable to create an operator== for a generic type?Pieter2009-09-18T09:30:45Z2009-09-18T09:30:45Z<p>In standard C++ you would write</p>
<pre><code>template< class T >
class Range {
bool operator==(Range const & rhs) const {
return ( m_min == rhs.m_min ) && ( m_max == rhs.m_max );
}
};
</code></pre>
<p>and it would work as long as the type T has an operator==</p>
<p>But this is obviously not standard C++, the <code>generic</code>, thing the <code>public ref class</code>, the <code>Range<T>%</code></p>
<p>Look for some special rules regarding <code>generic</code> things, I would guess they put more constrains on the type T than a standard template.</p>
http://stackoverflow.com/questions/1421697/c-running-faster-than-c/1422901#14229013Answer by Pieter for C# running faster than C++?Pieter2009-09-14T17:27:14Z2009-09-14T17:27:14Z<p>Totally of topic but...</p>
<p>I found some info on the encryption module on the homepage you link to from your profile <a href="http://www.coreyogburn.com/bigproject.html" rel="nofollow">http://www.coreyogburn.com/bigproject.html</a></p>
<p>(quote)</p>
<blockquote>
<p>Put together by my buddy Karl Wessels and I, we believe we have quite a powerful new algorithm.</p>
<p>What separates our encryption from the many existing encryptions is that ours is both fast AND secure. Currently, it takes 5 seconds to encrypt 100 MB. It is estimated that it would take 4.25 * 10^143 years to decrypt it!</p>
<p>[...]</p>
<p>We're also looking into getting a copyright and eventual commercial release. </p>
</blockquote>
<p>I don't want to discourage you, but getting encryption right is hard. Very hard.</p>
<p>I'm not saying it's impossible for a twenty year old webdeveloper to develop an encryption algorithm that outshines all existing algorithms, but it's extremely unlikely, and I'm very sceptic, I think most people would be.</p>
<p>Nobody who cares about encryption would use an algorithm that's unpublished. I'm not saying you have to open up your sourcecode, but the workings of the algorithm must be public, and scrutinized, if you want to be taken seriously...</p>
http://stackoverflow.com/questions/1404394/g-external-reference-error/1404475#14044750Answer by Pieter for g++ external reference errorPieter2009-09-10T10:21:04Z2009-09-10T10:21:04Z<p>I'd have to look it up but I think const global variables have internal linkage in C++, don't use <code>const</code> and it'll compile fine.</p>
<pre><code>1.cpp
...
extern std::string QWERTY;
...
2.cpp
#include <string>
std::string QWERTY("qwerty");
</code></pre>
<p>Or you could declare/define it as a const string in a common header of course.</p>
<p>Adding a superfluous <code>extern</code> to the 2.cpp will get it to compile too, but I'm not sure that's standard or some g++ 'extra'</p>
http://stackoverflow.com/questions/1400346/is-there-an-xcode-syntax-colouring-for-rails-ruby-erb-if-not-how-can-i-write/1400410#14004102Answer by Pieter for Is there an Xcode syntax colouring for Rails, Ruby, Erb? If not, how can I write one myself?Pieter2009-09-09T15:30:32Z2009-09-09T15:30:32Z<p>Xcode can do custom syntax coloring, you need two files</p>
<ul>
<li><code>pbfilespec</code>: specifies MIME type, extension and some meta info</li>
<li><code>xclangspec</code>: which holds identifiers etc. that need colouring</li>
</ul>
<p>and put them somewhere in <code>~/Library/Application Support/..</code></p>
<p>I'm a Textmate user myself, so don't know if such a thing exists for ruby, and neither a more exact specification for those files, but examples for other languages can easily be found.</p>
http://stackoverflow.com/questions/1245478/boost-build-conditional-library-compilation-per-project/1399250#13992501Answer by Pieter for Boost.Build conditional library compilation per-projectPieter2009-09-09T11:58:09Z2009-09-09T11:58:09Z<p>As I understand it, your config library is shared over different projects and uses different defines for each project.</p>
<p>It's not possible to overcome recompilation in that case, irrespective of boost build.or any other build system. In between compiles of the cpp files the preprocessed files <em>have</em> changed.</p>
<p>If you want to avoid recompilation one option is to split of the config library into different libraries for each project, but depending on what <code>config</code> looks like, having a lot of code duplication is rarely desireable either...</p>
<p>The only other option I can think of is reducing the amount of code that needs to be recompiled every time.</p>
<p>e.g. you have a sourcefile <code>LargeFunction.cpp</code> with</p>
<pre><code> #if CONFIG_DEFINE_1
void VeryLargeFunction() {
...
}
#elif CONFIG_DEFINE_2
void VeryLargeFunction() {
...
}
#endif
</code></pre>
<p>Split it into three files, one containing the VeryLargeFunction as defined for DEFINE_1, one as defined for DEFINE_2, and one which simply includes these two based on the values of the defines.</p>
<pre><code> #if CONFIG_DEFINE_1
#include "definitionFileFor1"
#elif CONFIG_DEFINE_2
#include "definitionFileFor2"
#endif
</code></pre>
<p>This file still needs to be recompiled every time, but the object files which contain the 'real' code, will not.</p>
<p>You'll effectively only relink existing object files on every compile, i.s.o. recompiling everything. </p>
<p>The disadvantage is more maintenance though, and the different function definitions reside in different files, so the code becomes a bit harder to read.</p>
http://stackoverflow.com/questions/1399063/c-define-preprocessor/1399076#13990765Answer by Pieter for C++ #define preprocessorPieter2009-09-09T11:21:58Z2009-09-09T11:21:58Z<p>No, only in the current translation unit. </p>
<p>I.e. every file which has <code>#define</code>, or includes a file that has the <code>#define</code> will see the definition.</p>
<p>Edit, to respond to your comment: to get a define in every file, either put it in a header which gets included everywhere, or use some compiler option to get defines added.</p>
<p>e.g. for gcc one would do</p>
<pre><code>gcc -Dthedefine=itsvalue
</code></pre>
<p>Not sure how one specifies such includes in VC++, but I'm sure it's possible somehow.</p>
http://stackoverflow.com/questions/1393454/initialising-an-anonymous-mutex-lock-holding-class-instance-in-the-lhs-of-a-comma/1393547#13935473Answer by Pieter for Initialising an anonymous mutex-lock-holding class instance in the LHS of a comma operatorPieter2009-09-08T11:49:42Z2009-09-08T18:00:56Z<blockquote>
<p>Is it correct that the temporary object destructor will not be called until the end of the expression, after Func() has returned? </p>
</blockquote>
<p>It is guaranteed that both constructor and destructor are called, as they have side effects, and that destruction will only happen at the end of a full expression.</p>
<p>I believe it should work</p>
<blockquote>
<p>If the function test_raiicomma_3() needs to lock two mutexes, is it correct that the mutexes will be locked in order before calling Func(), and released afterwards, but may unfortunately be released in either order?</p>
</blockquote>
<p>Comma is always evaluated left to right, and automatic variables within a scope are always destroyed in reverse order of creation, so I think it's even guaranteed they are released in the (correct) order too</p>
<p>As litb points out in the comments, you need braces or your expression will be parsed as a declaration.</p>
<blockquote>
<p>(If so, do you think it's ever worthwhile to use this idiom, or is it always clearer to declare the lock in a separate statement?)</p>
</blockquote>
<p>I don't think so no, to confusing for very, very little gain...
I always use very explicit locks, and very explicit scopes (often extra {} within a block), decent threadsafe code is hard enough without 'special' code, and warrants very clear code in my opinion.</p>
<p>YMMW of course :)</p>
http://stackoverflow.com/questions/1383174/source-file-organisation/1383369#13833691Answer by Pieter for Source file organisationPieter2009-09-05T13:49:14Z2009-09-05T13:57:26Z<p>You shouldn't, in general, add source files from libraries directly to other projects. Compile them separatly as a library and use those.</p>
<p>For organising the library's directory structure itself, right now I settled on something like the following structure</p>
<ul>
<li>library1/widget.h</li>
<li>library1/private/onlyinlib.h</li>
<li>library1/private/widget.cpp</li>
</ul>
<p>(and if applicable)</p>
<ul>
<li>library1/private/resources/widget.jpg</li>
<li>library1/private/project/widget.xcode</li>
</ul>
<p>I put all headers directly in the library path, and have a subfolder <code>private</code> which will contain everything that's only used by the library, but should never be shared / exposed.</p>
<p>The greatest advantage is that every project I start only needs a include path pointing at the directory containing my libraries, then every (public) include is done like</p>
<pre><code>#include "library1/widget.h"
</code></pre>
<p>private includes are simply</p>
<pre><code>#include "onlyinlib.h"
</code></pre>
<p>This has a number of advantages:</p>
<ul>
<li>If new libraries are introduced, there's no messing with project /compiler settings to get the headers 'visible'. </li>
<li>Moving to other compilers / platforms is also very little hassle.</li>
<li>The headers are automatically 'namespaced', i.e. by including part of the path too, it's next to impossible to get a nameclash with the includes</li>
<li>It's immediatly obvious where a header comes from, and if a header is part of the public interface or not</li>
</ul>
http://stackoverflow.com/questions/1307642/what-is-a-good-way-to-edit-c-on-mac-os-x/1310580#13105802Answer by Pieter for What is a good way to edit C++ on Mac OS X?Pieter2009-08-21T07:52:13Z2009-08-21T07:52:13Z<p>I almost exclusively use Textmate, but to be fair the decision to switch to Textmate (coming from codewarrior in OS 9 days), was mainly because the XCode editor (then named ProjectBuilder) was annoyingly slow at editing larger files.</p>
<p>I'm sure that changed a lot over the years, but I see no reason to switch so I don't.</p>
<p>That said, one thing where XCode really outshines Textmate is the integration of a debugger, when you're just starting to learn, I think having an integrated debugger will help you quickly understand what's going on with your code, and will be a great advantage...</p>
<p>If you've got Textmate, just try em both for a few months, you're a student anyway, you should have plenty of time</p>
http://stackoverflow.com/questions/1207478/does-it-make-sense-to-implement-iterators-for-containers-which-has-no-obvious-end/1207529#12075292Answer by Pieter for Does it make sense to implement iterators for containers which has no obvious end - e.g. trees?Pieter2009-07-30T15:51:58Z2009-07-30T15:51:58Z<p>If by 'strict' you mean: a single all encompassing definition, you're right, there isn't one.</p>
<p>But 'end' for trees is very well defined, although dependent on the traversal method your choosing.</p>
<ul>
<li>If you do inorder (or symmetric) traversal, the root node will be <code>end</code>.</li>
<li>in preorder (or depth first), the rightmost element would be <code>end</code>, etc.</li>
</ul>
<p>Most common <a href="http://en.wikipedia.org/wiki/Tree%5Ftraversal" rel="nofollow">tree traversal</a> methods.</p>
http://stackoverflow.com/questions/1037575/why-arent-exceptions-in-c-checked-by-the-compiler/1037665#103766510Answer by Pieter for Why aren't exceptions in C++ checked by the compiler?Pieter2009-06-24T10:55:36Z2009-07-13T15:20:18Z<p>Exception specifications are pretty useless in C++.</p>
<p>It's not enforced that no other exceptions will be thrown, but merely that the global function <code>unexpected()</code> will be called (which can be set)</p>
<p>Using exception specifications mainly boils down to deluding yourself (or your peers) into some false sense of security. Better to simply not bother.</p>
http://stackoverflow.com/questions/1117693/initializing-template-base-class-member-types-in-derived-class-initializer-lists/1118444#11184442Answer by Pieter for Initializing template base-class member types in derived-class initializer listsPieter2009-07-13T09:20:50Z2009-07-13T15:18:49Z<p>The Foo_T type will not be looked up in the base class when used in the derived (Bar) constructor.</p>
<pre><code>Bar (const foo_arg_t bar_arg, const a_arg_t a_arg)
: Foo<T>(bar_arg) // base-class initializer
{
Foo_T = TypeA(a_arg); TypeA, etc. // Won't compile, per the standard
}
</code></pre>
<p>This is per the C++ standard, which says unqualified names are generally non-dependent, and should be looked up when the template is fully defined. </p>
<p>Since a template base class definition is not known at that time (there could be fully specialised instances of the template being pulled in later in the compilation unit), unqualified names are never resolved to names in dependent base classes.</p>
<p>If you need a name from a base class when templates are involved, you have to either fully qualify them, or make them implicitly dependent in your derived class.</p>
<pre><code> Foo< T >::Foo_T = TypeA(a_arg); // fully qualified will compile
</code></pre>
<p>or, make it dependent</p>
<pre><code> this->Foo_T = TypeA(a_arg);
</code></pre>
<p>Since the <code>this</code> makes it template dependent, resolving the type is postponed till "phase 2" of template instantiation (and then, the base class is also fully known)</p>
<p>Note that if you wanted to use a function from the base class, you could have also added a using declaration..</p>
<p>(inside Bar())</p>
<pre><code> some_foo_func(); // wouldn't work either
using Foo<T>::some_foo_func;
some_foo_func(); // would work however
</code></pre>
http://stackoverflow.com/questions/1117066/installing-c-boost-on-mac-osx-leopard-port-fails/1118615#11186151Answer by Pieter for installing c++ boost on mac osx leopard -- port failsPieter2009-07-13T10:02:45Z2009-07-13T10:02:45Z<p>My experiences with MacPorts are a mixed blessing at best. Sometimes ports are out of date, or only half-done, it's very nice when it works, but unfortunatly doesn't always, so I kind of gave up on <code>port</code> to be honest...</p>
<p>That said, the default <code>configure</code>, <code>bjam</code>, ... combo from the boost distribution works flawlessly on os x, any reason you specifically want to get it working via <code>port</code> ?</p>
http://stackoverflow.com/questions/1118479/best-practice-to-detect-iphone-app-only-access-for-web-services/1118510#11185103Answer by Pieter for Best practice to detect iPhone app only access for web services?Pieter2009-07-13T09:41:34Z2009-07-13T09:41:34Z<p>Use some form of <a href="http://en.wikipedia.org/wiki/Digital%5Fsignature" rel="nofollow">digital signatures</a> in your request. While it's rather hard to make this completely tamper proof (as is anything with regard to security). It's not that hard to get it 'good enough' to prevent most abuse.</p>
<p>Of course this highly depends on the sensitivity of the data, if your data transactions involve million dollar transactions, you'll want it a lot more secure than some simple usage statistic logging (if it's hard enough to tamper and it will gain little to no gain to the attacker except piss you of, it's safe to assume people won't bother...)</p>
http://stackoverflow.com/questions/1108709/solve-boost-thread-compilation-error-with-metrowerks-compiler/1109070#11090701Answer by Pieter for Solve boost.thread compilation error with Metrowerks compilerPieter2009-07-10T11:40:23Z2009-07-10T11:40:23Z<p>The second instance is a partial specialization of the template class, this is valid C++ and should not result in a redefinition error.</p>
<p>I've had problems with such features in a metrowerks compilers in the past too though, more specifically, when using template template parameters with default values, the compiler would never compile it. My workaround was rather easy, don't provide a default value... (1)</p>
<p>If I were you I'd try adding a full specialization for your specific type, and hope the compiler uses some different compile path for those and gets you past this....
(this is just a wild guess, I don't have/use a metrowerks compiler these days)</p>
<pre><code>typedef boost::function< void () > MyThreadFunction; // or whatever you need
template <>
struct thread::thread_data<boost::reference_wrapper< MyThreadFunction > >:
detail::thread_data_base
{
....
};
</code></pre>
<p>(1) To be honest, this was many years ago, I don't think any compiler compiled templates fully back then.</p>
http://stackoverflow.com/questions/1049553/how-prevalent-is-utf-8-really/1049730#10497301Answer by Pieter for How prevalent is UTF-8 really?Pieter2009-06-26T15:22:32Z2009-06-26T15:28:53Z<blockquote>
<p>I'm interested both in statistical
data and the situation in specific
countries.</p>
</blockquote>
<p>I think this is much more dependent on the problem domain and its history, then on the country in which an application is used.</p>
<p>If you're building an application for which all your competitors are outputting in e.g. ISO-8859-1 (or have been for the majority of the last 10 years), I think all your (potential) clients would expect you to open such files without much hassle.</p>
<p>That said, I don't think most of the time there's still a need to output anything but UTF-8 encoded files. Most programs cope these days, but once again, YMMV depending on your target market.</p>
http://stackoverflow.com/questions/1048904/help-for-boost-statechart-bug/1049205#10492050Answer by Pieter for Help for Boost.Statechart bugPieter2009-06-26T13:40:53Z2009-06-26T13:40:53Z<blockquote>
<p>One would expect the event would only
trigger one "BUGGY".</p>
</blockquote>
<p>I wouldn't to be honest. You specify three orthogonal states, with a <code>react()</code> defined on an outer state. As I understand it (*) you have three innermost states, as long as you keep forward'ing the event, all three will be processed.</p>
<p>Each of those three doesn't have a react, so it goes looking for a react in a outer state, and finds one in <code>top</code> and calls it, then as the result is a <code>forward</code> arbitrarily selects the next not yet visited innermost state, for which the same applies.</p>
<blockquote>
<p>I cannot return discard_event() as I
need the event to reach multiple
states (usually deep in an orthogonal
set of states).</p>
</blockquote>
<p>But that's exactly what you're achieving here. You're saying you want to reach multiple states, but you don't want the react() of those states to fire? That doesn't make much sense to be honest.</p>
<p>It's hard to give advice as you obviously are not trying to print 'buggy' once, what exactly are you trying to achieve?</p>
<p>(*) for the record, I only have played with state_machine a little bit when it was new, never used it in production code, so I'm not at all an expert</p>
http://stackoverflow.com/questions/1025579/when-to-use-a-void-pointer/1025977#10259770Answer by Pieter for When to use a void pointer?Pieter2009-06-22T07:55:46Z2009-06-22T07:55:46Z<p>Next to interfacing with C, I find myself only using void pointers when I need to debug / trace some code and like to know the address of a certain pointer.</p>
<pre><code>SomeClass * myInstance;
// ...
std::clog << std::hex << static_cast< void* >(myInstance) << std::endl;
</code></pre>
<p>Will print something like</p>
<pre><code>0x42A8C410
</code></pre>
<p>And, in my opinion, nicely documents what I'm trying to do (know the pointer address, not anything about the instance)</p>
http://stackoverflow.com/questions/952907/practices-on-when-to-implement-accessors-on-private-member-variables-rather-than/955953#9559530Answer by Pieter for practices on when to implement accessors on private member variables rather than making them publicPieter2009-06-05T13:50:17Z2009-06-05T13:50:17Z<p>While most answers focus on the design / encapsulation standpoint (and I agree to the general consensus, "why not use setter / getter?"). I'd like to add that once you've hunted for a bug in some large legacy code bases, with public members, you'll never, ever, EVER, write a class without setter / getters.</p>
<p>Imagine the following: you have a large codebase (talking over 1M+ lines of code), where a lot of highly optimized legacy code passes pointers around, does bit twiddling etc. etc.</p>
<p>Now, after hours of debugging, you found that a certain member is in an inconsistent state, you're wondering "hmm, this causes the bug, now how did this member get that value..."</p>
<p>1) setter/getters: you put a breakpoint, 5 minutes later, bug is solved</p>
<p>2) public member: you're in for hours and hours of annoying detective work </p>
<p>Public members: don't do it, no gain, only potential pain</p>
http://stackoverflow.com/questions/910542/c-template-specialization-problem/910968#9109682Answer by Pieter for C++ template specialization problemPieter2009-05-26T14:23:50Z2009-05-26T14:29:02Z<blockquote>
<p>I need a C++ template that, given a
type and an object of that type, it
can make a decision based on whether
the type is an integer or not, while
being able to access the actual
objects.</p>
</blockquote>
<p>You can make decisions based on the type being an integer or not, the problem is it's impossible to declare a template with an object of any type. So the question on how to decide wether a type is an integer is moot.</p>
<p>Note that in all answers your original template is neatly changed to</p>
<pre><code>template < typename T, int >
class C {};
</code></pre>
<p>instead of your </p>
<pre><code>template< typename T, T >
class C {};
</code></pre>
<p>But while <code>C<int, 5></code> is a perfectly valid declaration, this is not the case for an arbitrary type T, case in point <code>C<float, 5.> </code> will give a compiler error.</p>
<p>Can you post what you're trying to achieve exactly?</p>
<p>And for the record, if the second template argument is always an <code>int</code>, and you simply want to take its value if the type is an integer type, and 0 otherwhise, you can simply do:</p>
<pre><code>#include <limits>
template< typename T, int N >
class C {
static const int Value = (std::numeric_limits<T>::is_integer) ? N : 0;
};
</code></pre>
http://stackoverflow.com/questions/1854302/is-assert-evil/1854338#1854338Comment by Pieter on Is assert evil?Pieter2009-12-06T09:47:33Z2009-12-06T09:47:33Z@Mike I agree, and I also think it's a decent way of documenting what was assumed w.r.t. parameters of a function.http://stackoverflow.com/questions/1789421/null-pointer-is-the-same-as-deallocating-it/1789444#1789444Comment by Pieter on NULL pointer is the same as deallocating it?Pieter2009-11-24T14:28:45Z2009-11-24T14:28:45ZIf you're only allocating a pointer which you want to keep alive till the end of the scope, a <code>scoped_ptr</code> is a better choice.http://stackoverflow.com/questions/1755834/memory-access-violation-whats-wrong-with-this-seemingly-simple-programComment by Pieter on Memory access violation. What's wrong with this seemingly simple program?Pieter2009-11-18T15:12:48Z2009-11-18T15:12:48ZUsing libraries when they are available is almost always the smarter thing to do. Also, if it's such a basic thing, then why did you need help from the SO community? On top of that, strlen() is a library function...http://stackoverflow.com/questions/1701067/stl-how-to-check-that-an-element-is-in-a-stdset/1701855#1701855Comment by Pieter on STL: How to check that an element is in a std::set ?Pieter2009-11-09T15:54:35Z2009-11-09T15:54:35Z@Frerich that's only relevant for <code>multiset</code> and <code>multimap</code> I thought? Still good to point out though :)http://stackoverflow.com/questions/1550910/c-and-java-performance/1550926#1550926Comment by Pieter on C++ and Java performancePieter2009-10-11T17:24:02Z2009-10-11T17:24:02ZA, theoretical, smart enough compiler would realize that the vector is thrown away after it's filled, and optimize testvector() away completely. What I'm getting at, such contrived do-nothing test programs are, literally, meaningless.http://stackoverflow.com/questions/1490225/c-copy-contructor-use-getters-or-access-member-vars-directly/1490253#1490253Comment by Pieter on C++: Copy contructor: Use Getters or access member vars directly?Pieter2009-09-29T09:28:07Z2009-09-29T09:28:07ZIf the setter/getter does something complicated, it should already have been done to the source object, or you have a bug. If a copy constructor does anything beyond the semantic equivalent of duplicating the data of the source object, you're hiding a bug.http://stackoverflow.com/questions/1490225/c-copy-contructor-use-getters-or-access-member-vars-directly/1490263#1490263Comment by Pieter on C++: Copy contructor: Use Getters or access member vars directly?Pieter2009-09-29T09:18:35Z2009-09-29T09:18:35ZI see what you're trying to say, but for a copy constructor that's a moot point. If an object exists with a string, it should already be white space trimmed, null checked, etc. by the regular constructors and setters. If a copy constructor needs to change a member in any way, that means the original object was wrong, and hence there's a bug in a regular constructor or setter. Said bug should not be hidden by the copy constructor!http://stackoverflow.com/questions/1490225/c-copy-contructor-use-getters-or-access-member-vars-directly/1490252#1490252Comment by Pieter on C++: Copy contructor: Use Getters or access member vars directly?Pieter2009-09-29T09:14:47Z2009-09-29T09:14:47Zthe 'validating' is a moot point, if certain values are invalid for m_str1, there should never exist such an object in the first place. At most you could assert to catch errors in the validating process via the setters and (regular) constructors. http://stackoverflow.com/questions/1488775/c-remove-new-line-from-multiline-string/1488798#1488798Comment by Pieter on C++ Remove new line from multiline string Pieter2009-09-28T22:53:31Z2009-09-28T22:53:31Zthe question was, "what's the most efficient way...", so I guess efficiency is important ;)http://stackoverflow.com/questions/1481382/runtime-error-sigsegv/1481510#1481510Comment by Pieter on runtime error (SIGSEGV)Pieter2009-09-28T22:47:47Z2009-09-28T22:47:47ZIt's only fine for certain inputs... add checks for all your inputs and it'll work fine too. this is not a compiler related problemhttp://stackoverflow.com/questions/1481216/c-reference-type-recommended-usage/1481578#1481578Comment by Pieter on C++ reference type recommended usagePieter2009-09-27T00:48:46Z2009-09-27T00:48:46ZI completely agree with your reasoning, but just wanted to add that just for optional semantics you can also use boost::optional <a href="http://www.boost.org/doc/libs/1_40_0/libs/optional/doc/html/index.html" rel="nofollow">boost.org/doc/libs/…</a>http://stackoverflow.com/questions/1453809/c-constructers-and-destructers/1454064#1454064Comment by Pieter on c++ constructers and destructersPieter2009-09-21T15:30:04Z2009-09-21T15:30:04Zdeleting a NULL pointer does nothing according to the C++ spec, deleting a pointer twice however, invokes undefined behavious (you'll probably crash). A destructor is always called for stack objects. So if you wouldn't set the pointer to NULL, you would get a crash when an Animal object goes out of scope if you called destroy... http://stackoverflow.com/questions/1430884/c-design-issue/1431025#1431025Comment by Pieter on C++ design issuePieter2009-09-20T00:23:49Z2009-09-20T00:23:49ZThat's all syntactic mumbo jumbo. One simple question: in your design, an adaptation of the question, does a B object ask an A object to create a B object? Yes... What could possibly be replaced / tested / substituted /etc. doesn't make the slightest difference to the semantics that a B object asks an A object to create a B object. Is this really that hard to grasp?http://stackoverflow.com/questions/1430884/c-design-issue/1431025#1431025Comment by Pieter on C++ design issuePieter2009-09-18T09:35:23Z2009-09-18T09:35:23ZI'm not talking about a code dependency, obviously you made that disappear via an extra level of indirection. Semantically however, nothing changed, B relies on A to create a B, no matter how many functions, interfaces, classes you add to obscure that fact, it's still there. You just made it a lot harder to see...http://stackoverflow.com/questions/1430884/c-design-issue/1431025#1431025Comment by Pieter on C++ design issuePieter2009-09-16T12:11:45Z2009-09-16T12:11:45ZYou just hid the cyclic dependency with this, it's not at all gone. B still calls A which creates B, you simply made a lot harder to see. Semantic problems can not be solved with some syntactic juggling. To paraphrase you: If you worked for me I wouldn't let you do this. I rather have not-so-nice designs stand out like a pimp on miss universe's cheek, than hidden behind a few layers of mascara