Const char *参数只给出第一个字符(在python3上)

时间:2017-08-16 13:10:56

标签: python c++ posix aio

我在c ++中创建了一个使用aio_write的非常简单的函数。在参数中,我获得了创建文件及其大小的路径。要创建新文件,请使用int open(const char *pathname, int flags, mode_t mode)

然后我使用:g++ -Wall -g -Werror aio_calls.cpp -shared -o aio_calls.so -fPIC -lrt将其编译为共享对象。

在python 2.7.5上,一切都很完美,但在python 3.4上我只得到路径的第一个字符。任何线索如何使它工作,所以它需要整个路径?

这是功能代码:

#include <sys/types.h>
#include <aio.h>
#include <fcntl.h>
#include <errno.h>
#include <iostream>
#include <string.h>
#include <unistd.h>
#include <stdio.h>
#include <fstream>
#include "aio_calls.h"
#define DLLEXPORT extern "C"

using namespace std;

DLLEXPORT int awrite(const char *path, int size)
{
    // create the file
    cout << path << endl;
    int file = open(path, O_WRONLY | O_CREAT, 0644);

    if (file == -1)
        return errno;

    // create the buffer
    char* buffer = new char[size];

    // create the control block structure
    aiocb cb;
    memset(buffer, 'a', size);
    memset(&cb, 0, sizeof(aiocb));
    cb.aio_nbytes = size;
    cb.aio_fildes = file;
    cb.aio_offset = 0;
    cb.aio_buf = buffer;

    // write!
    if (aio_write(&cb) == -1)
    {
        close(file);
        return errno;
    }

    // wait until the request has finished
    while(aio_error(&cb) == EINPROGRESS);

    // return final status for aio request
    int ret = aio_return(&cb);
    if (ret == -1)
        return errno;

    // now clean up
    delete[] buffer;
    close(file);

    return 0;
}

正如你所看到的,我在我的函数开头写了一个cout。这就是在python 2上发生的事情:

Python 2.7.5 (default, Nov  6 2016, 00:28:07) 
[GCC 4.8.5 20150623 (Red Hat 4.8.5-11)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from ctypes import cdll
>>> m=cdll.LoadLibrary('/home/administrator/Documents/aio_calls.so')
>>> m.awrite('aa.txt', 40)
aa.txt
0

这就是python 3上发生的事情:

Python 3.4.5 (default, May 29 2017, 15:17:55) 
[GCC 4.8.5 20150623 (Red Hat 4.8.5-11)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from ctypes import cdll
>>> m=cdll.LoadLibrary('/home/administrator/Documents/aio_calls.so')
>>> m.awrite('aa.txt', 40)
a
0

1 个答案:

答案 0 :(得分:0)

你是对的。它与python 3.x中的字符串编码和解码有关。我用谷歌搜索了这个网站帮助我弄明白了:docs

我将字符串转换为字节:

.zip

现在我的函数也在python 3中运行。

        string targetName = "E\\BACKUP\\BillGST.zip"; 
        ProcessStartInfo p = new ProcessStartInfo();
        p.FileName = "7Zip.exe";
        p.Arguments = "a " + targetName + " " + "E:\\BillGST.mdf " + "E:\\BillGST_log.ldf";
        p.WindowStyle = ProcessWindowStyle.Hidden;
        Process x = Process.Start(p);
        x.WaitForExit();

非常感谢@molbdnilo!