libcamera
v0.3.2+116-83c5ad0f
Supporting cameras in Linux since 2019
|
RAII-style wrapper for file descriptors. More...
Public Member Functions | |
SharedFD (const int &fd=-1) | |
Create a SharedFD copying a given fd. More... | |
SharedFD (int &&fd) | |
Create a SharedFD taking ownership of a given fd. More... | |
SharedFD (UniqueFD fd) | |
Create a SharedFD taking ownership of a given UniqueFD fd. More... | |
SharedFD (const SharedFD &other) | |
Copy constructor, create a SharedFD from a copy of other. More... | |
SharedFD (SharedFD &&other) | |
Move constructor, create a SharedFD by taking over other. More... | |
~SharedFD () | |
Destroy the SharedFD instance. More... | |
SharedFD & | operator= (const SharedFD &other) |
Copy assignment operator, replace the wrapped file descriptor with a copy of other. More... | |
SharedFD & | operator= (SharedFD &&other) |
Move assignment operator, replace the wrapped file descriptor by taking over other. More... | |
bool | isValid () const |
Check if the SharedFD instance is valid. More... | |
int | get () const |
Retrieve the numerical file descriptor. More... | |
UniqueFD | dup () const |
Duplicate a SharedFD. More... | |
RAII-style wrapper for file descriptors.
The SharedFD class provides RAII-style lifetime management of file descriptors with an efficient mechanism for ownership sharing. At its core, an internal Descriptor object wraps a file descriptor (expressed as a signed integer) with an RAII-style interface. The Descriptor is then implicitly shared with all SharedFD instances constructed as copies.
When constructed from a numerical file descriptor, the SharedFD instance either duplicates or takes over the file descriptor:
The copy constructor and assignment operator create copies that share the Descriptor, while the move versions of those functions additionally make the other SharedFD invalid. When the last SharedFD that references a Descriptor is destroyed, the file descriptor is closed.
The numerical file descriptor is available through the fd() function. All SharedFD instances created as copies of a SharedFD will report the same fd() value. Callers can perform operations on the fd(), but shall never close it manually.
|
explicit |
Create a SharedFD copying a given fd.
[in] | fd | File descriptor |
Construct a SharedFD from a numerical file descriptor by duplicating the fd, and take ownership of the copy. The original fd is left untouched, and the caller is responsible for closing it when appropriate. The duplicated file descriptor will be closed automatically when all SharedFD instances that reference it are destroyed.
If the fd is negative, the SharedFD is constructed as invalid and the fd() function will return -1.
|
explicit |
Create a SharedFD taking ownership of a given fd.
[in] | fd | File descriptor |
Construct a SharedFD from a numerical file descriptor by taking ownership of the fd. The original fd is set to -1 and shall not be touched by the caller anymore. In particular, the caller shall not close the original fd manually. The duplicated file descriptor will be closed automatically when all SharedFD instances that reference it are destroyed.
If the fd is negative, the SharedFD is constructed as invalid and the fd() function will return -1.
|
explicit |
libcamera::SharedFD::SharedFD | ( | const SharedFD & | other | ) |
Copy constructor, create a SharedFD from a copy of other.
[in] | other | The other SharedFD |
Copying a SharedFD implicitly shares ownership of the wrapped file descriptor. The original SharedFD is left untouched, and the caller is responsible for destroying it when appropriate. The wrapped file descriptor will be closed automatically when all SharedFD instances that reference it are destroyed.
libcamera::SharedFD::SharedFD | ( | SharedFD && | other | ) |
Move constructor, create a SharedFD by taking over other.
[in] | other | The other SharedFD |
Moving a SharedFD moves the reference to the wrapped descriptor owned by other to the new SharedFD. The other SharedFD is invalidated and its fd() function will return -1. The wrapped file descriptor will be closed automatically when all SharedFD instances that reference it are destroyed.
libcamera::SharedFD::~SharedFD | ( | ) |
UniqueFD libcamera::SharedFD::dup | ( | ) | const |
Duplicate a SharedFD.
Duplicating a SharedFD creates a duplicate of the wrapped file descriptor and returns a UniqueFD that owns the duplicate. The fd() function of the original and the get() function of the duplicate will return different values. The duplicate instance will not be affected by destruction of the original instance or its copies.
|
inline |
Retrieve the numerical file descriptor.
|
inline |
Copy assignment operator, replace the wrapped file descriptor with a copy of other.
[in] | other | The other SharedFD |
Copying a SharedFD creates a new reference to the wrapped file descriptor owner by other. If other is invalid, *this will also be invalid. The original SharedFD is left untouched, and the caller is responsible for destroying it when appropriate. The wrapped file descriptor will be closed automatically when all SharedFD instances that reference it are destroyed.
Move assignment operator, replace the wrapped file descriptor by taking over other.
[in] | other | The other SharedFD |
Moving a SharedFD moves the reference to the wrapped descriptor owned by other to the new SharedFD. If other is invalid, *this will also be invalid. The other SharedFD is invalidated and its fd() function will return -1. The wrapped file descriptor will be closed automatically when all SharedFD instances that reference it are destroyed.