create std::string from char* in a safe way - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T10:57:40Z http://stackoverflow.com/feeds/question/246445 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/246445/create-stdstring-from-char-in-a-safe-way 4 create std::string from char* in a safe way n-alexander 2008-10-29T11:22:36Z 2008-10-30T04:27:40Z <p>I have a char* p, which points to a 0-terminated string.</p> <p>How do I create a C++ string from it in an exception-safe way?</p> <p>Here is an unsafe version:</p> <pre><code>string foo() { char *p = get_string(); string str( p ); free( p ); return str; } </code></pre> <p>An obvious solution would be to try-catch - any easier ways? </p> http://stackoverflow.com/questions/246445/create-stdstring-from-char-in-a-safe-way/246457#246457 17 Answer by Chris Jester-Young for create std::string from char* in a safe way Chris Jester-Young 2008-10-29T11:26:02Z 2008-10-29T11:26:02Z <p>You can use <code>shared_ptr</code> from <a href="http://www.dinkumware.com/manuals/?manual=compleat&amp;page=memory.html" rel="nofollow">TR1</a> or <a href="http://www.boost.org/libs/smart_ptr/" rel="nofollow">Boost</a>:</p> <pre><code>string foo() { shared_ptr&lt;char&gt; p(get_string(), &amp;free); string str(p.get()); return str; } </code></pre> <p>This uses a very specific feature of <code>shared_ptr</code> not available in <code>auto_ptr</code> or anything else, namely the ability to specify a custom deleter; in this case, I'm using <code>free</code> as the deleter.</p> http://stackoverflow.com/questions/246445/create-stdstring-from-char-in-a-safe-way/246460#246460 1 Answer by MSalters for create std::string from char* in a safe way MSalters 2008-10-29T11:26:57Z 2008-10-30T04:09:55Z <p>Yup - stack-based unwinding. Modern C++ Design has the general solution but in this case you can use</p> <pre><code>struct Cleanup { void* toFree; Cleanup(void* toFree) : toFree(toFree) {} ~Cleanup() { free(toFree); } private: Cleanup(Cleanup&amp;); void operator=(Cleanup&amp;); }; </code></pre> <p>No matter what happens with your std::string, free(toFree) will be called when your Cleanup object goes out of scope.</p> http://stackoverflow.com/questions/246445/create-stdstring-from-char-in-a-safe-way/246853#246853 1 Answer by Johann Gerell for create std::string from char* in a safe way Johann Gerell 2008-10-29T13:50:27Z 2008-10-29T22:13:31Z <p>Well, <code>p</code> does not point to a 0-terminated string if <code>get_string()</code> returns NULL; that's the problem here, since the <code>std::string</code> constructors that take a pointer to 0-terminated C string cannot deal with NULL, which is as much a 0-terminated C string as two dozens of bananas are.</p> <p>So, if <code>get_string()</code> is your own function, as opposed to a library function, then maybe you should make sure that it cannot return NULL. You could for instance let it return the sought <code>std::string</code> itself, since it knows it's own state. Otherwise, I'd do this, using the <code>Cleanup</code> from <a href="http://stackoverflow.com/questions/246445/create-stdstring-from-char-in-a-safe-way#246460">this answer</a> as a helper to guarantee that <code>p</code> cannot leak (as suggested by Martin York in a comment):</p> <pre><code>string foo() { const char* p = get_string(); const Cleanup cleanup(p); const std::string str(p != NULL ? p : ""); return str; } </code></pre> http://stackoverflow.com/questions/246445/create-stdstring-from-char-in-a-safe-way/246888#246888 0 Answer by Andreas Magnusson for create std::string from char* in a safe way Andreas Magnusson 2008-10-29T13:57:39Z 2008-10-29T13:57:39Z <p>We commonly use <a href="http://www.ddj.com/cpp/184403758" rel="nofollow">ScopeGuard</a> for these cases:</p> <pre><code>string foo() { char *p = get_string(); ScopeGuard sg = MakeGuard(&amp;free, p); string str( p ); return str; } </code></pre> http://stackoverflow.com/questions/246445/create-stdstring-from-char-in-a-safe-way/246902#246902 3 Answer by James Dean for create std::string from char* in a safe way James Dean 2008-10-29T14:00:14Z 2008-10-29T14:00:14Z <p>Can I ask you what exception you are expecting in your example?</p> <p>On many platforms (Linux, AIX) new or malloc will never fail and your app will get killed by the os if you run out of memory.</p> <p>See this link: <a href="http://www.linuxdevcenter.com/pub/a/linux/2006/11/30/linux-out-of-memory.html" rel="nofollow">What happens when Linux runs out of memory.</a></p>