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

How to perform file-locking on Windows without installing a new package

我在python包(brian2中添加了代码,该包在文件上放置一个排他锁,以防止出现争用情况。但是,由于此代码包含对fcntl的调用,因此它不适用于Windows。我有没有办法在不安装新软件包(如pywin32的情况下对Windows中的文件进行独占锁定?(我不想向brian2添加依赖项。)


因为MSVCRT是标准库的一部分,所以我假设您拥有它。MSVCRT(Microsoft Visual C运行时)模块仅实现MS RTL中的少量可用例程,但它确实实现了文件锁定。下面是一个例子:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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()不同,没有起始参数(或起始参数)。锁定或解锁调用仅在当前文件位置上操作。这意味着为了解锁正确的区域,我们必须将当前文件位置移回进行读或写之前的位置。解锁后,我们现在必须再次前进文件位置,回到读或写之后的位置,这样我们才能继续。

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