অন্যান্য সমাধানগুলি প্রচুর বহিরাগত কোড বেসগুলি উদ্ধৃত করে। আপনি যদি নিজেরাই এটি করতে পছন্দ করেন তবে এখানে ক্রস-প্ল্যাটফর্ম সমাধানের জন্য কিছু কোড রয়েছে যা লিনাক্স / ডস সিস্টেমে সম্পর্কিত ফাইল লকিং সরঞ্জাম ব্যবহার করে।
try:
# Posix based file locking (Linux, Ubuntu, MacOS, etc.)
import fcntl, os
def lock_file(f):
fcntl.lockf(f, fcntl.LOCK_EX)
def unlock_file(f):
fcntl.lockf(f, fcntl.LOCK_UN)
except ModuleNotFoundError:
# Windows file locking
import msvcrt, os
def file_size(f):
return os.path.getsize( os.path.realpath(f.name) )
def lock_file(f):
msvcrt.locking(f.fileno(), msvcrt.LK_RLCK, file_size(f))
def unlock_file(f):
msvcrt.locking(f.fileno(), msvcrt.LK_UNLCK, file_size(f))
# Class for ensuring that all file operations are atomic, treat
# initialization like a standard call to 'open' that happens to be atomic.
# This file opener *must* be used in a "with" block.
class AtomicOpen:
# Open the file with arguments provided by user. Then acquire
# a lock on that file object (WARNING: Advisory locking).
def __init__(self, path, *args, **kwargs):
# Open the file and acquire a lock on the file before operating
self.file = open(path,*args, **kwargs)
# Lock the opened file
lock_file(self.file)
# Return the opened file object (knowing a lock has been obtained).
def __enter__(self, *args, **kwargs): return self.file
# Unlock the file and close the file object.
def __exit__(self, exc_type=None, exc_value=None, traceback=None):
# Flush to make sure all buffered contents are written to file.
self.file.flush()
os.fsync(self.file.fileno())
# Release the lock on the file.
unlock_file(self.file)
self.file.close()
# Handle exceptions that may have come up during execution, by
# default any exceptions are raised to the user.
if (exc_type != None): return False
else: return True
এখন, AtomicOpen
এমন একটি with
ব্লকে ব্যবহার করা যেতে পারে যেখানে কেউ সাধারণত একটি open
বিবৃতি ব্যবহার করে ।
সতর্কতা: যদি উইন্ডোজ এবং পাইথনগুলিতে চলতে থাকে প্রস্থান বলার আগে ক্র্যাশ হয়, তবে লক আচরণটি কী হবে তা আমি নিশ্চিত নই।
সতর্কতা: এখানে সরবরাহ করা লকিং পরামর্শমূলক, পরম নয়। সমস্ত সম্ভাব্য প্রতিযোগিতামূলক প্রক্রিয়াগুলিতে অবশ্যই "অ্যাটমিক ওপেন" শ্রেণিটি ব্যবহার করা উচিত।