"全球锁定导致我的程序停止运行"

2024-09-27 04:18:46 发布

您现在位置:Python中文网/ 问答频道 /正文

每当我运行程序中有threading.Lock的部分时,我的程序就会完全停止运行(它不会崩溃,只是暂停)。你知道吗

我需要这个,因为它是一个服务器和多个客户端可能正在连接,并试图覆盖所有的数据在同一时间。在运行此程序时,只有一个线程处于活动状态,并且有一个客户端连接到它。我也将其用于Sqlite3数据库。我没有注意到它在那里造成了问题,因为尽管有全局锁,它似乎运行得非常好。所有这些都是以相同的格式完成的

with global_lock:

这里是线程开始的地方,以及我如何导入线程

from threading import Thread, Lock
global_lock = Lock()
while True:
    conn, addr = s.accept()
    connThread = Thread(target=handler, args=(conn, addr))
    connThread.daemon = True
    connThread.start()

这是程序

def addUser_InHash(username, password):

    print("Adding user in hash")
    hashID = 0
    hashString = username + password
    added = False
    for i in hashString:
        hashID += ord(i)
    hashID = hashID % hashKey
    print(hashID, "hashID in addUser")

    file = open("LoginHashTable.pickle", "rb+")
    if os.path.getsize("LoginHashTable.pickle") > 0:
        hashTable = pickle.load(file)
        print("File not empty,\nSaved Data:\n{}".format(hashTable))

    else:
        print("File empty")
        hashTable = {}
    count = 0

    while not added:
        print("while not count :", count)
        count += 1
        if hashID in hashTable:
            # If this index exists
            if hashID > (hashKey - 1):
                hashID = 0
            else:
                hashID += 1
                if hashID > (hashKey - 1):
                    hashID = 0

        else:
            print("User doesnt exist, adding to hash table")
            hashTable[hashID] = [username, password]
            print("New Added")
            print(hashTable)
            added = True

    print("Saving updated file addUser_InHash")

    if hashTable:
        with global_lock:
            file.seek(0)  # Move file pointer back to beginning of file
            file.truncate()  # Empty file by truncating to current file pointer position
            pickle.dump(hashTable, file)
            print(hashTable)
            print("Data saved")
            file.close()
    else:
        print("Hash table still empty, addUser_InHash")


def deleteUser_InHash(username, password):


    print("In deleteUser_InHash\nUsername: {}\nPassword: {}".format(username,password))
    dataFound = True
    hashID = 0
    count = 0
    hashString = username + password

    if os.path.getsize("LoginHashTable.pickle") > 0:
        file = open("LoginHashTable.pickle", "rb+")
        hashTable = pickle.load(file)
        print("File not empty,\nSaved Data:\n{}".format(hashTable))

    else:
        print("File empty")
        dataFound = False

    if dataFound:
        print("datafound true")
        for i in hashString:
            hashID += ord(i)
        hashID = hashID % hashKey
        print("hashID:",hashID)
        try:
            print("In try")
            while dataFound:
                print("In while, count:",count)
                if count == hashKey:
                    dataFound = False
                if hashTable[hashID] == [username,password]:
                    del hashTable[hashID]
                    print("Outside global lock")
                    with global_lock:
                        print("Inside global lock")
                        file.seek(0)  # Move file pointer back to beginning of file
                        file.truncate()  # Empty file by truncating to current file pointer position
                        pickle.dump(hashTable, file)
                        print(hashTable)
                        print("Data saved")
                        file.close()
                    print("Outside global lock")
                    print("Data updated")
                    print("User :", username, "deleted")
                    break
                else:
                    hashID += 1
                count += 1

        except IndexError:
            print("username could not be found")
            return False

    else:
        return False

这两个函数按以下顺序调用:

deleteUser_InHash(username1,password1)
addUser_InHash(username2,password2)

with global lock在deleteUser_InHash()函数中工作正常,但在addUser_InHash()中停止程序。你知道吗

程序挂在这里:

{33: ['foo', 'bar'], 0: ['toni', 'tony'], 34: ['bar', 'foo'], 118: ['fo', 'la'], 8: ['Tom', 'Tom'], 262: ['Kam', 'Kam'], 258: ['yes', 'no']}
Saving updated file addUser_InHash

把代码挂在线上:

if hashTable:
    with global_lock:

我知道这是真的,因为它从来没有得到打印声明:

print(hashTable)
print("Data saved")

在“addUser\u InHash()中”


Tags: 程序lockifcountusernamepasswordglobalelse
1条回答
网友
1楼 · 发布于 2024-09-27 04:18:46

大家注意:我变了

global_lock = Lock()

global_lock = RLock()

现在我的程序运行良好,我相信这与RLock允许线程多次重新获取锁有关,而普通锁似乎不能?你知道吗

资料来源:https://docs.python.org/3/library/threading.html#thread-objects

相关问题 更多 >

    热门问题