test_hylapex_named_pipe.py :  » Business-Application » hylaPEx » hylapex » library » named_pipes » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Business Application » hylaPEx 
hylaPEx » hylapex » library » named_pipes » test_hylapex_named_pipe.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import sys, os, tempfile, traceback

import ctypes as C

ON_WIN = sys.platform.startswith("win")

if ON_WIN:
   kernel32 = C.windll.kernel32

   VOID = C.c_void_p
   INT = C.c_int
   BOOL = C.c_long
   BYTE = C.c_ubyte
   WORD = C.c_ushort
   DWORD = C.c_ulong
   LONG = C.c_long
   HANDLE = C.c_void_p
   NULL = None

   PIPE_ACCESS_DUPLEX = 3
   PIPE_TYPE_MESSAGE = 4
   PIPE_READMODE_MESSAGE = 2
   PIPE_WAIT = 0
   PIPE_UNLIMITED_INSTANCES = 255
   GENERIC_READ = 0x80000000
   GENERIC_WRITE = 0x40000000
   OPEN_EXISTING = 3

INVALID_HANDLE_VALUE = -1

class NamedPipe(object):
    """ Work the the pipe
    """
    
    BUFSIZE = 4096

    def __init__(self, pipe_name, tmp_dir=None, mkfifo_path=None):
        """  Startup info. Passme the pipe_name and optionally, on POSIX
             the tmp_dir and the mkfifo exec path
        """
        self.tmp_dir = tempfile.tempdir
        self.mkfifo_path = mkfifo_path or "/usr/bin/mkfifo"
        
        self.set_pipe_name(pipe_name)
        
        if ON_WIN:
            self._win_h_pipe = -1

    #
    # Interface methods
    #
    def create_server_pipe(self):
        """ Create the server
        """
        if ON_WIN:
            return self._win_create_server_pipe()
        else:
            return self._posix_create_server_pipe()

    def create_client_pipe(self):
        """ Create the client
        """
        if ON_WIN:
            return self._win_create_client_pipe()
        else:
            # No work needed into the posix OS
            pass
    
    def read_pipe(self):
        """ Read from pipe
        """
        if ON_WIN:
            return self._win_read_pipe()
        else:
            return self._posix_read_pipe()

    def write_pipe(self, buffer_):
        """ Wrote into pipe
        """
        if ON_WIN:
            return self._win_write_pipe(buffer_)
        else:
            return self._posix_write_pipe(buffer_)

    def close_pipe(self):
        """ Close the pipe
        """
        if ON_WIN:
            return self._win_close_pipe(self._win_h_pipe)
        else:
            return self._posix_close_pipe()

    #
    # Property
    #
    def get_pipe_name(self):
        """ Return the pipe name
        """
        return self._pipe_name

    def set_pipe_name(self, pipe_name):
        """ Set the pipe name
        """
        self._pipe_name = pipe_name
        if ON_WIN:
           self._pipe_name_b = self._win_create_pipe_name(pipe_name)
        else:
            self._pipe_name = os.path.join(self.tmp_dir, self._pipe_name)
            
    pipe_name = property(get_pipe_name, set_pipe_name)

    #
    # Windows methods
    #
    def _win_create_server_pipe(self, pipe_name=None):
        """ Create the server pipe
        """
        if pipe_name is not None:
           self.set_pipe_name(pipe_name)

        h_pipe = kernel32.CreateNamedPipeA(self._pipe_name_b,
            PIPE_ACCESS_DUPLEX, PIPE_TYPE_MESSAGE|PIPE_READMODE_MESSAGE|PIPE_WAIT,
            PIPE_UNLIMITED_INSTANCES, self.BUFSIZE, self.BUFSIZE, 0, NULL)

        if h_pipe == INVALID_HANDLE_VALUE: ERROR = kernel32.GetLastError()
        else: ERROR = 0
        
        self._win_h_pipe = h_pipe

        return ERROR

    def _win_create_client_pipe(self, pipe_name=None):
        """ Attach a client to a already create pipe
        """
        if pipe_name is not None:
           self.set_pipe_name(pipe_name)

        h_pipe = kernel32.CreateFileA(self._pipe_name_b, GENERIC_READ| GENERIC_WRITE,
            0, NULL, OPEN_EXISTING, 0, NULL)

        if h_pipe == INVALID_HANDLE_VALUE: ERROR = kernel32.GetLastError()
        else: ERROR = 0
        
        self._win_h_pipe = h_pipe

        return ERROR
    
    def _win_read_pipe(self):
        """ Read from pipe and return if success and bytes read
        """
        buffer_ = C.create_string_buffer(self.BUFSIZE)
        buffer_read = DWORD()
        success = kernel32.ReadFile(self._win_h_pipe, buffer_, len(buffer_),
                 C.byref(buffer_read), NULL)

        return success, buffer_.value, buffer_read.value
    
    def _win_write_pipe(self, buffer_):
        """ Write the buffer into the pipe
        """
        buffer_ = C.create_string_buffer(buffer_)
        buffer_written = DWORD()

        success = kernel32.WriteFile(self._win_h_pipe, buffer_,
                len(buffer_), C.byref(buffer_written), NULL)
        
        return success, buffer_written.value

    def _win_close_pipe(self, h_pipe):
        """ Close the pipe
        """
        return kernel32.CloseHandle(h_pipe)

    def _win_create_pipe_name(self, pipe_name):
        """ Create the right name for the pipe
        """
        return C.c_char_p("\\\\.\\pipe\\%s" % pipe_name)

    #
    # Posix methods
    #
    def _posix_create_server_pipe(self):
        """ Create a posix pipe
        """
        try:
            os.mkfifo(self._pipe_name)
            h_pipe = 1
            ret_val = 0
        except:
            h_pipe = INVALID_HANDLE_VALUE
            ret_val = traceback.format_exc()
            
        return h_pipe, ret_val
    
    def _posix_read_pipe(self):
        """ Read from pipe
        """
        pipe = open(self._pipe_name, "rb")
        buffer_ = pipe.read(self.BUFSIZE)
        pipe.close()
        return buffer_, len(buffer_)

    def _posix_write_pipe(self, buffer_):
        """ Write to pipe
        """
        try:
            open(self._pipe_name, "wb").write(buffer_)
            res = 1; num_bytest = len(buffer_)
        except:
            res = 1; num_bytest = 0

        return res, num_bytest

    def _posix_close_pipe(self):
        """ Close and remove the pipe
        """
        try:
            return os.remove(self._pipe_name)
        except:
            return 1

if __name__ == "__main__":
   np_cli = NamedPipe("hylapex_michele")
   msg_err_cli = np_cli.create_client_pipe()
   #np_cli.write_pipe("Luca cazzone")
   path = np_cli.read_pipe()[1]
   print path
   np_cli.write_pipe(path)
   np_cli.close_pipe()

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.