我已经将code添加到Python包(brian2
)中,该包对文件进行独占锁定以防止竞争条件.但是,因为此代码包含对fcntl的调用,所以它在Windows上不起作用.有没有办法让我在不安装新软件包的情况下在Windows中对文件进行独占锁定,比如pywin32? (我不想为brian2添加依赖项.)
解决方法:
由于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()不同,没有start参数(或whence).锁定或解锁呼叫仅在当前文件位置上运行.这意味着为了解锁正确的区域,我们必须将当前文件位置移回到我们进行读取或写入之前的位置.解锁后,我们现在必须再次提升文件位置,回到读取或写入后的位置,这样我们就可以继续了.
如果我们解锁一个没有锁定的区域,那么我们就不会收到错误或异常.