3

VoIP パケットから音声を抽出する C++ プログラムに問題があります。

amd64 および x86 上の Linux および OpenBSD ではうまく動作しますが、ARM 上の OpenBSD でプログラムを実行すると、本当に魔法のように動作します。

LoadConfigFile で return true を呼び出し、ProcessConfiguration で結果は false です。

誰でも私を助けてもらえますか?多分私は本当に盲目です。コードで多くのテスト印刷を行いました。

これは、関数 ProcessConfiguration を呼び出すプログラムの主な機能です。

int main ( int argc, char **argv ) {

    if ( ! config.ProcessConfiguration( argc, argv ) ) {
        std::cout << "process configuration failed" << std::endl;
        std::cout << "exiting whole program with EXIT_FAILURE" << std::endl;
        return EXIT_FAILURE;
    }

    std::cout << "process configuration is true" << std::endl;

    // User want to only print configuration
    if ( config.m_printconfig == true ) {
        config.PrintConfig();
        return EXIT_SUCCESS;
    }
    .
    . // Long uninteresting code
    .
    return EXIT_SUCCESS;
}

これは、LoadConfigFile を呼び出す関数 ProcessConfiguration です。

bool TConfig::ProcessConfiguration ( int & argc, char ** & argv ) {

    // Scan options from command line
    int c;
    while (( c = getopt ( argc, argv, "c:dhn" )) != EOF ) {
        switch (c) {
        case 'c':
            m_configfile = optarg;
            break;
        case 'd':
            m_daemon = false;
            break;
        case 'h':
            m_printusage = true;
            return true;
        case 'n':
            m_printconfig = true;
            break;
        default:
            return false;
        }
    }
    argc -= optind;
    argv += optind;

    if ( LoadConfigFile() == false ) {
        std::cout << "LoadConfigFile was false" << std::endl;
        return false;
    }
    std::cout << "LoadConfigFile was true" << std::endl;
    return true;
}

そして、この関数は構成ファイルをロードし、すべてのディレクティブを解析します。

bool TConfig::LoadConfigFile ( void ) {

    std::string line;
    std::string directive;
    std::ifstream data;

    if ( m_configfile.empty() ) {
        m_configfile = DEFAULT_CONFIGFILE;
    }

    std::cout << "opening file " << m_configfile << std::endl;

    data.open( m_configfile.c_str() );

    if ( ! data.is_open() ) {
        std::cerr << "Couldn't open config " << m_configfile << std::endl;
        return false;
    }
    std::cout << "configfile is open" << std::endl;
    std::cout << "before getline" << std::endl;
    while ( getline( data, line ) ) {
        std::cout << "after getline" << std::endl;
        trim_whitespaces( line );
        .
        . // Long uninteresting code
        .
    }
    std::cout << "before data.close" << std::endl;
    data.close();
    std::cout << "before return true in LoadConfigFile" << std::endl;
    return true;
}

そして、これは端末に出力されます。

$ ./call-extract -c call-extract.conf -d -n 
opening file call-extract.conf
configfile is open
before getline
before data.close
before return true in LoadConfigFile
LoadConfigFile was false
process configuration failed
exiting whole program with EXIT_FAILURE
$ echo $?
1
$ 

LoadConfigFile で return true を呼び出し、ProcessConfiguration で結果は false です。

4

1 に答える 1

0

返される true は true です。

私のための出力:

before return true in LoadConfigFile
LoadConfigFile was true

興味のない部分のないコード:

struct TConfig
{
    bool ProcessConfiguration()
    {
        bool rv = true;
        if( !LoadConfigFile() ) { rv = false; }
        printf("LoadConfigFile was %s\n", rv?"true":"false" );
        return rv;
    }

    bool LoadConfigFile ( void )
    {
        printf("before return true in LoadConfigFile\n");
        return true;
    }
};
void fv()
{
    TConfig config; config.ProcessConfiguration();
}
于 2015-09-18T14:40:17.027 に答える