简体   繁体   中英

Windows pipes: Write from C - read in Python

I'd like to transmit a few bytes of data though a pipe to plot it from python.

I started with some snippets I found here but I cant get them working.

I've created the pipe like this:

int main(void){

HANDLE hPipe;
char buffer[24];
DWORD dwRead;


hPipe = CreateNamedPipe(TEXT("\\\\.\\pipe\\Pipe"),
                        PIPE_ACCESS_DUPLEX | PIPE_TYPE_BYTE | PIPE_READMODE_BYTE,   // FILE_FLAG_FIRST_PIPE_INSTANCE is not needed but forces CreateNamedPipe(..) to fail if the pipe already exists...
                        PIPE_WAIT,
                        1,
                        24 * 16,
                        24 * 16,
                        NMPWAIT_USE_DEFAULT_WAIT,
                        NULL);


while (hPipe != INVALID_HANDLE_VALUE)
{
    if (ConnectNamedPipe(hPipe, NULL) != FALSE)   // wait for someone to connect to the pipe
    {
        while (ReadFile(hPipe, buffer, sizeof(buffer) - 1, &dwRead, NULL) != FALSE)
        {
            /* add terminating zero */
            buffer[dwRead] = '\0';

            /* do something with data in buffer */
            printf("%s", buffer);
        }
    }

    DisconnectNamedPipe(hPipe);
}

return 0;}

If I execute the following code it writes but the read part blocks:

  import time
  import struct

  f = open(r'\\.\\pipe\\Pipe', 'r+b', 0)
  i = 1
  sss='ccccc'
  while True:

   s = sss.format(i)
   i += 1

   f.write(struct.pack('I', len(s)) + s)   # Write str length and str
   f.seek(0)                               # EDIT: This is also necessary
   print 'Wrote:', s

   n = struct.unpack('I', f.read(4))[0]    # Read str length
   s = f.read(n)                           # Read str
   f.seek(0)                               # Important!!!
   print 'Read:', s
   time.sleep(2)

I tried commenting the ReadFile part in the C code but It did not work. Is there any other way to achieve this? I want to write from C and read from python. I tried writing into the pipe with CreateFile (from C) and it worked as expected. I only need the read part with python.

On most systems pipe is one-directional and you use two pipes to get two-directional (bidirectional) connection.

In your Python code you can open two connections and then you don't need seek

import time
import struct

wf = open(r'Pipe', 'wb', 0)
rf = open(r'Pipe', 'rb', 0)

i = 0
template = 'Hello World {}'

while True:

   i += 1
   text = template.format(i)

   # write text length and text
   wf.write(struct.pack('I', len(text))) 
   wf.write(text)   
   print 'Wrote:', text

   # read text length and text
   n = struct.unpack('I', rf.read(4))[0]
   read = rf.read(n)
   print 'Read:', read

   time.sleep(2)

EDIT: tested on Linux Mint 17, Python 3.4 & 2.7

I've solved it with PyWin32( http://sourceforge.net/projects/pywin32/files/ ) which seems to be the right tool for windows. I would rather use something more cross-plataform oriented but it has solved the problem.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM