create std::string from char* in a safe way - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T10:57:40Zhttp://stackoverflow.com/feeds/question/246445http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/246445/create-stdstring-from-char-in-a-safe-way4create std::string from char* in a safe wayn-alexander2008-10-29T11:22:36Z2008-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#24645717Answer by Chris Jester-Young for create std::string from char* in a safe wayChris Jester-Young2008-10-29T11:26:02Z2008-10-29T11:26:02Z<p>You can use <code>shared_ptr</code> from <a href="http://www.dinkumware.com/manuals/?manual=compleat&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<char> p(get_string(), &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#2464601Answer by MSalters for create std::string from char* in a safe wayMSalters2008-10-29T11:26:57Z2008-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&);
void operator=(Cleanup&);
};
</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#2468531Answer by Johann Gerell for create std::string from char* in a safe wayJohann Gerell2008-10-29T13:50:27Z2008-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#2468880Answer by Andreas Magnusson for create std::string from char* in a safe wayAndreas Magnusson2008-10-29T13:57:39Z2008-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(&free, p);
string str( p );
return str;
}
</code></pre>
http://stackoverflow.com/questions/246445/create-stdstring-from-char-in-a-safe-way/246902#2469023Answer by James Dean for create std::string from char* in a safe wayJames Dean2008-10-29T14:00:14Z2008-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>