Skip to content

Latest commit

 

History

History
200 lines (147 loc) · 8.06 KB

interprocess_communication.rst

File metadata and controls

200 lines (147 loc) · 8.06 KB

Access a 32-bit library in 64-bit Python

This section of the documentation shows examples for how a module running within a 64-bit Python interpreter can communicate with a 32-bit shared library by using inter-process communication. The method that is used to allow a 32-bit and a 64-bit process to exchange information is by use of a file. The pickle module is used to (de)serialize Python objects.

The following table summarizes the example modules that are available.

Modules that end in 32 contain a class that is a subclass of ~msl.loadlib.server32.Server32. This subclass is a wrapper around a 32-bit library and is hosted on a 32-bit server.

Modules that end in 64 contain a class that is a subclass of ~msl.loadlib.client64.Client64. This subclass sends a request to the corresponding ~msl.loadlib.server32.Server32 subclass to communicate with the 32-bit library.

~msl.examples.loadlib.echo32 ~msl.examples.loadlib.echo64 ~msl.examples.loadlib.cpp32 ~msl.examples.loadlib.cpp64 ~msl.examples.loadlib.fortran32 ~msl.examples.loadlib.fortran64 ~msl.examples.loadlib.dotnet32 ~msl.examples.loadlib.dotnet64 ~msl.examples.loadlib.kernel32 ~msl.examples.loadlib.kernel64 ~msl.examples.loadlib.labview32 ~msl.examples.loadlib.labview64

The following illustrates a minimal usage example. The my_lib.dll file is a 32-bit C++ library that cannot be loaded from a module that is running within a 64-bit Python interpreter. This library gets loaded by the MyServer class which is running within a 32-bit process. MyServer hosts the library at a specified host address and port number. Any class that is a subclass of ~msl.loadlib.server32.Server32 must provide two arguments in its constructor: host and port. Including keyword arguments in the constructor is optional.

# my_server.py

from msl.loadlib import Server32

class MyServer(Server32):
    """Wrapper around a 32-bit C++ library 'my_lib.dll' that has an 'add' and 'version' function."""

    def __init__(self, host, port, **kwargs):
        # Load the 'my_lib' shared-library file using ctypes.CDLL
        super(MyServer, self).__init__('my_lib.dll', 'cdll', host, port)

        # The Server32 class has a 'lib' property that is a reference to the ctypes.CDLL object

        # Call the version function from the library
        self.version = self.lib.version()

    def add(self, a, b):
        # The shared library's 'add' function takes two integers as inputs and returns the sum
        return self.lib.add(a, b)

MyClient is a subclass of ~msl.loadlib.client64.Client64 which sends a request to MyServer to call the add function in the shared library and to get the value of version. MyServer processes the request and sends the response back to MyClient.

# my_client.py

from msl.loadlib import Client64

class MyClient(Client64):
    """Call a function in 'my_lib.dll' via the 'MyServer' wrapper."""

    def __init__(self):
        # Specify the name of the Python module to execute on the 32-bit server (i.e., 'my_server')
        super(MyClient, self).__init__(module32='my_server')

    def add(self, a, b):
        # The Client64 class has a 'request32' method to send a request to the 32-bit server
        # Send the 'a' and 'b' arguments to the 'add' method in MyServer
        return self.request32('add', a, b)

    def version(self):
        # Get the version
        return self.request32('version')

The MyClient class would then be used as follows

>>> from my_client import MyClient
>>> c = MyClient()
>>> c.add(1, 2)
3
>>> c.version()
1

Keyword arguments, kwargs, that the ~msl.loadlib.server32.Server32 subclass requires can be passed to the server from the client (see, ~msl.loadlib.client64.Client64). However, the data types for the values of the kwargs are not preserved (since they are ultimately parsed from the command line). Therefore, all data types for the values of the kwargs will be of type str at the constructor of the ~msl.loadlib.server32.Server32 subclass. These kwargs are the only arguments where the data type is not preserved for the client-server protocol. See the "Echo" example which shows that data types are preserved between client-server method calls.

The following examples are provided for communicating with different libraries that were compiled in different programming languages or using different calling conventions:

"Echo" <tutorials_echo> C++ <tutorials_cpp> FORTRAN <tutorials_fortran> Microsoft .NET Framework <tutorials_dotnet> Windows __stdcall <tutorials_stdcall> LabVIEW <tutorials_labview>

Tip

If you find yourself repeatedly implementing each method in your ~msl.loadlib.client64.Client64 subclass in the following way (i.e., you are essentially duplicating the code for each method)

from msl.loadlib import Client64

class LinearAlgebra(Client64):

    def __init__(self):
        super(LinearAlgebra, self).__init__(module32='linear_algebra_32.py')

    def solve(self, matrix, vector):
        return self.request32('solve', matrix, vector)

    def eigenvalues(self, matrix):
        return self.request32('eigenvalues', matrix)

    def stdev(self, data, as_population=True)
        return self.request32('stdev', data, as_population=as_population)

    def determinant(self, matrix):
        return self.request32('determinant', matrix)

    def cross_product(self, vector1, vector2):
        return self.request32('cross_product', vector1, vector2)

Then you can simplify the implementation by defining your ~msl.loadlib.client64.Client64 subclass as

from msl.loadlib import Client64

class LinearAlgebra(Client64):

    def __init__(self):
        super(LinearAlgebra, self).__init__(module32='linear_algebra_32.py')

    def __getattr__(self, name):
        def send(*args, **kwargs):
            return self.request32(name, *args, **kwargs)
        return send

and you will get the same behaviour. If you call a method that does not exist on the ~msl.loadlib.server32.Server32 subclass or if you specify the wrong number of arguments or keyword arguments then a ~msl.loadlib.exceptions.Server32Error will be raised.

There are situations where you may want to explicitly write some (or all) of the methods in the ~msl.loadlib.client64.Client64 subclass in addition to (or instead of) implementing the ~object.__getattr__ method, e.g.,

  • you are writing an API for others to use and you want features like autocomplete or docstrings to be available in the IDE that the person using your API is using
  • you want the ~msl.loadlib.client64.Client64 subclass to do error checking on the *args, **kwargs and/or on the result from the ~msl.loadlib.server32.Server32 subclass (this allows you to have control over the type of Exception <bltin-exceptions> that is raised because if the ~msl.loadlib.server32.Server32 subclass raises an exception then it is a ~msl.loadlib.exceptions.Server32Error)
  • you want to modify the returned object from a particular ~msl.loadlib.server32.Server32 method, for example, a list is returned but you want the corresponding ~msl.loadlib.client64.Client64 method to return a numpy.ndarray