Embed data in a C++ program - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T20:23:27Zhttp://stackoverflow.com/feeds/question/72616http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/72616/embed-data-in-a-c-program7Embed data in a C++ programHead Geek2008-09-16T14:03:58Z2009-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#726921Answer by vava for Embed data in a C++ programvava2008-09-16T14:11:27Z2008-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#727011Answer by introp for Embed data in a C++ programintrop2008-09-16T14:12:00Z2008-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#727143Answer by Trent for Embed data in a C++ programTrent2008-09-16T14:12:52Z2008-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#727510Answer by Matej for Embed data in a C++ programMatej2008-09-16T14:15:31Z2008-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#7278613Answer by moonshadow for Embed data in a C++ programmoonshadow2008-09-16T14:17:44Z2008-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#736531Answer by tfinniga for Embed data in a C++ programtfinniga2008-09-16T15:34:59Z2008-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 <string>
#include <iostream>
#include <fstream>
#include <cstdio>
using namespace std;
std::string escapeLine( std::string orig )
{
string retme;
for (unsigned int i=0; i<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 > 1 )
filenamein = argv[ 1 ];
else
{
// Not enough arguments
fprintf( stderr, "Usage: %s <file to convert.mel> [ <output file name.mel> ]\n", argv[0] );
exit( -1 );
}
if ( argc > 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 << "tempstr = ";
while( filein.good() )
{
string buff;
if ( getline( filein, buff ) )
{
fileout << "\"" << escapeLine( buff ) << "\"" << endl;
}
}
fileout << ";" << endl;
filein.close();
fileout.close();
return 0;
}
</code></pre>