编码 - 这个功能是什么?

时间:2013-10-27 07:56:53

标签: encoding

我正在移植和更新旧应用,我遇到了这个功能。我想更多地了解它,但我实际上并不知道它叫什么。我假设它有一个流行的名字。有谁知道吗?

这个版本是用Python编写的,尽管它最初是用Java编写的。

def encode(msg): # msg is a string

  msg_len = len(msg)
  j = (msg_len + 6) / 7
  k = 0

  cbytesOutput = [ctypes.c_byte(0)]*(msg_len + j) # return is msg length + j bytes long

  for l in xrange(j):
    i1 = l * 8
    j1 = i1
    byte0 = ctypes.c_byte(-128)
    byte1 = ctypes.c_byte(1)
    k1 = 0
    while k1 < 7 and k < msg_len:
        byte2 = ctypes.c_byte(ord(msg[k]))
        if (byte2.value & 0xffffff80) != 0:
            byte0 = ctypes.c_byte(byte0.value | byte1.value)
        j1 += 1
        cbytesOutput[j1] = ctypes.c_byte(byte2.value | 0xffffff80)
        byte1 = ctypes.c_byte(byte1.value << 1)
        k += 1
        k1 += 1

    cbytesOutput[i1] = byte0

  return cbytesOutput

一般对算法有何评论?我正在考虑更换它。 Profiler说这是整个应用程序中最糟糕的功能(在最慢的代码路径上占60%)并且它也会使数据膨胀。

由于

0 个答案:

没有答案