connectors/ConnectorBase.py
author Edouard Tisserant <edouard@beremiz.fr>
Tue, 20 Feb 2024 11:42:02 +0100
changeset 3893 5b2f3a915a43
parent 3881 0b3ac94f494c
child 3884 34da877021d5
permissions -rw-r--r--
GCC toolchain: Add {SYSROOT} substitution with support for whitespaces

Any instance of {SYROOT} string in config's CFLAGS and LDFLAGS is replaced by sysroot path obtained from "gcc -print-sysroot"
#!/usr/bin/env python
# -*- coding: utf-8 -*-

# See COPYING file for copyrights details.


import hashlib
from runtime import PlcStatus


class ConnectorBase(object):

    chuncksize = 1024*1024

    PLCObjDefaults = {
        "StartPLC": False,
        "GetTraceVariables": (PlcStatus.Broken, None),
        "GetPLCstatus": (PlcStatus.Broken, None),
        "RemoteExec": (-1, "RemoteExec script failed!"),
        "GetVersions": "*** Unknown ***"
    }

    def BlobFromFile(self, filepath, seed):
        s = hashlib.new('md5')
        s.update(seed.encode())
        blobID = self.SeedBlob(seed.encode())
        with open(filepath, "rb") as f:
            while blobID == s.digest():
                chunk = f.read(self.chuncksize)
                if len(chunk) == 0:
                    return blobID
                blobID = self.AppendChunkToBlob(chunk, blobID)
                s.update(chunk)
        raise IOError("Data corrupted during transfer or connection lost")