使用swig到python modu的c++类

2024-05-15 04:53:06 发布

您现在位置:Python中文网/ 问答频道 /正文

我需要将这个c++类转换成python模块并给出错误 /*异常h*/

#ifndef AREXCRYPT_H
#define AREXCRYPT_H

//Qt
#include <QString>
#include <QVector>
#include <QFlags>
//App
#include "singleton.h"

class ArexCrypt: public Singleton<ArexCrypt>
{
friend class Singleton<ArexCrypt>;

public:
enum Compression {
    IfReducedCompress,
    AlwaysCompress,
    NeverCompress
};
enum IntegrityCheck {
    NoCheck,
    ChecksumCheck,
    HashCheck
};
enum Error {
    NoneError,
    NoKeyError,
    NoDataError,
    UnknownVersionError,
    IntegrityError
};
enum CryptoFlag{
    NoneFlag = 0,
    CompressedFlag = 0x01,
    ChecksumFlag = 0x02,
    HashFlag = 0x04
};

Q_DECLARE_FLAGS(CryptoFlags, CryptoFlag);

void setKey(quint64 pKey);
Compression CompressionMode() const;
void setCompressionMode(Compression pMode);
IntegrityCheck IntegrityProtectionMode() const;
void setIntegrityProtectionMode(IntegrityCheck pMode);
Error LastError() const;

//METHODS
QString EncryptToString(const QString &pText);
QString DecryptToString(const QString &pEncryptedText);
QString GenerateIntegrityKey(const QString &pText);
bool CheckIntegrityKey(const QString &pText);

private:
//Data
quint64 key;
QVector<char> keyParts;
Compression compressionMode;
IntegrityCheck protectionMode;
Error lastError;
bool showConsoleMessages;

//CONTRUCTORS AND DESTROYERS
ArexCrypt();

//METHODS
void SplitKey();
void EncryptArray(QByteArray &pArray);
void DecryptArray(QByteArray &pArray);
QByteArray GenerateIntegrityData(QByteArray dataArray, CryptoFlags &flags);
QByteArray EncryptToByteArray(QByteArray pTextArray);
QByteArray DecryptToByteArray(QByteArray pEncryptedArray);
//OTHERS
QString EncryptToString(QByteArray pTextArray);
QString DecryptToString(QByteArray pEncryptedArray);
QByteArray EncryptToByteArray(const QString &pText);
QByteArray DecryptToByteArray(const QString &pEncryptedText);
};

Q_DECLARE_OPERATORS_FOR_FLAGS(ArexCrypt::CryptoFlags);

#endif // AREXCRYPT_H

我很兴奋

^{pr2}$

/*单例.h*/

#ifndef SINGLETON_H
#define SINGLETON_H

template <typename T> struct Singleton
{
    static T &instance()
    {
        static T m_instance;
        return m_instance;
    }
protected:
    Singleton() { }
};

#endif // SINGLETON_H

/*单身。我*/

/* singleton.i */
%module singleton
%{
#include "singleton.h"
%}

%include "singleton.h"
%template(intSingleton) Singleton<int>;

当我转换成python时,我在控制台上得到这个

swig -c++ -python arexcrypt.i

arexcrypt.h(11):警告401:对基类“Singleton<;arexcrypt>;”一无所知。忽略。 arexcrypt.h(11):警告401:可能您忘了使用%template实例化“Singleton<;arexcrypt>;”。 arexcrypt.h(40):警告504:函数arexcrypt::Q_DECLARE_FLAGS(CryptoFlags,arexcrypt::CryptoFlag)必须具有返回类型。忽略。 arexcrypt.h(81):警告503:除非重命名为有效标识符,否则无法包装“arexcrypt::cryptflags”。在

gcc -c arexcrypt_wrap.cxx -o arexcrypt.o -fpic -std=c++0x

我明白了

arexcrypt_wrap.cxx:1: warning: -fpic ignored for target (all code is position independent)
arexcrypt_wrap.cxx:171:21: error: Python.h: No such file or directory
arexcrypt_wrap.cxx:3027:4: error: #error "This python version requires swig to be run with the '-classic' option"
In file included from arexcrypt_wrap.cxx:3124:
arexcrypt.h:5:19: error: QString: No such file or directory
arexcrypt.h:6:19: error: QVector: No such file or directory
arexcrypt.h:7:18: error: QFlags: No such file or directory
arexcrypt_wrap.cxx:801: error: 'PyObject' was not declared in this scope
arexcrypt_wrap.cxx:801: error: 'str' was not declared in this scope
arexcrypt_wrap.cxx:802: error: expected ',' or ';' before '{' token
arexcrypt_wrap.cxx:825: error: expected initializer before '*' token
arexcrypt_wrap.cxx:851: error: expected initializer before '*' token
arexcrypt_wrap.cxx:905: error: expected initializer before '*' token
arexcrypt_wrap.cxx:920: error: 'inquiry' does not name a type
arexcrypt_wrap.cxx:921: error: 'intargfunc' does not name a type
arexcrypt_wrap.cxx:922: error: 'intintargfunc' does not name a type
arexcrypt_wrap.cxx:923: error: 'intobjargproc' does not name a type
arexcrypt_wrap.cxx:924: error: 'intintobjargproc' does not name a type
arexcrypt_wrap.cxx:925: error: 'getreadbufferproc' does not name a type
arexcrypt_wrap.cxx:926: error: 'getwritebufferproc' does not name a type
arexcrypt_wrap.cxx:927: error: 'getsegcountproc' does not name a type
arexcrypt_wrap.cxx:928: error: 'getcharbufferproc' does not name a type
arexcrypt_wrap.cxx:929: error: 'PyObject' was not declared in this scope
arexcrypt_wrap.cxx:929: error: 'x' was not declared in this scope
arexcrypt_wrap.cxx:929: error: expected primary-expression before 'void'
arexcrypt_wrap.cxx:929: error: initializer expression list treated as compound expression
arexcrypt_wrap.cxx:930: error: expected ',' or ';' before '{' token
In file included from c:\mingw64_4.4.6\bin\../lib/gcc/x86_64-w64-mingw32/4.4.6/../../../../x86_64-w64-mingw32/include/c++/4.4.6/stdexcept:38,
                 from arexcrypt_wrap.cxx:3051:
c:\mingw64_4.4.6\bin\../lib/gcc/x86_64-w64-mingw32/4.4.6/../../../../x86_64-w64-mingw32/include/c++/4.4.6/exception:35: error: expected declaration before end of line

有人知道会发生什么吗?我做错了


Tags: nameincludetypenotcxxerrorexpectedsingleton
1条回答
网友
1楼 · 发布于 2024-05-15 04:53:06

作为一个规则:总是先看看第一个错误-这很可能是你的罪魁祸首。在

对你来说

arexcrypt_wrap.cxx:1: warning: -fpic ignored for target (all code is position independent)
arexcrypt_wrap.cxx:171:21: error: Python.h: No such file or directory

您丢失了python开发文件。在

相关问题 更多 >

    热门问题