vote up 38 vote down star
60

Hello all,

It seems that every project has an "util" module with various code snippets used throughout other files and which don't fit any particular pattern. I want to improve my "util" library, so please post here the most useful class / function / macro that you use in all your C/C++ projects. Please keep the entries small (under 100 lines) and give only one example per post.

Thank you.

flag
6  
Should be community wiki. – tunnuz Jan 22 at 16:00
1  
"Should be community wiki" - why? – Graeme Perrow Jan 22 at 19:07
Agree with Graeme – dmityugov Jan 22 at 20:41

30 Answers

vote up 21 vote down
#define ever ;;

Example use:

for(ever) { ... }
link|flag
2  
Nice trick... But I'm not sure if people won't find while(true) to be more explicit ? – Wookai Jan 22 at 16:06
2  
lol, people like it. Though, I'd prefer: #define forever for(;;) that way you can just write: forever { ... } – Evan Teran Jan 22 at 16:09
6  
for(;"ever";) – Iraimbilanja Jan 22 at 17:36
1  
@Baltimark: no problem: #define what(IGNORE) for(;;) – Christoph Jan 22 at 18:34
2  
Sorry, but I don't like this. ;; is shorter to type than "ever", and who doesn't recognize this construct? "ever", though, must make you think once more. while (1) is the best here, IMHO – eliben Jan 25 at 16:34
show 11 more comments
vote up 20 vote down

I use these pretty often, they are string trim functions.

inline std::string &rtrim(std::string &s) {
    s.erase(std::find_if(s.rbegin(), s.rend(), std::not1(std::ptr_fun<int, int>(std::isspace))).base(), s.end());
    return s;
}


inline std::string &ltrim(std::string &s) {
    s.erase(s.begin(), std::find_if(s.begin(), s.end(), std::not1(std::ptr_fun<int, int>(std::isspace))));
    return s;
}

inline std::string &trim(std::string &s) {
    return ltrim(rtrim(s));
}
link|flag
Do they modify the input string and return it? Why? – 1800 INFORMATION Jan 25 at 1:31
1  
yes and yes, the reason why is so you can write things like: trim(s).c_str(); and all that good stuff. You could easily alter then to make a copy (just remove the &'s from the code and you get a copy of the string instead). – Evan Teran Jan 25 at 5:08
gosh, c++ scares me :-) – eliben Jan 25 at 16:32
2  
Personally, I'd make the parameters const& and return a copy. I know there'd be complaints about inefficiency, but I think that otherwise you'd end up with bugs because someone was surprised that the string object he passed in was modified. – Michael Burr Feb 15 at 20:42
Good point, in the end the documentation should make it abundantly clear that the function modifies its input. – Evan Teran Feb 15 at 23:53
show 1 more comment
vote up 9 vote down

I also use this lexical cast in the few cases where linking to boost is undesirable, the only problem is that it does no error checking (but that can be easily added by checking the stream state before returning.

template<typename T2, typename T1>
inline T2 lexical_cast(const T1 &in) {
    T2 out;
    std::stringstream ss;
    ss << in;
    ss >> out;
    return out;
}
link|flag
most of boost is in headers, you shouldn't have to link to anything in boost to get boost::lexical_cast<> – littlenag Jan 23 at 2:09
fair enough, but every now and then I'm on a system where boost isn't immediately available. – Evan Teran Jan 23 at 3:54
2  
This is true - try to convince your management and/or team to bring in an open source lib (even if it's all headers) that they are unfamiliar with. It tends to elicit much fear. – Michael Burr Feb 15 at 20:47
@Michael Burr: precisely. There are too many answers to very trivial question (e.g. trim) that say "use boost"! – hapalibashi Oct 23 at 21:42
vote up 0 vote down
#define NuLog(str, args...) {\
    fprintf(NULOG_OUTPUT, "Log (" NUMODULE_NAME "): " str "\n", ##args); \
    fflush(NULOG_OUTPUT); \
}

Define NUMODULE_NAME in each component of your software and log to your heart's content.

link|flag
vote up 5 vote down

The following code implements a couple of list_sequence() template functions that I find helpful for debugging. Basically, you can call:

cout << list_sequence(myVector, ", ") << "\n";

to list any standard container (such as vector<T> or list<T>) to stdout, or more generally,

cout << list_sequence(begin, end, ", ") << "\n";

to list an arbitrary iterator range between iterators begin and end.

sequence_lister.h

#ifndef SEQUENCE_LISTER_H
#define SEQUENCE_LISTER_H

#include <iostream>
#include <string>
#include <iterator>

template<typename X> class sequence_lister;		// Forward reference

template<typename InIter>
inline std::ostream& operator<<(std::ostream& os, sequence_lister<InIter> const& sl) {
//	copy(sl._first, sl._last, ostream_iterator<typename InIter::value_type>(os, sl._delim));
	for (InIter i = sl._first; i != sl._last; ++i) {
		if (i != sl._first) {
			os << sl._delim;
		}

		os << *i;
	}

	return os;
}

template<typename InIter>
class sequence_lister {
public:
	sequence_lister(InIter first, InIter last, char* delim = "") :
		_first(first),
		_last(last),
		_delim(delim)
	{}

	// Also allow construction from any container supporting begin() and end()
	template<typename Cont>
	sequence_lister(Cont& cont, char* delim = "") :
		_first(cont.begin()),
		_last(cont.end()),
		_delim(delim)
	{}

	sequence_lister(sequence_lister const& x) :
		_first(x._first),
		_last(x._last),
		_delim(x._delim)
	{}

	sequence_lister& operator=(sequence_lister const& x) {
		_first = x._first;
		_last = x._last;
		_delim = x._delim;
	}

	friend std::ostream& operator<< <>(std::ostream& os, sequence_lister<InIter> const& sl);

private:
	InIter _first, _last;
	char* _delim;
};

template<typename InIter>
inline sequence_lister<InIter> list_sequence(InIter first, InIter last, char* delim = "") {
	return sequence_lister<InIter>(first, last, delim);
}

template<typename Cont>
inline sequence_lister<typename Cont::const_iterator> list_sequence(Cont& cont, char* delim = "") {
	return sequence_lister<typename Cont::const_iterator>(cont, delim);
}
#endif	// SEQUENCE_LISTER_H
link|flag
Thanks Evan :) It's the only utility-type thing I've written that I now can't live without... – j_random_hacker Jan 22 at 16:16
Why didn't you use the copy algorithm that you have commented out? – Harper Shelby Jan 22 at 17:01
1  
cause it will put a delimiter after the last item perhaps? – Evan Teran Jan 22 at 17:28
vote up 0 vote down

Determine a file's size with ISO-C:

long fsize(FILE * file)
{
    if(fseek(file, 0, SEEK_END))
        return -1;

    long size = ftell(file);
    if(size < 0)
        return -1;

    if(fseek(file, 0, SEEK_SET))
        return -1;

    return size;
}
link|flag
2  
On binary files this will work fine, but if they're opened in text mode, you may be in for a surprise... cplusplus.com/reference/clibrary/… – rmeador Jan 22 at 16:38
"In the GNU library, and on all POSIX systems, there is no difference between text streams and binary streams. When you open a stream, you get the same kind of stream regardless of whether you ask for binary." – Christoph Jan 22 at 16:47
Windows has some issues with non-text files opened in text mode and auto-converts \r\n to \n (this isn't an issue when determining the size of a buffer needed to hold the file's contents); this has an easy fix: always open files in binary mode! – Christoph Jan 22 at 16:54
2  
Wouldn't stat or fstat be alot better suited for this purpose? – roe Jan 22 at 20:48
1  
Ferruccio: Does it have all of its vowels? Yes? So obviously not in ISO-C! – jkerian Oct 22 at 19:54
show 3 more comments
vote up 5 vote down

I can't post the code - it belongs to my employer, after all - but the thing I found most useful is

int number = 2;
sendMessage(makestring() << "This message has a " << number << " in it.");

IOW, in-place stream formatting. Implementation is left as an exercise to the reader (or may be boost hast it :) ).

link|flag
1  
Very nice! Lemme guess: makestring() produces an object of some type derived from ostream, which has an implicit conversion to char*. – j_random_hacker Jan 22 at 16:19
Actually... Wouldn't that mean that the temporary returned by makestring() actually gets destructed before sendMessage() gets called? Do you use a static or preallocated char buffer to avoid that? – j_random_hacker Jan 22 at 16:23
it could always have cast to std::string overloaded... then no scope issues. – Evan Teran Jan 22 at 16:51
To j_random_hacker: "Temporary objects are destroyed as the last step in evaluating the full-expression that (lexically) contains the point where they were created." (12.2/3) – Iraimbilanja Jan 22 at 17:42
makestring is a class, and it has a templated operator << to transfer the call to the ostringstream it owns, plus another one for manipulators. – Arkadiy Jan 22 at 19:18
show 5 more comments
vote up 5 vote down

finally, my last answer is a string split function which splits on a single character delimiter of your choice.

inline void split(const std::string &s, char delim, std::vector<std::string> &elems) {
    std::stringstream ss(s);
    std::string item;
    while(std::getline(ss, item, delim)) {
        elems.push_back(item);
    }
}
link|flag
We have s.find_first_of(delim) instead of getline. Which one works faster? – Igor Oks Jan 22 at 19:50
2  
Does it matter? How often is a string split the time limiting step in your application? – mgb Jun 24 at 16:18
vote up 1 vote down

Reading in a whole file, ISO-C:

size_t fget_contents(char ** buffer, const char * name, _Bool * error)
{
    FILE * file = NULL;
    char * temp = NULL;
    size_t read = 0;

    // assume failure by default
    *buffer = NULL;
    if(error) *error = 1;

    do
    {
    	file = fopen(name, "rb");
    	if(!file) break;

    	long size = fsize(file);
    	if(size < 0) break;

    	// no io error till now
    	if(error) *error = 0;

    	temp = malloc((size_t)size + 1);
    	if(!temp) break;

    	read = fread(temp, 1, (size_t)size, file);
    	temp[read] = 0;

    	// `temp` is needed because realloc may fail here!
    	*buffer = realloc(temp, read + 1);
    	if(!*buffer) break;

    	temp = NULL;
    	if(error) *error = (size != (long)read);
    }
    while(0);

    // cleanup
    if(file) fclose(file);
    if(temp) free(temp);

    return read;
}
link|flag
why do { ... } while (0) ??? – Marcin Koziuk Jan 22 at 22:04
@marcin: to be able to skip code without using return - I could have used a goto instead, but there would have been only one label; this was the nicest way I could think of to properly handle all possible error conditions and still close file... – Christoph Jan 22 at 22:28
4  
A neat demonstration of how goto is sometimes better! Would be much clearer in this case. – Earwicker Jan 23 at 17:54
But when programming C, you get used to the do...while(0) abuse: it's pretty common when defining multi-statement macros... – Christoph Jan 23 at 21:13
Also, I believe it's a common pattern in the one-exit-point-per-function camp... – Christoph Jan 23 at 21:17
show 2 more comments
vote up 1 vote down

I've found myself writing the equivalent if the function too many times (sorry for typos):

template<class __p> static void deleteVector(std::vector<__p*>& target) {
    for(std::vector<__p*>::iterator i = target.begin(); i != target.end(); ++i) {
        delete *i;
    }
    target.clear();
}

Might be the perfect example of where to use some kind of smart pointer, but it's not all projects that uses that kind of coolness.

link|flag
I have something like this, it's very useful! I instead only declare a DeletePointer functor and do it this way: for_each(v.begin(), v.end(), DeletePointer()); – Ray Hidayat Jan 29 at 23:29
vote up 5 vote down

CCASSERT - force a compile-time assert

#define CCASSERT(predicate) _x_CCASSERT_LINE(predicate, __LINE__)
#define _x_CCASSERT_LINE(predicate, line) typedef char constraint_violated_on_line_##line[2*((predicate)!=0)-1];

Typical usage:

CCASSERT(sizeof(_someVariable)==4)
link|flag
In which compiler is this supposed to work? The LINE macro won't be expanded, because it will be joined via ## before processing! – Christoph Jan 22 at 17:10
compile time asserts are very useful, but currently awkward to make work on all compilers. The new C standard is defining static asserts though. More details here: pixelbeat.org/programming/static_assert.html/… – pixelbeat Jan 25 at 1:03
vote up 18 vote down

This is useful for debugging:

#ifdef NDEBUG
#define Dprintf(format, ...)
#else
#define Dprintf(format, ...) \
    fprintf(stderr, "[%s]:%s:%d: " format, __FILE__, \
    	__func__, __LINE__, ##__VA_ARGS__)
#endif

It uses variadic macros.

Edit: use NDEBUG which is standard. Thank you christoph!

link|flag
Why not check for NDEBUG, which is the standard macro used to determine whether we're in debug-mode or not? Also, it's bad practice to start names of user-defined macros with __... – Christoph Jan 22 at 17:27
1  
Now I can upvote in good conscience: +1 – Christoph Jan 22 at 17:53
vote up 8 vote down

Fastest vs Easiest way to read a full file into a std::string.

string fast(char const* filename) {
	ifstream file(filename, ios::ate);
	int size = file.tellg();
	file.seekg(0, ios::beg);
	scoped_array<char> buffer(new char[size]);
	file.read(buffer.get(), size);
	return buffer.get();
}

string easy(char const* filename) {
	ostringstream ss;
	ss << ifstream(filename).rdbuf();
	return ss.str();
}
link|flag
Interesting, but is there no way to avoid the string copy? – StackedCrooked Oct 23 at 22:51
vote up 32 vote down

Get the number of elements in an array:

#define ITEMSOF(arr)    (sizeof(arr) / sizeof(0[arr]))

(0[arr] is identical to arr[0] for arrays but will intentionally fail if it's used against a C++ object that overloads operator[].)

The C++ version is less intuitive but more type-safe:

template<int n>
struct char_array_wrapper{
    char result[n];
};

template<typename T, int s>
char_array_wrapper<s> the_type_of_the_variable_is_not_an_array(const T (&array)[s]){
}

#define ITEMSOF(v) sizeof(the_type_of_the_variable_is_not_an_array(v).result)

Taken from this question and Imperfect C++, by Matthew Wilson, section 14.3.

link|flag
Microsoft now has _countof() in stdlib.h which is very similar. – Rob K Jan 22 at 18:38
4  
Very nice! That's the first time I've ever seen the fact that x[y] === y[x] being useful! – j_random_hacker Jan 22 at 22:42
4  
If you're using C++, you shouldn't be using arrays at all. Use vectors. – Rocketmagnet Apr 25 at 16:18
3  
@Naseer: The macro gives incorrect results work with char *arr because C and C++ don't know the size pointed to by a pointer. The template version intentionally fails to compile when used with char *arr for this reason. – Josh Kelley Jun 7 at 0:53
2  
@Naseer: char arr[10] is in most respects a pointer, but sizeof (in the macro version) and certain template parameters (in the second version) still know that it's an array. Once you pass char arr[10] to a function taking char* as a parameter, the array decays into a pointer, and C/C++ can no longer distinguish the two or know the array's size. – Josh Kelley Jun 12 at 15:39
show 6 more comments
vote up 5 vote down

Convert any streamable variable to string:

#include <string>
#include <strstream>
#include <iostream>
using namespace std;

template<class Source>
string ToString(const Source& Value)
{
    strstream ss;
    ss << Value << '\0';
    string os = ss.str();
    ss.freeze(false);
    return os;
}

See also Evan's lexical_cast answer.

link|flag
you should take a look at my "lexical_cast" answer above, it lets you go both to and from a string. – Evan Teran Jan 22 at 18:16
you are right. though this one is doing it without the second type (but 1 direction only :-]) – Igor Oks Jan 22 at 18:21
In most cases for my answer, you can omit the second type like this: int x = lexical_cast<int>("12345"); because the compiler can figure out the type of the parameter. – Evan Teran Jan 22 at 19:33
is the '\0' really required? And what would be the consequence of simply returning ss.str()? – hapalibashi Oct 23 at 21:48
and why use strstream rather than stringstream? – hapalibashi Oct 27 at 14:02
show 1 more comment
vote up 1 vote down

I use this for adding debug logging that (a) disappears in non-debug code and (b) supports variable arguments. Similar to cojocar's answer but doesn't use variadic macros (which aren't supported by all compilers):

extern int MyDebugLogRoutine( const char *fmt, ... );
#ifdef NDEBUG
#define Dprintf(x)
#else
#define Dprintf(x) MyDebugLogRoutine x
#endif

// need double parens
Dprintf(( "Format string that supports %s\n", "arguments" ));
link|flag
vote up 1 vote down

Stringify defined as ToString here

Parse defined simetrically:

template <typename T>
void parse( std::string const & str, T & data )
{
   std::istringstream st(str);
   st >> data;
}

STL iterator printout (dump to stream) (maybe similar in functionality to sequence_lister here?):

// dump to stream 
class stream_dumper { 
public:    
   explicit stream_dumper( std::ostream& o, std::string const & sep = "" )
      : out_( o ), sep_( sep ), first_(true) {}    
   template <typename T>
   void operator()( T const & t )   {
      if ( first_ ) first_ = false;
      else out_ << sep_;

      out_ << t;    
   } 
private:    
   std::ostream& out_;
   std::string sep_;
   bool first_; 
};


// usage 
void f( std::vector<int> const & v, std::list<double> const & l ) {
   // dump the vertor separating with commas
   std::for_each( v.begin(), v.end(), stream_dumper( std::cout, ", ") );
   // dump the list separating with |
   std::for_each( l.begin(), l.end(), stream_dumper( std::cerr, "|" ) ); 
}

I used to have a similar solution to free memory held in containers through pointers, but that code is now obsolete with the use of boost::shared_ptr

link|flag
For stringify/parse, check out boost's lexical_cast. – Earwicker Jun 25 at 6:31
vote up 16 vote down

My own implementation of make_string() as proposed here by Arkadiy:

class make_string
{
public:
   template <typename T>
   make_string& operator<<( T const & datum )
   {
      buffer_ << datum;
      return *this;
   }
   operator std::string () const
   {
      return buffer_.str();
   }
private:
   std::ostringstream buffer_;
};

// usage:
void f( std::string const & );
int main()
{
   std::string name = "David";
   f( make_string() << "Hello " << name << "!" );
}

j_random_hacker suggests adding a const char* conversion to the class above so that it can be used with legacy/C libraries that take null terminated strings. I have had not that much time to think about it, but I feel unease as adding that conversion would allow the following code to compile [edit: bad example, read answer to second comment]:

const char* str = make_string() << "Hello world"; // 1
// ...
std::cout << str << std::endl; // 2

To the compiler the code above is correct, but the usage is wrong as in line 1 the make_string() temporary is destroyed and the pointer is no longer valid.

Response to second comment:

Assume a simple implementation of const char* operator:

class make_string
{
// ...
public:
   operator const char* () 
   {
      return buffer_.str().c_str();
   }
};

The str() creates a std::string object, whose scope is inside the operator const char_ method. The c_str() returns a pointer inside that std::string. By the time the caller receives the pointer, the std::string has gone out of scope and the memory has been released.

The other big difference with the code sample where the user requests the .c_str() from the std::string returned from the conversion operator is that the user is explicitly doing it and as such it appears in the code. If the conversion to null terminated string is implemented the user will have more trouble to detect where the error is.

void f( std::string const & );
void g( const char* );

f( make_string() << "Say hi" ); // works ok
g( make_string() << "Bye" ); // kills the application
g( (make_string() << "Hi again").c_str() ); // ok again std::string temporary is alive until g() returns

Now, try to explain what is so wrong with the second and not with the first or third lines one to the poor programmer whose application keeps dying. After all, she is just using a feature you are offering.

Another detail is that you could have a std::string member attribute and use it to force the lifespan of the std::string to be equivalent to that of the make_string object.

Anyway, I recomend everyone to read Modern C++ Design from Andrei Alexandrescu, and specially the chapter on smart pointers. The discussion of what features to implement is quite interesting. It changed my set of mind from 'implement as many features as you can' to a more conservative 'implement what is required, weight advantages and disadvantages of all other features'

link|flag
Very nice dribeas. Can I suggest adding an operator const char*() conversion as well, since many libraries still take C-style strings? They won't conflict. I also found that MSVC++9 needs a 2nd operator<<() template that binds to non-const ref for handling some manipulators. – j_random_hacker Jan 23 at 18:05
Well, the compiler also won't complain if you try to assign (make_string() << ...).c_str() to your str variable, which is the same thing IMHO -- in both cases you have to accept that there are parts of a contract that can't be enforced by the language. But it's up to you of course. – j_random_hacker Jan 25 at 11:33
I was about to mention that you could add a std::string member variable to solve the problem of the temporary in operator const char*(), when I saw you had done so yourself! So I think this removes any "danger." But I agree that c_str() is a more explicit (e.g. greppable) way to indicate danger. – j_random_hacker Jan 30 at 3:18
You can fix the char const* storage problem by treating the string maker as a global resource. pastie.org/375016 But it's not threadsafe and it still lets you do char const* hi=string_maker << "Hello world"; char const* bye=string_maker << "Bye"; cout << hi;. Guess its best to just say no. – Iraimbilanja Jan 30 at 8:49
vote up 2 vote down
#include <queue.h>

Never write buggy linked list implementations again.

#include <tree.h>

Never write buggy tree implementations again.

Fully portable and legal for close-source commercial products.

link|flag
Um, tree.h is not portable it's BSD. Whereas queue is portable but not in the <queue.h> form (which is either BSD or old C++), rather in the <queue> form (which is standard C++). – Iraimbilanja Jan 23 at 16:42
2  
Sometimes it would be useful to have a tree type, but the Standard C++ Library has linked lists and queues pretty well covered, as well as sets and maps for doing what most people want to use trees to do (they're trees underneath). – j_random_hacker Jan 23 at 18:07
vote up 0 vote down

What a coincidence! I'm just collecting mines here. Everything is in C and is meant to be absolutely minimal, with as few dependencies as possible. At the moment I have:

  • Debugging macros (similar to what cojocar already showed)
  • Logging macros (similar to log4j but only logs to file)
  • Unit testing framework (produces a TAP compliant result)
  • Variable length strings (that can be intermixed with C strings)
  • Associative arrays (where keys and values can be strings, integers, pointers or other tables)
  • Pattern matching (different from regular expressions). Used with the variable length strings it offers search and replace functionalities similar to what many scripting languages have.

It's a work in progress and I add code, examples and documentation when time permits. The code is for my own projects but is released under BSD should someone else find it useful.

link|flag
vote up 15 vote down

When calling a Win32 API that wants to write into a string buffer, it would be nice to be able to pass it a std::string or std::wstring directly.

Here's a simple way to enable that:

template <class C>
class _StringBuffer
{
	typename std::basic_string<C> &m_str;
	typename std::vector<C> m_buffer;

public:
	_StringBuffer(typename std::basic_string<C> &str, size_t nSize)
		: m_str(str), m_buffer(nSize + 1) { get()[nSize] = (C)0; }

	~_StringBuffer()
		{ commit(); }

	C *get()
		{ return &(m_buffer[0]); }

	operator C *()
		{ return get(); }

	void commit()
	{
		if (m_buffer.size() != 0)
		{
			size_t l = std::char_traits<C>::length(get());

			m_str.assign(get(), l);

			m_buffer.resize(0);
		}
	}

	void abort()
		{ m_buffer.resize(0); }
};

template <class C>
inline _StringBuffer<C> StringBuffer(typename std::basic_string<C> &str, size_t nSize)
	{ return _StringBuffer<C>(str, nSize); }

So now I can say:

std::string str;
GetWindowsDirectory(StringBuffer(str, MAX_PATH), MAX_PATH);

StringBuffer gives a writeable buffer to the API, and then on destruction it copies it into str.

link|flag
This is extremely cool. This is going in my utility library, along with makestring(). – j_random_hacker Jan 23 at 18:20
3  
In C++ _StringBuffer is a reserved identifier, shouldn't be used for your own class template. – robson3.14 Jul 21 at 20:31
vote up 4 vote down

Here is one of mines that I didn't saw it here (reproduced without a compiler, might not be exact):

class Monitor
{
    private:
    	CRITICAL_SECTION cs;
    public:
    	Monitor() { InitializeCriticalSection(&m_cs); }
    	~Monitor() { DeleteCriticalSection(&m_cs); }
    	void Lock() { EnterCriticalSection(&m_cs); }
    	void Unlock() { LeaveCriticalSection(&m_cs); }
};

class Locker
{
    private:
    	Monitor& m_monitor;
    public:
    	Locker(Monitor& monitor) : m_monitor(monitor) { m_monitor.Lock(); }
    	~Locker() { m_monitor.Unlock(); }		
};

#define SCOPE_LOCK(monitor) Locker locker##__LINE__(monitor)

And it can be used like this:

    class X : public Monitor {};
    X x;

void use_x()
{     

    SCOPE_LOCK(x);
    //use x
    //on scope exit, x is unlocked
}
link|flag
Nice use of RAII. – j_random_hacker Jan 26 at 21:43
1  
Two notes - CRITICAL_SECTION is win32, so this isn't cross-platform. Also, the Boost threading library can do pretty much the same thing with boost::lock_guard boost.org/doc/libs/… – Branan Jan 30 at 23:17
Hi, thanks for the comment. Cross-platform-ness is not an issue for me. And the sample can be easily adapted for other platforms. Didn't knew about boost::lock_guard. I'll look into it. – maddizzyro Jan 31 at 15:31
check out the MFC CCriticalSection and CSingleLock equivalents. – gbjbaanb Feb 1 at 1:46
vote up 15 vote down
#include <boost/...
link|flag
vote up -2 vote down

I don't remember from who I copied this ones, but I found them on while browsing solution on one of the problem-providing sites:

#define For(i,a,b) for(int i(a), _b(b); i<=_b; ++i)
#define Ford(i,a,b) for (int i(a), _b(b); i>=_b; --i)
#define All(v) (v).begin(), (v).end()
#define Vs vector<string>
#define Vsi Vs::iterator
#define Vi vector<int>
#define Vii Vi::iterator
#define Pb(v,e) (v).push_back(e)

Simple, yet they save few keystrokes.

link|flag
10  
“save a few keystrokes” should flash a big, red warning light. Such macros are the reason why macros in general have such a bad name. – Konrad Rudolph Jun 24 at 16:14
3  
extremely ugly!!! – robson3.14 Jul 21 at 20:34
1  
look like the work of a masochist! – hapalibashi Oct 23 at 21:51
vote up 0 vote down
void
dprintf (char *format, ...)
{

#ifdef DEBUG

    {

    	int rete;
    	va_list args;
    	static char buffer[1000000];//yes 1000000, I need this to debug
    	int ret;
    	va_start (args, format);
    	ret = vsprintf (buffer, format, args);
    	OutputDebugString (buffer);
    	printf (buffer);


    }
#else

    return;
#endif


}
link|flag
vote up 0 vote down

When a class need to override the default copy constructor/assignment I sometime use something like this:

class SomeClass
{
   struct Members
   {
      int a;
      int b;
   };

   Members m;
   int* evilptr;

   public:
   SomeClass(SomeClass const& rhs) : m(rhs.m), evilptr(new int(*rhs.evilptr))
   {

   }

   SomeClass& operator=(SomeClass const& rhs)
   {
      m = rhs.m;
      evilptr = new int(*rhs.evilptr);
      return *this;
   }
};

This way, if you add a new members to the class you can't forget to add it to the copy constructor/assignement operator. This save some possibility of error.

Of course in my exemple I could use some kind of clone_ptr but in real life this is not always this simple. Also beware that I never check for NULL in my exemple when dereferencing evilptr, you should of course adapt the code according to your needs.

link|flag
vote up 0 vote down

Working with VTK the following defs were useful:

#define EPSILON 0.00001

// ex. if ( FLOAT_EQ(d,1) ) ...
#define FLOAT_EQ(x,y) ( ((x-EPSILON) < y) && (y < (x+EPSILON)) )

// Fit "val" to be between e1 and e2, just like vtkMath::ClampValue
#define FLOAT_CLAMP(val, e1, e2) \
{\
 if ( (val)<(e1) ) (val)=(e1); \
 if ( (val)>(e2) ) (val)=(e2); \
}

// 3D coordinate    
#define FLOAT_COPY(src, dst) \
{\
 (dst)[0]=(src)[0]; \
 (dst)[1]=(src)[1]; \
 (dst)[2]=(src)[2]; \
}

#define FLOAT_FILL(v, value) \
{\
 (v)[0]= (v)[1]= (v)[2]=(value); \
}

#define FLOAT_SET(v, x,y,z) \
{\
 (v)[0]=(x); \
 (v)[1]=(y); \
 (v)[2]=(z); \
}

Of course "const double epsilon = 0.00001;" and similar can be used instead of define. There's a CodeGuru article with explanations

link|flag
vote up 1 vote down

This class to trace the time spent on the execution of the expressions in the scope:

#include <iostream>
#include <sys/time.h>

class trace_elapsed_time
{
public:
   explicit trace_elapsed_time(const std::string& msg, std::ostream& out = std::cout)
   : msg_(msg), out_(out)
   {
      gettimeofday(&init_time_, 0);
   }
   ~trace_elapsed_time()
   {
      timeval now;
      gettimeofday(&now, 0);
      double elapsed_seconds = now.tv_sec - init_time_.tv_sec + 
                               now.tv_usec/1e6 - init_time_.tv_usec/1e6;
      std::string::size_type pos = msg_.find("%t");
      out_ << msg_.substr(0, pos) << elapsed_seconds 
           << msg_.substr(pos+2, msg_.size()-1) << std::flush;
   }
private:
   std::string msg_;
   std::ostream& out_;
   timeval init_time_;
};

Example of use:

int main()
{
   trace_elapsed_time t("Elapsed time: %ts.\n");
   usleep(1.005 * 1e6);
}

Output:

Elapsed time: 1.00509s.

Note: You can make this code portable using boost time functions and linking against the corresponding library.

link|flag
vote up 4 vote down

A simple hexdumpis often good to have...

#include <ctype.h>
#include <stdio.h>

void hexdump(void *ptr, int buflen) {
  unsigned char *buf = (unsigned char*)ptr;
  int i, j;
  for (i=0; i<buflen; i+=16) {
    printf("%06x: ", i);
    for (j=0; j<16; j++) 
      if (i+j < buflen)
        printf("%02x ", buf[i+j]);
      else
        printf("   ");
    printf(" ");
    for (j=0; j<16; j++) 
      if (i+j < buflen)
        printf("%c", isprint(buf[i+j]) ? buf[i+j] : '.');
    printf("\n");
  }
}
link|flag
vote up 0 vote down

This is EVIL! I know, but has come in handy:

#define private public
#include "OhSoEncapsulatedLittleObject.hpp" // Let me at'em!
...
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.