d7f1748b1877f73feb896cd2d1561bd398548de5
[iec.git] / src / type3_AndroidCloud / anbox-master / src / anbox / common / fd.cpp
1 /*
2  * Copyright © 2014 Canonical Ltd.
3  *
4  * This program is free software: you can redistribute it and/or modify it
5  * under the terms of the GNU Lesser General Public License version 3,
6  * as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU Lesser General Public License for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public License
14  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15  *
16  * Authored by: Kevin DuBois <kevin.dubois@canonical.com>
17  */
18 #include "anbox/common/fd.h"
19
20 #include <unistd.h>
21 #include <algorithm>
22
23 namespace anbox {
24 Fd::Fd() : Fd{invalid} {}
25
26 Fd::Fd(IntOwnedFd fd) : fd{std::make_shared<int>(fd.int_owned_fd)} {}
27
28 Fd::Fd(int raw_fd)
29     : fd{new int{raw_fd},
30          [](int* fd) {
31            if (!fd) return;
32            if (*fd > Fd::invalid) ::close(*fd);
33            delete fd;
34          }} {}
35
36 Fd::Fd(Fd&& other) : fd{std::move(other.fd)} {}
37
38 Fd& Fd::operator=(Fd other) {
39   std::swap(fd, other.fd);
40   return *this;
41 }
42
43 Fd::operator int() const {
44   if (fd) return *fd;
45   return invalid;
46 }
47 }  // namespace anbox