#include <File_Lock.h>
Collaboration diagram for ACE_File_Lock:
Public Methods | |
ACE_File_Lock (ACE_HANDLE handle=ACE_INVALID_HANDLE, int unlink_in_destructor=1) | |
ACE_File_Lock (const ACE_TCHAR *filename, int flags, mode_t mode=0, int unlink_in_destructor=1) | |
int | open (const ACE_TCHAR *filename, int flags, mode_t mode=0) |
~ACE_File_Lock (void) | |
Remove a File lock by releasing it and closing down the <handle_>. | |
int | remove (int unlink_file=1) |
int | acquire (short whence=0, off_t start=0, off_t len=1) |
int | tryacquire (short whence=0, off_t start=0, off_t len=1) |
int | release (short whence=0, off_t start=0, off_t len=1) |
Unlock a readers/writer lock. | |
int | acquire_write (short whence=0, off_t start=0, off_t len=1) |
int | tryacquire_write (short whence=0, off_t start=0, off_t len=1) |
int | tryacquire_write_upgrade (short whence=0, off_t start=0, off_t len=1) |
int | acquire_read (short whence=0, off_t start=0, off_t len=1) |
int | tryacquire_read (short whence=0, off_t start=0, off_t len=1) |
ACE_HANDLE | get_handle (void) const |
Get underlying <ACE_HANDLE> for the file. | |
void | set_handle (ACE_HANDLE) |
void | dump (void) const |
Dump state of the object. | |
Public Attributes | |
ACE_ALLOC_HOOK_DECLARE | |
Declare the dynamic allocation hooks. | |
Protected Attributes | |
ACE_OS::ace_flock_t | lock_ |
Locking structure for OS record locks. | |
int | removed_ |
int | unlink_in_destructor_ |
Private Methods | |
void | operator= (const ACE_File_Lock &) |
ACE_File_Lock (const ACE_File_Lock &) |
Allows us to "adapt" the UNIX file locking mechanisms to work with all of our Guard stuff...
|
Set the <handle_> of the File_Lock to <handle>. Note that this constructor assumes ownership of the <handle> and will close it down in <remove>. If you want the <handle> to stay open when <remove> is called make sure to call <dup> on the <handle>. If you don't want the file unlinked in the destructor pass a zero value for <unlink_in_destructor>. |
|
Open the <filename> with <flags> and <mode> and set the result to <handle_>. If you don't want the file unlinked in the destructor pass a zero value for <unlink_in_destructor>. |
|
Remove a File lock by releasing it and closing down the <handle_>.
|
|
|
|
Note, for interface uniformity with other synchronization wrappers we include the <acquire> method. This is implemented as a write-lock to be on the safe-side... |
|
Acquire a read lock, but block if a writer hold the lock. Returns -1 on failure. If we "failed" because someone else already had the lock, <errno> is set to <EBUSY>. |
|
Acquire a write lock, but block if any readers or a writer hold the lock. |
|
Dump state of the object.
|
|
Get underlying <ACE_HANDLE> for the file.
|
|
Open the <filename> with <flags> and <mode> and set the result to <handle_>. |
|
|
|
Unlock a readers/writer lock.
|
|
Remove a File lock by releasing it and closing down the <handle_>. If <unlink_file> is non-0 then we unlink the file. |
|
Set underlying <ACE_HANDLE>. Note that this method assumes ownership of the <handle> and will close it down in <remove>. If you want the <handle> to stay open when <remove> is called make sure to call <dup> on the <handle> before closing it. You are responsible for the closing the existing <handle> before overwriting it. |
|
Note, for interface uniformity with other synchronization wrappers we include the <tryacquire> method. This is implemented as a write-lock to be on the safe-side... Returns -1 on failure. If we "failed" because someone else already had the lock, <errno> is set to <EBUSY>. |
|
Conditionally acquire a read lock (i.e., won't block). Returns -1 on failure. If we "failed" because someone else already had the lock, <errno> is set to <EBUSY>. |
|
Conditionally acquire a write lock (i.e., won't block). Returns -1 on failure. If we "failed" because someone else already had the lock, <errno> is set to <EBUSY>. |
|
Conditionally upgrade to a write lock (i.e., won't block). Returns -1 on failure. If we "failed" because someone else already had the lock, <errno> is set to <EBUSY>. |
|
Declare the dynamic allocation hooks.
|
|
Locking structure for OS record locks.
|
|
Keeps track of whether <remove> has been called yet to avoid multiple <remove> calls, e.g., explicitly and implicitly in the destructor. This flag isn't protected by a lock, so make sure that you don't have multiple threads simultaneously calling <remove> on the same object, which is a bad idea anyway... |
|
Keeps track of whether to unlink the underlying file in the destructor. |