将数据嵌入C ++程序中

时间:2008-09-16 14:03:58

标签: c++ linux sqlite

我有一个使用SQLite的C ++程序。我想将SQL查询存储在一个单独的文件中 - 一个纯文本文件,一个源代码文件 - 但是将该文件嵌入可执行文件中,就像资源一样。

(这必须在Linux上运行,因此据我所知,我无法将其存储为实际资源,但如果它适用于Windows,那将是完美的。)

有没有简单的方法可以做到,还是有效地要求我为Linux编写自己的资源系统? (很容易,但需要更长的时间。)

6 个答案:

答案 0 :(得分:24)

您可以使用objcopy将文件内容绑定到程序可以使用的符号。例如,请参阅here以获取更多信息。

答案 1 :(得分:3)

使用宏。从技术上讲,该文件将是源代码文件,但它看起来不像这样。 例如:

//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

稍后您可以通过同一个文件对该文件执行各种其他处理,比如说您希望拥有数组和它们的哈希映射,您可以重新定义Q以完成另一项工作并完成它。

答案 2 :(得分:3)

您可以随时编写一个小程序或脚本,将文本文件转换为头文件,并在构建过程中运行它。

答案 3 :(得分:2)

以下是我们用于跨平台嵌入文件的示例。 这很简单,但可能适合你。

您可能还需要更改它在escapeLine函数中处理换行符的方式。

#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;
}

答案 4 :(得分:1)

它有点难看,但你可以使用类似的东西:

const char *query_foo =
#include "query_foo.txt"

const char *query_bar =
#include "query_bar.txt"

其中query_foo.txt将包含带引号的查询文本。

答案 5 :(得分:0)

我已经看到这是通过将资源文件转换为C源文件来完成的,其中只定义了一个包含十六进制格式的资源文件内容的char数组(以避免恶意字符出现问题)。然后,这个自动生成的源文件被简单地编译并链接到项目。

实现转换器以转储每个资源文件的C文件以及编写一些用于访问资源的Facade函数应该非常容易。