Embed data in a C++ program - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T20:23:27Z http://stackoverflow.com/feeds/question/72616 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/72616/embed-data-in-a-c-program 7 Embed data in a C++ program Head Geek 2008-09-16T14:03:58Z 2009-04-08T19:27:25Z <p>I've got a C++ program that uses SQLite. I want to store the SQL queries in a separate file -- a plain-text file, <em>not</em> a source code file -- but embed that file in the executable file like a resource.</p> <p>(This has to run on Linux, so I can't store it as an actual resource as far as I know, though that would be perfect if it were for Windows.)</p> <p>Is there any simple way to do it, or will it effectively require me to write my own resource system for Linux? (Easily possible, but it would take a lot longer.)</p> http://stackoverflow.com/questions/72616/embed-data-in-a-c-program/72692#72692 1 Answer by vava for Embed data in a C++ program vava 2008-09-16T14:11:27Z 2008-09-16T14:32:28Z <p>Use macros. Technically that file would be <em>source code</em> file but it wouldn't look like this. Example:</p> <pre><code>//queries.incl - SQL queries Q(SELECT * FROM Users) Q(INSERT [a] INTO Accounts) //source.cpp #define Q(query) #query, char * queries[] = { #include "queries.incl" }; #undef Q </code></pre> <p>Later on you could do all sorts of other processing on that file by the same file, say you'd want to have array and a hash map of them, you could redefine Q to do another job and be done with it. </p> http://stackoverflow.com/questions/72616/embed-data-in-a-c-program/72701#72701 1 Answer by introp for Embed data in a C++ program introp 2008-09-16T14:12:00Z 2008-09-16T14:12:00Z <p>It's slightly ugly, but you can always use something like:</p> <pre>const char *query_foo = #include "query_foo.txt" const char *query_bar = #include "query_bar.txt" </pre> <p>Where query_foo.txt would contain the quoted query text.</p> http://stackoverflow.com/questions/72616/embed-data-in-a-c-program/72714#72714 3 Answer by Trent for Embed data in a C++ program Trent 2008-09-16T14:12:52Z 2008-09-16T14:12:52Z <p>You can always write a small program or script to convert your text file into a header file and run it as part of your build process.</p> http://stackoverflow.com/questions/72616/embed-data-in-a-c-program/72751#72751 0 Answer by Matej for Embed data in a C++ program Matej 2008-09-16T14:15:31Z 2008-09-16T14:15:31Z <p>I have seen this to be done by converting the resource file to a C source file with only one char array defined containing the content of resource file in a hexadecimal format (to avoid problems with malicious characters). This automatically generated source file is then simply compiled and linked to the project. </p> <p>It should be pretty easy to implement the convertor to dump C file for each resource file also as to write some facade functions for accessing the resources.</p> http://stackoverflow.com/questions/72616/embed-data-in-a-c-program/72786#72786 13 Answer by moonshadow for Embed data in a C++ program moonshadow 2008-09-16T14:17:44Z 2008-09-16T14:17:44Z <p>You can use objcopy to bind the contents of the file to a symbol your program can use. See, for instance, <a href="http://www.linuxjournal.com/content/embedding-file-executable-aka-hello-world-version-5967" rel="nofollow">here</a> for more information.</p> http://stackoverflow.com/questions/72616/embed-data-in-a-c-program/73653#73653 1 Answer by tfinniga for Embed data in a C++ program tfinniga 2008-09-16T15:34:59Z 2008-09-16T15:34:59Z <p>Here's a sample that we used for cross-platform embeddeding of files. It's pretty simplistic, but will probably work for you.</p> <p>You may also need to change how it's handling linefeeds in the escapeLine function.</p> <pre><code>#include &lt;string&gt; #include &lt;iostream&gt; #include &lt;fstream&gt; #include &lt;cstdio&gt; using namespace std; std::string escapeLine( std::string orig ) { string retme; for (unsigned int i=0; i&lt;orig.size(); i++) { switch (orig[i]) { case '\\': retme += "\\\\"; break; case '"': retme += "\\\""; break; case '\n': // Strip out the final linefeed. break; default: retme += orig[i]; } } retme += "\\n"; // Add an escaped linefeed to the escaped string. return retme; } int main( int argc, char ** argv ) { string filenamein, filenameout; if ( argc &gt; 1 ) filenamein = argv[ 1 ]; else { // Not enough arguments fprintf( stderr, "Usage: %s &lt;file to convert.mel&gt; [ &lt;output file name.mel&gt; ]\n", argv[0] ); exit( -1 ); } if ( argc &gt; 2 ) filenameout = argv[ 2 ]; else { string new_ending = "_mel.h"; filenameout = filenamein; std::string::size_type pos; pos = filenameout.find( ".mel" ); if (pos == std::string::npos) filenameout += new_ending; else filenameout.replace( pos, new_ending.size(), new_ending ); } printf( "Converting \"%s\" to \"%s\"\n", filenamein.c_str(), filenameout.c_str() ); ifstream filein( filenamein.c_str(), ios::in ); ofstream fileout( filenameout.c_str(), ios::out ); if (!filein.good()) { fprintf( stderr, "Unable to open input file %s\n", filenamein.c_str() ); exit( -2 ); } if (!fileout.good()) { fprintf( stderr, "Unable to open output file %s\n", filenameout.c_str() ); exit( -3 ); } // Write the file. fileout &lt;&lt; "tempstr = "; while( filein.good() ) { string buff; if ( getline( filein, buff ) ) { fileout &lt;&lt; "\"" &lt;&lt; escapeLine( buff ) &lt;&lt; "\"" &lt;&lt; endl; } } fileout &lt;&lt; ";" &lt;&lt; endl; filein.close(); fileout.close(); return 0; } </code></pre>