4

perl モジュール Vinod::StatHandler を生成する必要があります。C++ コードに関連する 2 つのファイルがあります。(statHandler.h、statHandler.cpp)

現在、次のコマンドを使用してモジュールを生成しています。

swig -perl -noproxy -c++ -o StatHandler_wrap.cxx StatHandler.i

モジュール StatHandler.pm を生成しました

次のコマンドを使用して .so ファイルを生成しました。

g++ -c statHandler.h statHandler.cpp -fPIC
g++ -O2 -shared -o StatHandler.so statHandler.o

「use StatHandler;」を含めるだけで、次のエラーが発生しました。テスト Perl スクリプトで。

Can't find 'boot_StatHandler' symbol in /home/vinod/cpp/swig//StatHandler.so 

LD_LIBRARY_PATH が適切に設定されている。SWIG のドキュメントを調べてみましたが、あまり得られませんでした。

パッケージ「Vinod::StatHandler」を生成するには、StatHandler.i ファイルで何を指定する必要がありますか。swig に他のオプションを提供する必要はありますか?

StatHandler.i の内容:

%module "Vinod::StatHandler"
%{
#include "statHandler.h"
%}
#ifdef STATIC
%include perlmain.i
#endif

class StatHandler {
 StatHandler(string _dirName, string _statsFile):_statsDir(_dirName),_finalStatsFile(_statsFile){};
  void printStats();
 };

statHandler.h の内容:

#ifndef STATHANDLER_H_
#define STATHANDLER_H_

#include<iostream>
#include<string.h>
#include<map>
#include<vector>

using namespace std;

class StatHandler {
 private:
  string _statsDir;
  string _finalStatsFile;
  vector<string> _statFiles;
  map <string, int> _dailyStats;
 public:
 StatHandler(string _dirName, string _statsFile):_statsDir(_dirName),_finalStatsFile(_statsFile){};
  bool getAllStatFiles();
  void extractStats();
  void printStats();
};

#endif

StatHandlers.cpp の内容:

#include <iostream>
#include "statHandler.h"
#include <sys/types.h>
#include <dirent.h>
#include <fstream>
#include <cstdlib>
using namespace std;


bool StatHandler::getAllStatFiles() {
  DIR* dirHandler;
  struct dirent* statsFile;
  if(dirHandler=opendir(_statsDir.c_str())){
    while(statsFile = readdir(dirHandler)){
      size_t size=strlen(statsFile->d_name);
      if(size>3) {
    char extension[4];
    memcpy(extension, &(statsFile->d_name[size-3]), 3);
    extension[3]='\0';
    if(strcmp(extension,".st") == 0) {
      _statFiles.push_back(_statsDir+statsFile->d_name);
    }
      }
    }
  } else {
    return false;
  }
  return true;
}


void StatHandler::extractStats() {
  getAllStatFiles();

  for(vector<string>::iterator fileIter=_statFiles.begin();fileIter!=_statFiles.end();++fileIter) {
    cout<<*(fileIter)<<"\n";
    ifstream in;
    in.open(fileIter->c_str(), ios::in);
    string term;
    while( in.is_open() && !getline(in, term, '\n').eof() ){
      size_t pos=0;
      if( (pos=term.find(" ")) != string::npos) {
    string keyword = term.substr(0,pos);
    string countStr=term.substr(pos+1);
    int count = atoi(countStr.c_str());
    if(_dailyStats.find(keyword) != _dailyStats.end()) {
      _dailyStats[keyword]+=count;
    } else {
       _dailyStats[keyword]=count;
    }
      }
      term.clear();
    }
    in.close();
  }  
}


void StatHandler::printStats() {
  ofstream out;
  out.open(_finalStatsFile.c_str(), ios::out);
  if(out) {
    for(map<string, int>::iterator statIter=_dailyStats.begin(); statIter!=_dailyStats.end();++statIter) {
      out<<statIter->first<<"\t"<<statIter->second<<"\n";
    }
    out.close();
  }

}


int main(int argc, char** argv) {
  StatHandler sh("/home/vinod/cpp/swig/","/home/vinod/cpp/swig/finalStats");
  sh.extractStats();
  sh.printStats();
  return 0;
}
4

1 に答える 1

2

実は、によって生成されるラッパーをコンパイルするのを忘れていました。swig

SWIG Docに記載されているように、次のことを行う必要があります。

    swig -perl -noproxy -c++ -o StatHandler_wrap.cxx StatHandler.i
    g++ -c StatHandler.cpp -fPIC
    g++ -c StatHandler_wrap.cxx -I /usr/lib64/perl5/5.8.8/x86_64-linux-thread-multi/CORE -fPIC
    g++ -O2 -shared -o StatHandler.so StatHandler.o StatHandler_wrap.o

次に、すべてをサブディレクトリに配置すれば、Vinod/期待LD_LIBRARY_PATH="Vinod" perl -MVinod::StatHandlerどおりに機能します。

注: さまざまなファイルの大文字小文字と複数形に一貫性がなかったため、編集しました。

于 2013-12-09T12:06:35.080 に答える