如何在不安装新软件包的情况下在Windows上执行文件锁定

时间:2015-05-25 14:25:16

标签: python locking pywin32 fcntl

我已将code添加到Python包(brian2)中,该包对文件设置了独占锁以防止竞争条件。但是,因为此代码包含对pywin32的调用,所以它在Windows上不起作用。有没有办法让我在Windows中的文件上放置独占锁,而无需安装新的包,如brian2? (我不想在{{1}}添加依赖项。)

1 个答案:

答案 0 :(得分:3)

由于msvcrt是标准库的一部分,我假设你拥有它。 msvcrt(MicroSoft Visual C运行时)模块仅实现MS RTL中可用的少量例程,但它确实实现了文件锁定。 这是一个例子:

import msvcrt, os, sys

REC_LIM = 20

pFilename = "rlock.dat"
fh = open(pFilename, "w")

for i in range(REC_LIM):

    # Here, construct data into "line"

    start_pos  = fh.tell()    # Get the current start position   

    # Get the lock - possible blocking call   
    msvcrt.locking(fh.fileno(), msvcrt.LK_RLCK, len(line)+1)
    fh.write(line)            #  Advance the current position
    end_pos = fh.tell()       #  Save the end position

    # Reset the current position before releasing the lock 
    fh.seek(start_pos)        
    msvcrt.locking(fh.fileno(), msvcrt.LK_UNLCK, len(line)+1)
    fh.seek(end_pos)          # Go back to the end of the written record

fh.close()

显示的示例与fcntl.flock()具有相似的功能,但代码非常不同。仅支持独占锁。 与fcntl.flock()不同,没有开始参数(或从哪里)。锁定或解锁呼叫仅在当前文件位置上运行。这意味着为了解锁正确的区域,我们必须将当前文件位置移回到我们进行读取或写入之前的位置。解锁后,我们现在必须再次提升文件位置,回到读取或写入后的位置,以便我们继续。

如果我们解锁一个没有锁定的区域,那么我们就不会收到错误或异常。