User veefu - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T10:45:35Zhttp://stackoverflow.com/feeds/user/85936http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1050482/debug-core-file-with-no-symbols/1051085#10510850Answer by veefu for Debug core file with no symbolsveefu2009-06-26T20:20:22Z2009-06-26T20:20:22Z<p>Try running a "pmap" against the core file (if hp/ux has this tool). This should report the starting addresses of all modules in the core file. With this info, you should be able to take the address of the failure location and figure out what library crashed. Further address comparison between the crash address and the addresses of the known functions in the library ("nm" against the library should get that) may help you determine what function crashed.</p>
<p>Even if you do manage to identify the function at the top of the stack, it isn't very likely that this function is the source of the problem... hopefully it has actually crashed in your code and not, say, the standard C string library. Rebuilding the stack trace is the next-best thing at that point.</p>
http://stackoverflow.com/questions/916282/instrumentation-diagnostic-library-for-c/916673#9166730Answer by veefu for Instrumentation (diagnostic) library for C++veefu2009-05-27T16:17:47Z2009-05-27T17:45:52Z<p>If debugging is what you're doing, perhaps use a debugger. GDB scripts are pretty easy to write up and use. Maintaining them in parallel to your code might be challenging.</p>
<p>Edit - Appending Annecdote:</p>
<p>The software I maintain includes a home-grown instrumentation system. Macros are used to queue log messages and configuration options control what classes of messages are logged and the level of detail to be logged. A thread processes the logging queue, flushing messages to file and rotating files as they become too large (which they commonly do). The system provides a lot of detail, but often all too often it provides huge files our support engineers must wade through for hours to find anything useful.</p>
<p>Now, I've only used GDB to diagnose bugs a few times, but for those issues it had a few nice advantages over the logging system. GDB scripting allowed me to gather new instrumentation data without adding new instrumentation lines and deploying a new build of my software to the client. GDB can generate messages from third-party libraries (needed to debug into openssl at one point). GDB adds no run-time impact to the software when not in use. GDB does a pretty good job of printing the contents of objects; the code-level logging system requires new macros to be written when new objects need to have their states logged.</p>
<p>One of the drawbacks was that the gdb scripts I generated had no explicit relationship to the source code; the source file and the gdb script were developed independently. Ideally, changes to the source file should impact and update the gdb script. One thought is to put specially-formatted comments in code and have a scripting language make a pass on the source files to generate the debugger script file for the source file. Finally, have the makefile execute this script during the build cycle.</p>
<p>It's a fun exercise to think about the potential of using GDB for this purpose, but I must admit that there are probably better code-level solutions out there.</p>
http://stackoverflow.com/questions/916546/waiting-on-multiple-events-c/916627#9166270Answer by veefu for Waiting on multiple events C++veefu2009-05-27T16:09:18Z2009-05-27T16:09:18Z<p>It certainly seems as though these three different messaging options are mutually exclusive for a single thread; how can a single thread read from stdin while it's waiting for a thread condition?</p>
<p>If you really don't want to spawn three threads, the only option I can fathom is somehow modifying or parameterizing the thread, stream, and socket libraries to take a reference to a synchronization object.</p>
http://stackoverflow.com/questions/878920/sed-using-variables-across-multiple-lines0sed: using variables across multiple linesveefu2009-05-18T17:39:25Z2009-05-26T08:49:47Z
<p>I am attempting to "grep" out bind for a specific user from an LDAP log file. The lines I need will be spread across multiple lines in the log. Here is example input:</p>
<pre><code>[2009/04/28 17:04:42.414] DoBind on connection 0x7c8affc0
[2009/04/28 17:04:42.414] Bind name:cn=admin,ou=appids,o=admineq, version:3, authentication:simple
[2009/04/28 17:04:42.415] Failed to authenticate local on connection 0x6cc8ee80, err = log account expired (-220)
[2009/04/28 17:04:42.416] Sending operation result 53:"":"NDS error: log account expired (-220)" to connection 0x6cc8ee80
[2009/04/28 17:04:42.416] Operation 0x3:0x60 on connection 0x6cc8ee80 completed in 3 seconds
[2009/04/28 17:04:42.416] Sending operation result 0:"":"" to connection 0x7c8affc0
[2009/04/28 17:04:42.416] Operation 0x1:0x60 on connection 0x7c8affc0 completed in 0 seconds
[2009/04/28 17:04:48.772] DoSearch on connection 0x7c8affc0
[2009/04/28 17:04:48.772] Search request:
base: "o=intranet"
scope:2 dereference:0 sizelimit:0 timelimit:600 attrsonly:0
filter: "(guid='03ADmin)"
attribute: "cn"
attribute: "cn"
attribute: "cn"
attribute: "cn"
attribute: "objectClass"
attribute: "guid"
attribute: "mail"
[2009/04/28 17:04:48.773] Sending operation result 0:"":"" to connection 0x7c8affc0
[2009/04/28 17:04:48.773] Operation 0xe851:0x63 on connection 0x7c8affc0 completed in 0 seconds
</code></pre>
<p>For this example the following should be the result:</p>
<pre><code>[2009/04/28 17:04:42.414] DoBind on connection 0x7c8affc0
[2009/04/28 17:04:42.414] Bind name:cn=admin,ou=appids,o=admineq, version:3, authentication:simple
[2009/04/28 17:04:42.416] Sending operation result 0:"":"" to connection 0x7c8affc0
[2009/04/28 17:04:42.416] Operation 0x1:0x60 on connection 0x7c8affc0 completed in 0 seconds
</code></pre>
<p>Basically, this is a log of server operations across multiple connections. I need to analyze the time spent in 'bind' operations by the admin user, but this server is very busy so I need to eliminate a lot of noise.</p>
<p>In pseudocode:</p>
<pre><code>for each line in file
if line contains "DoBind" and next line contains "cn=admin"
print both lines
find the connection number X in lines
skip lines until "Sending operation result.*to connection X" is found
print two lines
</code></pre>
<p>I would like to get the "DoBind" lines which are preceeded by the user "cn=admin" and then the result lines, which are listed according to the connection number "0x7c8affc0" in this example. Other operations may take place between the beginning and end of the bind which I do not need, such as the "Failed to authenticate" message, which is taking place on a different connection.</p>
<p>Furthermore, other operations will take place on the connection after the bind is done which I'm not interested in. In the above, the results of the DoSearch operation happening after the 'bind' must not be captured.</p>
<p>I'm trying to do this with 'sed', which seemed like the right tool for the job. Alas, though, I'm a beginner and this is a learning experience. Here's what I have so far:</p>
<pre><code>/.*DoBind on connection \(0x[0-9a-f]*\)\n.*Bind name:cn=OblixAppId.*/ p
/.*Sending operation result.*to connection \1\nOperation.*on connection \1 completed.*/ p
</code></pre>
<p>sed complains about the second line where I use '\1'. I'm trying to capture the connection address and use it in a subsequent search to capture the result strings, but I'm obviously not using it correctly. The '#' variables seem to be local to each search operation.</p>
<p>Is there a way to pass "variables" from one search to another or should I be learning perl instead?</p>
http://stackoverflow.com/questions/906599/why-cant-i-use-fopen/907312#9073121Answer by veefu for Why can't I use fopen?veefu2009-05-25T16:25:17Z2009-05-25T17:33:30Z<blockquote>
<p>Or is it something else?</p>
</blockquote>
<p>Some implementations of the FILE structure used by 'fopen' has the file descriptor defined as 'unsigned short'. This leaves you with a maximum of 255 simultaneously open files, minus stdin, stdout, and stderr.</p>
<p>While the value of being able to have 255 open files is debatable, of course, this implementation detail materializes on the Solaris 8 platform when you have more than <a href="http://technopark02.blogspot.com/2005/05/solaris-32-bits-fopen-and-max-number.html" rel="nofollow">252 socket connections</a>! What first appeared as a seemingly random failure to establish an SSL connection using libcurl in my application turned out to be caused by this, but it took deploying debug versions of libcurl and openssl and stepping the customer through debugger script to finally figure it out.</p>
<p>While it's not entirely the fault of 'fopen', one can see the virtues of throwing off the shackles of old interfaces; the choice to deprecate might be based on the pain of maintaining binary compatibility with an antiquated implementation.</p>
http://stackoverflow.com/questions/878920/sed-using-variables-across-multiple-lines/880455#8804550Answer by veefu for sed: using variables across multiple linesveefu2009-05-19T00:32:33Z2009-05-19T00:32:33Z<p>Well, I couldn't find a solution with sed alone. Here's my ugly perl solution:</p>
<pre><code>open INFILE, $ARGV[0] or die "Couldn't open file $ARGV[0]";
while (<INFILE>) {
if (/(.*DoBind on connection (0x[0-9a-f]*))/) {
$potentialmatch = $1; $connid = $2;
$currentline = <INFILE>;
if ($currentline =~ /(.*Bind name:cn=OblixAppId.*)/) {
print $potentialmatch . "\n" . $1 . "\n";
$offset = tell INFILE;
while($currentline = <INFILE>) {
if ($currentline =~ /(.*Sending operation result.*to connection $connid.*)/) {
print "$1\n";
next;
}
if ($currentline =~ /(.*Operation.*on connection $connid completed.*)/) {
print "$1\n";
seek INFILE, $offset, 0;
last;
}
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/830825/how-to-capture-standard-error-output-from-a-windows-service1How to capture standard error output from a Windows service?veefu2009-05-06T17:45:02Z2009-05-06T18:39:40Z
<p>I have an application that makes use of the Mozilla LDAP library. We're diagnosing a problem involving the LDAP library failing to make a connection to the server. I'm attempting to get additional information from the LDAP library by tossing a debug version of the lib in with the application and enabling debug using ldap_set_opt. Unfortunately, I think the debug library is sending debug strings to standard error.</p>
<p>While I'm working on recompiling the LDAP client library again, hopefully enabling the option that makes it call OutputDebugString instead of streaming to stderr, a nice solution would be to capture the stderr output to a file. The application, though, is running as a Windows service.</p>
<p>Anyone know how I could redirect stderr to a file for an application running as a service?</p>
<p><strong>edit</strong></p>
<p>I'm hoping not to have to modify any more of the service source code than I already have. Options in the service configuration would be ideal.</p>
http://stackoverflow.com/questions/829125/c-loop-macros/829489#8294891Answer by veefu for c++ loop macros.veefu2009-05-06T13:13:19Z2009-05-06T13:36:50Z<blockquote>
<p>Question: Is there a way to define loop like the first one in a for-like syntax like the second macro?</p>
</blockquote>
<p>I guess you have a relatively small working-set of prime numbers, so creating a look-up for your primes shouldn't be too troublesome. If you need to generate a larger list of primes, I'm sure there is some compile-time template meta-programming magic available in the Boost library. If you have a more complex series of numbers you're generating it might be wise to turn the lookup into a function that caches the results as they are generated.</p>
<pre><code>const int small_primes[MAX_SMALL_PRIMES] = {2, 3, 5, 7, 11, 13};
#define foreach_small_prime(pp) \
for (int i = 0; i < MAX_SMALL_PRIMES; pp = small_primes[++i])
</code></pre>
<p>Used as:</p>
<pre><code>void f() {
int sum = 0;
int temp = 0;
foreach_small_prime(temp) {
sum += temp;
if (sum >= 10) cout << sum << endl;
}
}
</code></pre>
<p>Probably want to toss the lookup table and MAX_SMALL_PRIMES theirown namespace to avoid clutter... and using a commonly-used identifier 'i' in the macro is probably a poor choice. I'm sure there are other ways to improve it, but this is fundamentally what you're asking for.</p>
http://stackoverflow.com/questions/783018/howto-elegantly-extract-a-2d-rectangular-region-from-a-c-vector/783953#7839531Answer by veefu for Howto elegantly extract a 2D rectangular region from a C++ vectorveefu2009-04-23T23:20:47Z2009-04-23T23:36:21Z<p>Your question asks for a C++ way of copying a rectangular field of elements in some container. You have a fairly close example of doing so and will get more in the answers. Let's generalize, though:</p>
<p>You want an iterator that travels a rectangular range of elements over some range of elements. So, how about write a sort of adapter that sits on any container and provides this special iterator.</p>
<p>Gonna go broad strokes with the code here:</p>
<pre><code>vector<pixels> my_picture;
point selTopLeft(10,10), selBotRight(40, 50);
int picWidth(640), picHeight(480);
rectangular_selection<vector<pixels> > selection1(my_picture.begin(),
my_picture.end(), picWidth, picHeight, selTopLeft, selBotRight);
// Now you can use stl algorithms on your rectangular range
vector<pixels> rect_copy = std::copy(selection1.begin(), selection1.end());
// or maybe you don't want to copy, you want
// to modify the selection in place
std::for_each (selection1.begin(), selection1.end(), invert_color);
</code></pre>
<p>I'm sure this is totally do-able, but I'm not comfortable coding stl-style template stuff off-the-cuff. If I have some time and you're interested, I may re-edit a rough-draft later, since this is an interesting concept.</p>
<p>See this <a href="http://stackoverflow.com/questions/757153/concatenating-c-iterator-ranges-into-a-const-vector-member-variable-at-construc">SO question's answer</a> for inspiration.</p>
http://stackoverflow.com/questions/782372/hexadecimal-numpad/782754#7827540Answer by veefu for Hexadecimal numpadveefu2009-04-23T17:23:23Z2009-04-23T17:32:18Z<p>Is this the one you're talking about?
<img src="http://www.cpmuseum.com/Exhibits/Apple%20Lane/7603/7603-0005/images/000%20Front%20View.jpg" alt="funky" />
While this has a lot of "gee whiz" appeal, I have to say: </p>
<p>You have two hands. Use them. A-F are all reachable with the left hand on a standard keyboard while your right hand is on the num-pad. Instead of putting muscle-memory time into some arcane Hex-pad, you'll be learning to touch-type with your left hand, which has application outside your current project.</p>
<p>Better yet, come up with a smarter way of getting the hex codes into your code. Write a script that extracts them from your data-source and into your code as symbolic variables... or whatever.</p>
<p><strong>EDIT</strong></p>
<p>Ok, I'll give you the benefit of the doubt. Lets assume you're working on a hardware project and need to provide a specialized interface for your user. Maybe a <a href="http://www.genovation.com/progkeypads.htm" rel="nofollow">programmable keypad</a> would fit the bill?</p>
http://stackoverflow.com/questions/782316/c-html-generation-classes/782369#7823692Answer by veefu for C++ HTML generation classesveefu2009-04-23T15:52:35Z2009-04-23T15:52:35Z<p>This was yielded from a google-search:</p>
<p><a href="http://www.webtoolkit.eu/wt#/" rel="nofollow">http://www.webtoolkit.eu/wt#/</a></p>
<p>I don't know anything about it, but their web-page is clean and the introduction sounds like exactly what you're looking for...</p>
<blockquote>
<p>Wt (pronounced 'witty') is a C++ library and application server for developing and deploying web applications. It is not a 'framework', which enforces a way of programming, but a library.</p>
</blockquote>
<p>...</p>
<blockquote>
<p>In contrast, a web application developed with Wt is written in only one compiled language (C++), from which the library generates the necessary HTML/XHTML, Javascript, CGI, SVG/VML/Canvas and AJAX code. </p>
</blockquote>
http://stackoverflow.com/questions/765301/should-i-reject-c-because-its-becoming-a-juggernaut/765788#7657885Answer by veefu for Should I reject C++ because it's becoming a juggernaut?veefu2009-04-19T17:48:55Z2009-04-19T19:11:11Z<blockquote>
<p>So why should I bother to learn this
difficult, yet exceptionally powerful,
language? I can do 95% of my business
with python et al. With the remaining
5%, I can deal with plain old C++ or C
without hassle.</p>
</blockquote>
<p>Well, for the most part you answer your own question. There is no need for you to keep up with the bleeding edge of C++ at this time.</p>
<p>However, the language will keep marching on. In a few years, some of the concepts you consider a bleeding-edge waste of time today will be in common use. Someday you may find during your 5% of using "plain-old C++" that some example code or code you're collaborating on uses a construct you're not familiar with. At that point, you'll need to hit the net and brush up on the new "current" C++.</p>
<p>Is that going to be a problem? Of course not. You're a programmer. You keep abreast of the latest programming concepts in the context of your 95% language, which also changes over time. You will likely already be quite familiar with the concepts and need only familiarize yourself with its C++ syntax when the time comes that you must use them.</p>
<p>Personally I hope to continue keeping up with C++, even if my career moves more toward Java or another next-gen language. Why? I would like to say because it interests me the most and because I love the complexity and expressiveness of it all. More likely, though, is just because it was my first professional language; I consider it my "native tongue". </p>
<p>If it does not interest you, and does not concern your job or future job, don't bother. What's wrong with that? Nothing.</p>
http://stackoverflow.com/questions/764505/inputing-into-other-programs-c-c/764528#7645283Answer by veefu for Inputing into other programs [C/C++]veefu2009-04-19T00:10:42Z2009-04-19T00:10:42Z<p>Putting on my lateral thinking cap here...
How about you make the email address constant (or configurable, anyway) but make it a list address. Have your mail server manage subscriptions to the list. Now your program does what it's good for (collecting logs) and the mail server does what it's good for (distributing email) with a very small interface between them (the list address).</p>
<p>Editing some obscure configuration file or registry entry somewhere every time you need to add/remove someone from list of log recipients is probably not the best way to handle this.</p>
http://stackoverflow.com/questions/761917/handling-a-class-with-a-long-initialization-list-and-multiple-constructors/763451#7634514Answer by veefu for Handling a class with a long initialization list and multiple constructors?veefu2009-04-18T13:35:28Z2009-04-18T16:55:45Z<p>How about refactor the common fields into a base class. The default constructor for the base class would handle initialization for the plethora of default fields. Would look something like this:</p>
<pre><code>class BaseClass {
public:
BaseClass();
};
class Object : public BaseClass
{
Object();
Object(const string &Name);
Object (const string &Name, const string &path);
Object (const string &Name, const bool loadMetadata);
Object (const string &Name, const string &path, const bool loadMetadata);
};
BaseClass::BaseClass() :
parent_index (0),
rowData (new MemoryRow()),
objectFile (),
rows (new MemoryColumn (object_constants::RowName, OBJECTID, object_constants::ROWS_OID)),
cols (new MemoryColumn (object_constants::ColName, OBJECTID, object_constants::COLS_OID)),
objectName (new MemoryColumn(object_constants::ObjName, STRING, object_constants::short_name_len, object_constants::OBJECTNAME_OID)),
parent (new MemoryColumn(object_constants::ParentName, STRING, object_constants::long_name_len, object_constants::PARENT_OID)),
parentIndex (new MemoryColumn(object_constants::ParentIndex, OBJECTID, object_constants::PARENTINDEX_OID)),
childCount (new MemoryColumn (object_constants::ChildCount, INTEGER, object_constants::CHILD_COUNT_OID)),
childList (new MemoryColumn (object_constants::ChildList, STRING, object_constants::long_name_len, object_constants::CHILD_OID)),
columnNames (new MemoryColumn (object_constants::ColumnNames, STRING, object_constats::short_name_len, object_constants::COLUMN_NAME)),
columnTypes (new MemoryColumn (object_constants::ColumnTypes, INTEGER, object_constants::COLUMN_TYPE)),
columnSizes (new MemoryColumn (object_constants::ColumnSizes, INTEGER, object_constants::COLUMN_SIZE))
{}
</code></pre>
<p>Your Object constructors should look a little more manageable, now:</p>
<pre><code>Object::Object() : BaseClass() {}
Object::Object (const string &Name): BaseClass(), name(Name) {}
Object::Object (const string &Name, const string &path): BaseClass(), name(Name), path_(path){}
Object::Object (const string &Name, const bool loadMetadata): BaseClass(), name(Name){}
Object::Object (const string &Name, const string &path, const bool loadMetadata): BaseClass(), path_(path) {}
</code></pre>
<p>Similar in nature to Iraimbilanja's answer, but avoids adding an inner-class for accessing data, which might impact a lot of existing code. If you've already got a class hierarchy, though, it may be difficult to factor it into a base class.</p>
http://stackoverflow.com/questions/758241/setting-environment-variables-remotely/758299#7582991Answer by veefu for Setting environment variables remotely?veefu2009-04-16T22:30:33Z2009-04-16T22:30:33Z<p>Taking your rather terse question at face-value, you could have your Windows application ftp to the linux system as the user who is going to run the linux app and modify their .cshrc or .bashrc, adding the desired environment variables to the shell script. This won't modify already-running shells, though.</p>
<p>At an abstract level, you're talking about inter-process communication. You have information in the Windows application you want to communicate to communicate to some Linux application. I'm not sure environment variables are the best way to communicate this data. Perhaps opening a socket between your Windows app and Linux app would be best.</p>
http://stackoverflow.com/questions/757949/why-doesnt-the-regex-match-when-i-add-groups/757985#7579850Answer by veefu for Why doesn't the regex match when I add groups?veefu2009-04-16T20:47:22Z2009-04-16T20:47:22Z<p>I don't know the python dialect of regular expressions, but wouldn't you need to 'group' the "fad|fade" somehow to make sure it isn't trying to find "fad OR fade(etc..."?</p>
http://stackoverflow.com/questions/757270/is-making-a-function-template-specialization-virtual-legal/757364#7573644Answer by veefu for Is making a function template specialization virtual legal?veefu2009-04-16T18:08:47Z2009-04-16T18:08:47Z<p>According to <a href="http://www.kuzbass.ru:8086/docs/isocpp/template.html" rel="nofollow">http://www.kuzbass.ru:8086/docs/isocpp/template.html</a> ISO/IEC 14882:1998</p>
<p>-3- A member function template shall not be virtual. [Example:</p>
<pre><code>template <class T> struct AA {
template <class C> virtual void g(C); // error
virtual void f(); // OK
};
</code></pre>
http://stackoverflow.com/questions/756222/how-do-i-call-array-of-linked-list-in-main/757248#7572481Answer by veefu for How do I call array of linked list in main?veefu2009-04-16T17:41:01Z2009-04-16T17:41:01Z<p>You have a fair amount of questionable code in your example. I'd like to point a few of them out to make sure the meaning of your code actually reflects your intentions.</p>
<pre><code> list <car> *cars;
</code></pre>
<p>This is a pointer to a list of cars. a pointer is probably not necessary</p>
<pre><code> list <car> carList[100];
</code></pre>
<p>This is a "100-element array of lists of car objects". You may have thought you were making a "list of car objects 100-elements long" but this is not the case.</p>
<pre><code> inputList[k]=new list <car> [k];
</code></pre>
<p>I think this creates a new array of list objects 'k' elements long and assigns it to the k-th element of 'inputList'.</p>
<p>All-in-all, very dubious use of pointers. Forgive me if I've misjudged and these were, in fact, intentional. Follow the other answers' advice for eliminating the use of pointers.</p>
http://stackoverflow.com/questions/755892/initialize-variable-involving-vector-data-type/755941#7559411Answer by veefu for initialize variable involving vector data typeveefu2009-04-16T12:40:26Z2009-04-16T12:40:26Z<p>In addition to what John said, I suspect your 'for' loop may have an off-by-one error:</p>
<pre><code>for (int i=0;i<1;i++){ // i will only be 0
</code></pre>
<p>perhaps you want</p>
<pre><code> for (int i=0;i<=1;i++){ // i will iterate 0,1
</code></pre>
http://stackoverflow.com/questions/741190/multi-dimensional-array-c/741232#741232-1Answer by veefu for Multi-Dimensional Array ( C++ )veefu2009-04-12T03:33:50Z2009-04-12T03:33:50Z<p>Not related to your question, but if you're concerned with performance, you might consider performing the word-count with a single pass on the string with, say, <a href="http://www.cplusplus.com/reference/clibrary/cstring/strtok/" rel="nofollow">strtok</a></p>
http://stackoverflow.com/questions/738941/how-to-search-wikipedia-and-get-input-or-info-in-c/739015#7390154Answer by veefu for How to search wikipedia and get input or info in C++?veefu2009-04-10T22:06:32Z2009-04-10T22:06:32Z<p><a href="http://curl.haxx.se/" rel="nofollow">libcURL</a> is pretty popular. I don't know that the interface is especially object-oriented, but it's certainly usable from C++.</p>
http://stackoverflow.com/questions/737409/are-get-and-set-functions-popular-with-c-programmers/737552#73755220Answer by veefu for Are get and set functions popular with C++ programmers?veefu2009-04-10T13:02:18Z2009-04-10T16:49:06Z<p>At the risk of being argumentative, I'll back an opposing point of view I first encountered while reading "Holub on Patterns". It was a point of view that was very challenging, but made sense to me upon reflection:</p>
<p><strong>Getters and Setters are Evil</strong></p>
<p>Use of getters and setters is in opposition to the fundamentals of object oriented design: Data abstraction and encapsulation. Overuse of getters and setters will make your code less agile and maintainable in the long run. They ultimately expose the underlying implementation of your class, locking implementation details into the interface of the class.</p>
<p>Imagine your 'std::string Foo::bar' field needs to change from a std::string to another string class, that, say, is better optimized or supports a different character-set. You'll need to change the private data field, the getter, the setter, and all the client code of this class that calls these getters and setters.</p>
<p>Rather than design your classes to "provide data" and "receive data", design them to "perform operations" or "providide services". Ask yourself why you're writing a "GetBar" function. What are you doing with that data? Perhaps you're displaying that data on or doing some processing on it. Is this process better exposed as a method of Foo?</p>
<p>This not to say that getters and setters don't have their purpose. In C# I believe the fundamental reason for their use is to interface with the Visual Studio GUI-design IDE, but if you find yourself writing them in C++, it's probably best to take a step back, look at your design, and see if something is missing.</p>
<p>I'll try to mock-up an example to illustrate.</p>
<pre><code>// A class that represents a user's bank account
class Account {
private:
int balance_; // in cents, lets say
public:
const int& GetBalance() { return balance_; }
void SetBalance(int b) { balance_ = b; }
};
class Deposit {
private:
int ammount_;
public:
const int& GetAmount() { return ammount_; }
void SetAmmount(int a) { _balance = a; }
};
void DoStuffWithAccount () {
Account a;
// print account balance
int balance = a.GetBalance();
std::cout << balance;
// deposit some money into account
Deposit d(10000);
a.SetBalance( a.GetBalance() + d.GetValue());
}
</code></pre>
<p>It doesn't take very long to see that this is very poorly designed.</p>
<ol>
<li>Integers are an awful currency datatype</li>
<li>A Deposit should be a function of the Account</li>
</ol>
<p>The getters and setters make it more difficult to fix the problems, since the client code DoStuffWithAccount is now bound to the data-type we used to implement the account balance.</p>
<p>So, lets make a pass on this code and see what we can improve</p>
<pre><code>// A class that represents a user's bank account
class Account {
private:
float balance_;
public:
void Deposit(float b) { balance_ += b; }
void Withdraw(float w) { balance_ -= w; }
void DisplayDeposit(std::ostream &o) { o << balance_; }
};
void DoStuffWithAccount () {
Account a;
// print account balance
a.DisplayBalance(std::cout);
// deposit some money into account
float depositAmt = 1000.00;
a.Deposit(depositAmt);
a.DisplayBalance(std::cout);
}
</code></pre>
<p>The 'float' is a step in the right direction. Granted, you could have changed the internal type to 'float' and still supported the getter/setter idiom:</p>
<pre><code>class Account {
private:
// int balance_; // old implementation
float balance_;
public:
// support the old interface
const int& GetBalance() { return (int) balance_; }
void SetBalance(int b) { balance_ = b; }
// provide a new interface for the float type
const float& GetBalance() { return balance_; } // not legal! how to expose getter for float as well as int??
void SetBalance(float b) { balance_ = b; }
};
</code></pre>
<p>but it doesn't take long to realize that the getter/setter arrangement is doubling your workload and complicating matters as you need to support both the code that used ints and the new code that will use floats. The Deposit function makes it a bit easier to expand the range of types for depositing.</p>
<p>An Account-like class is probably not the best example, since "getting" the account balance is a natural operation for an Account. The overall point, though, is that you must be careful with getters and setters. Do not get into the habit of writing getters and setters for every data-member. It is quite easy to expose and lock yourself into an implementation if you are not careful.</p>
http://stackoverflow.com/questions/735647/ifdef-for-32-bit-platform5#ifdef for 32-bit platformveefu2009-04-09T19:40:45Z2009-04-09T22:14:19Z
<p>In an application I maintain, we've encountered a problem with file descriptor limitations affecting the stdlib. This problem only affects the 32-bit version of the standard lib.</p>
<p>I have devised a fix for my code and would like to implement it, but only when compiling for 32-bit executable. What pre-processor symbol can I #ifdef for to determine whether the code is being compiled for a 32 or 64-bit target?</p>
<p><strong>EDIT</strong></p>
<p>Sorry, didn't mention, the code is cross-platform, linux, windows, solaris and a few other unix flavors, mostly using GCC for compilation. Any de-facto standards I can use cross-platform?</p>
<p><strong>EDIT 2</strong></p>
<p>I've found some definitions "__ILP23" and "__LP64" that seem like they may work... a discussion <a href="http://www.unix.org/version2/whatsnew/lp64%5Fwp.html" rel="nofollow">here</a> explains the background on the unix platform. Anyone had any experience with using these defines? Is this going to be usable?</p>
http://stackoverflow.com/questions/732998/jstack-equavalent-in-c/735594#7355943Answer by veefu for jstack equavalent in C++veefu2009-04-09T19:27:40Z2009-04-09T19:27:40Z<p>Lessee... on solaris, can't use gdb... I think what you're looking for is 'pstack'
On my solaris 8 system it's located at</p>
<pre><code>/usr/bin/pstack
usage: pstack [-F] { pid | core } ...
</code></pre>
<p>and</p>
<pre><code>man pstack
</code></pre>
<p>shows a nice list of related tools you may find very useful in diagnosis.</p>
http://stackoverflow.com/questions/735184/does-c-support-individual-generic-methods-rather-than-generic-classes/735336#7353361Answer by veefu for Does C++ support individual generic methods rather than generic classes?veefu2009-04-09T18:17:18Z2009-04-09T18:48:17Z<p>Update 3 and 4 give it away, I think, but it's difficult to tell without knowing your project layout.</p>
<p>If you're trying to expose templates from a library to be called from another location, you have to either</p>
<p>A: include the template definition in the header file of your library</p>
<p>or</p>
<p>B: explicitly instantiate the template code in the library, so that later code will have an implementation to link to</p>
<pre><code>template<class T>
T ImageMatrix::GetRotatedCopy(VDouble angle)
{
// ... create a new instance of ImageMatrix and return it.
}
// Add the following line
template ImageFilter ImageMatrix::GetRotatedCopy<ImageFilter>(VDouble);
</code></pre>
<p>I think that should resolve the problem.</p>
http://stackoverflow.com/questions/731639/adding-a-pass-to-gcc/734379#7343791Answer by veefu for Adding a pass to gcc ?veefu2009-04-09T13:59:36Z2009-04-09T18:43:22Z<p>It's an interesting question. I'm going to address concepts around the question rather than answer the question directly because, well, I don't know that much about gcc internals.</p>
<p>You've probably already explored some higher-level manipulation of the source code to achieve what you want to accomplish; some kind of</p>
<pre><code>int main(int argc, char ** argv) {
return dbg(foo(argc));
}
</code></pre>
<p>inserted with with a macro on the function "foo", perhaps. If you're looking for a compiler hack, though, then you probably don't want to modify source.</p>
<p>There are some gcc extensions discussed <a href="http://gcc.gnu.org/onlinedocs/gcc-4.3.3/gcc/Constructing-Calls.html#Constructing-Calls" rel="nofollow">here</a> that sound a bit like what you're going for. If gcc has anything that does what you want, it'll probably be documented in the C-language <a href="http://gcc.gnu.org/onlinedocs/gcc-4.3.3/gcc/index.html#toc%5FC-Extensions" rel="nofollow">extensions</a> area of the documentation. I couldn't find anything that sounded exactly like what you've described, but perhaps since you understand best what you're looking for, you'll know better how to find it.</p>
<p>A gdb script would do a pretty good job of outputting debug, but it sounds like you've got bigger plans than simply doing printf's. Inserting significant logic into the code seems to be what you're after.</p>
<p>Which reminds me of some dynamic linker tricks I've come across recently. Library <a href="http://technopark02.blogspot.com/2005/05/solaris-hijacking-function-call.html" rel="nofollow">interposing</a> could insert code around function calls without affecting the original source. The example I've encountered was on Solaris, but there is probably an analog on other platforms.</p>
<p>Just came across the -finstrument-functions option documented <a href="http://gcc.gnu.org/onlinedocs/gcc-4.3.3/gcc/Code-Gen-Options.html#Code-Gen-Options" rel="nofollow">here</a> </p>
<p><strong>-finstrument-functions</strong></p>
<p>Generate instrumentation calls for entry and exit to functions. Just after function
entry and just before function exit, the following profiling functions will be called
with the address of the current function and its call site. (On some platforms,
__builtin_return_address does not work beyond the current function, so the call site
information may not be available to the profiling functions otherwise.)</p>
<pre><code> void __cyg_profile_func_enter (void *this_fn,
void *call_site);
void __cyg_profile_func_exit (void *this_fn,
void *call_site);
</code></pre>
<p>But I guess this doesn't work because you are not able to modify the return value from the profiling functions.</p>
http://stackoverflow.com/questions/478071/how-to-autodetect-urls-in-richedit-2-0/728532#7285320Answer by veefu for How to autodetect urls in RichEdit 2.0?veefu2009-04-08T04:32:48Z2009-04-08T04:32:48Z<p>You might just have to rewrite the text to the control to get it to re-parse.</p>
http://stackoverflow.com/questions/726002/c2065-undeclared-identifier-while-assigning-a-define-to-an-int/726046#7260461Answer by veefu for C2065 undeclared identifier while assigning a define to an intveefu2009-04-07T14:35:17Z2009-04-07T14:35:17Z<p>It's probably complaining about you not having declared your class. Try #including "myclass.h"</p>
<p>Edit:</p>
<p>Oh, missing ';' after your class declaration.</p>
http://stackoverflow.com/questions/722401/how-do-solo-programmers-find-people-to-mentor-them-through-new-technology/722441#7224413Answer by veefu for How do solo programmers find people to mentor them through new technology?veefu2009-04-06T17:35:13Z2009-04-06T19:34:04Z<p>I work at home a lot too and when I do go into the office, I'm surrounded by salespeople. It's tough to get a good tech-chat or code-review when I need one. As working without an office has become more common, the problem of professional isolation has also become more common. One solution that seems to be gaining traction is <a href="http://en.wikipedia.org/wiki/Coworking" rel="nofollow">"coworking"</a>, where a number of people who would otherwise have no coworkers to bounce ideas off of, all pack up their laptops, converge on a nearby cafe or common space, and work together a few times a month.</p>
<p>Do some research and see if there's a coworking community in your technical and geographical area.</p>
http://stackoverflow.com/questions/719032/gcc-function-attributes-vs-caching/719104#7191040Answer by veefu for GCC function attributes vs cachingveefu2009-04-05T15:24:40Z2009-04-05T16:33:53Z<p>This sounds like it might be solved with a template function. If all if the known parameters and return values are known at compile-time, you could perhaps generate a template instance of the function for each possible parameter. Essentially you'd be calling a different instance of the function for each possible parameter. Not sure it would be any easier than the static cache you've already implemented, but might be worth exploring.</p>
<p>Check out <a href="http://en.wikipedia.org/wiki/Template%5Fmetaprogramming" rel="nofollow">template metaprogramming</a>. The concepts are similar to 'memoization', suggested by JaredPar, even using the same introductory example of a factorial function. It might be appropriate to say that these kinds of templates are compile-time implementations of memoization.</p>
http://stackoverflow.com/questions/1001154/using-a-namespace-twiceComment by veefu on Using a namespace twiceveefu2009-06-16T12:31:25Z2009-06-16T12:31:25Zplease clarify "include same namespace twice". Are you asking if it's ok to declare "using somenamespace; using somenamespace;" or are you asking if it's ok to declare a namespace mutliple times, as in "namespace SomeNamespace {} namespace SomeNamespace {}"?http://stackoverflow.com/questions/966034/why-call-sizeof-operator-with-two-arguments/966045#966045Comment by veefu on Why call sizeof operator with two arguments?veefu2009-06-08T17:47:21Z2009-06-08T17:47:21ZWere the comma operator being used, wouldn't it be necessary to enclose the pair in another set of parentheses?http://stackoverflow.com/questions/878920/sed-using-variables-across-multiple-lines/878988#878988Comment by veefu on sed: using variables across multiple linesveefu2009-05-19T00:29:56Z2009-05-19T00:29:56ZThanks for the python code. I'd +1 you again if I could. I ended up dusting off my PERL book and doing it that way. I've been meaning to learn python... and seeing how ugly the perl solution is does motivate me. http://stackoverflow.com/questions/878920/sed-using-variables-across-multiple-lines/878988#878988Comment by veefu on sed: using variables across multiple linesveefu2009-05-18T19:58:59Z2009-05-18T19:58:59Zwhat worries me about this solution is "the final fgrep finds all lines that contain one of the connection numbers" I don't want all lines that contain the connection numbers, i only want the first few lines found for a connection AFTER a 'DoBind" has been performed on the connection. I've added sample results.http://stackoverflow.com/questions/878920/sed-using-variables-across-multiple-lines/879039#879039Comment by veefu on sed: using variables across multiple linesveefu2009-05-18T18:30:33Z2009-05-18T18:30:33ZThanks for the lead. I'm reading up on it now, but not sure how it's applicable. The "DoBind" and "cn=admin" line isn't the trouble-spot. The problem is passing the connection address, which changes, to the next search pattern. Are you saying I'll be extracting the address field from a matching line and appending it to the later pattern buffer?http://stackoverflow.com/questions/878920/sed-using-variables-across-multiple-lines/878988#878988Comment by veefu on sed: using variables across multiple linesveefu2009-05-18T17:57:41Z2009-05-18T17:57:41ZThanks, but there will be other operations taking place on these connections that I am not interested in. The result lines don't identify the fact that the result was for a 'bind' operation. The second part of this script would end up giving me all operation results that happened on any connection that the admin bound to. I'll add this to the question.http://stackoverflow.com/questions/857786/call-member-functions-of-members-of-elements-of-a-container-with-foreach/858022#858022Comment by veefu on Call member functions of members of elements of a container with for_each?veefu2009-05-13T13:57:30Z2009-05-13T13:57:30ZGood answer, you divined that Ben wanted to parametrize both the method AND the nested member object, though it was not stated.http://stackoverflow.com/questions/840888/how-does-code-written-in-one-language-get-called-from-another-language/840946#840946Comment by veefu on How does code written in one language get called from another languageveefu2009-05-08T20:39:07Z2009-05-08T20:39:07Z+1 for being an awesome guy :)http://stackoverflow.com/questions/840888/how-does-code-written-in-one-language-get-called-from-another-language/840946#840946Comment by veefu on How does code written in one language get called from another languageveefu2009-05-08T20:38:34Z2009-05-08T20:38:34ZHaa ha!! Hi Sparky! Fancy seeing you here. (vince)http://stackoverflow.com/questions/841609/how-to-start-and-position-multiple-applications-on-ubuntu-linux/841642#841642Comment by veefu on How to start and position multiple applications on Ubuntu/Linux?veefu2009-05-08T20:34:21Z2009-05-08T20:34:21ZAdam's answer is what you're looking for. I've written little shell scripts to do this on my redhat system and integrated them into the (shudder) fvwm window manager configuration.http://stackoverflow.com/questions/834378/throw-catch-cause-linkage-errors/834415#834415Comment by veefu on Throw-catch cause linkage errorsveefu2009-05-07T12:59:57Z2009-05-07T12:59:57ZPerhaps flesh out a bit more of the code in the question, especially that code surrounding the use and instantiating of the templates. It sounds like you've got one of those "template defined in one compilation unit, not explicitly instantiated, and used in another compilation unit"http://stackoverflow.com/questions/834142/c-accidental-staticComment by veefu on c++ accidental staticveefu2009-05-07T12:51:15Z2009-05-07T12:51:15ZCan you provide the Vlist::add() function definition? Also the code showing exactly how you're comparing the sizes. Perhaps there's some logical error with the comparison code that you're not showing us. I'm guessing you've got 'if (v1.getSize() == v2.getSize) cout << "OMG Error!!";', but you still, please show us.http://stackoverflow.com/questions/830825/how-to-capture-standard-error-output-from-a-windows-service/830894#830894Comment by veefu on How to capture standard error output from a Windows service?veefu2009-05-06T18:59:50Z2009-05-06T18:59:50Zhmm... well, thanks for the confirmation Naaff. I guess I'll get to work.http://stackoverflow.com/questions/782372/hexadecimal-numpad/783316#783316Comment by veefu on Hexadecimal numpadveefu2009-05-06T17:57:46Z2009-05-06T17:57:46ZIf it's a good idea, you could vote my answer up, or even mark it as the answer :) The pellets encourage good behavior.http://stackoverflow.com/questions/829125/c-loop-macros/829489#829489Comment by veefu on c++ loop macros.veefu2009-05-06T15:53:50Z2009-05-06T15:53:50ZAh... after re-rereading your question I think I see what you were going after. You wanted loop-unrolling retained, but with the usage syntax of the second construct.