本文整理汇总了Python中space.Space.commit方法的典型用法代码示例。如果您正苦于以下问题:Python Space.commit方法的具体用法?Python Space.commit怎么用?Python Space.commit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类space.Space
的用法示例。
在下文中一共展示了Space.commit方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: store
# 需要导入模块: from space import Space [as 别名]
# 或者: from space.Space import commit [as 别名]
def store(key, message, in_path, out_path):
epub = Epub()
epub.expand(in_path)
space = Space(epub)
binary_message = ''.join([format(ord(x), '0'+str(CHAR_BIT_SIZE)+'b') for x in message])
message_size = format(len(binary_message), 'b')
header_size = format(len(message_size), '0'+str(HEADER_BIT_SIZE)+'b')
bits_to_write = header_size + message_size + binary_message
if (len(space)) < len(bits_to_write):
print 'Error, not enough space on the epub file'
line_order = LineOrder(key, len(space))
add_noise(space)
for bit in bits_to_write:
space[line_order.next()] = (bit == '1')
space.commit()
epub.contract(out_path)