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 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 Client64. This subclass sends a request to the corresponding Server32 subclass to communicate with the 32-bit library.

echo32

An example of a 32-bit echo server.

echo64

An example of a 64-bit echo client.

cpp32

A wrapper around a 32-bit C++ library, cpp_lib32.

cpp64

Communicates with cpp_lib32 via the Cpp32 class.

fortran32

A wrapper around a 32-bit FORTRAN library, fortran_lib32.

fortran64

Communicates with fortran_lib32 via the Fortran32 class.

dotnet32

A wrapper around a 32-bit .NET library, dotnet_lib32.

dotnet64

Communicates with a 32-bit .NET library via the DotNet32 class.

kernel32

A wrapper around the 32-bit Windows kernel32.dll library.

kernel64

Communicates with kernel32.dll via the Kernel32 class.

labview32

A wrapper around a 32-bit LabVIEW library, labview_lib32.

labview64

Communicates with labview_lib32 via the Labview32 class.

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 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 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 Server32 subclass requires can be passed to the server from the client (see, 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 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:

Tip

If you find yourself repeatedly implementing each method in your 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 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 Server32 subclass or if you specify the wrong number of arguments or keyword arguments then a Server32Error will be raised.

There are situations where you may want to explicitly write some (or all) of the methods in the Client64 subclass in addition to (or instead of) implementing the __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 Client64 subclass to do error checking on the *args, **kwargs and/or on the result from the Server32 subclass (this allows you to have control over the type of Exception that is raised because if the Server32 subclass raises an exception then it is a Server32Error)

  • you want to modify the returned object from a particular Server32 method, for example, a list is returned but you want the corresponding Client64 method to return a numpy.ndarray