/test/

ref='#n13'>13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2019, Google Inc.
 *
 * file_descriptor.cpp - File descriptor wrapper
 */

#include <libcamera/file_descriptor.h>

#include <string.h>
#include <unistd.h>
#include <utility>

#include "log.h"

/**
 * \file file_descriptor.h
 * \brief File descriptor wrapper
 */

namespace libcamera {

LOG_DEFINE_CATEGORY(FileDescriptor)

/**
 * \class FileDescriptor
 * \brief RAII-style wrapper for file descriptors
 *
 * The FileDescriptor 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 FileDescriptor instances constructed as copies.
 *
 * When constructed from a numerical file descriptor, the FileDescriptor
 * instance duplicates the file descriptor and wraps the duplicate as a
 * Descriptor. The copy constructor and assignment operator create copies that
 * share the Descriptor, while the move versions of those methods additionally
 * make the other FileDescriptor invalid. When the last FileDescriptor that
 * references a Descriptor is destroyed, the file descriptor is closed.
 *
 * The numerical file descriptor is available through the fd() method. As
 * constructing a FileDescriptor from a numerical file descriptor duplicates
 * the file descriptor, the value returned by fd() will be different than the
 * value passed to the constructor. All FileDescriptor instances created as
 * copies of a FileDescriptor will report the same fd() value. Callers can
 * perform operations on the fd(), but shall never close it manually.
 */

/**
 * \brief Create a FileDescriptor wrapping a copy of a given \a fd
 * \param[in] fd File descriptor
 *
 * Constructing a FileDescriptor from a numerical file descriptor duplicates the
 * \a fd and takes ownership of the copy. The original \a fd is left untouched,
 * and the caller is responsible for closing it when appropriate. The duplicated
 * file descriptor will be closed automatically when all FileDescriptor
 * instances that reference it are destroyed.
 *
 * If the \a fd is negative, the FileDescriptor is constructed as invalid and
 * the fd() method will return -1.
 */
FileDescriptor::FileDescriptor(int fd)
{
	if (fd < 0)
		return;

	fd_ = std::make_shared<Descriptor>(fd);
	if (fd_->fd() < 0)
		fd_.reset();
}

/**
 * \brief Copy constructor, create a FileDescriptor from a copy of \a other
 * \param[in] other The other FileDescriptor
 *