TYPE3
[iec.git] / src / type3_AndroidCloud / anbox-master / src / anbox / common / fd.h
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
19 #ifndef ANBOX_COMMON_FD_H_
20 #define ANBOX_COMMON_FD_H_
21
22 #include <memory>
23
24 namespace anbox {
25 struct IntOwnedFd {
26   int int_owned_fd;
27 };
28 class Fd {
29  public:
30   // transfer ownership of the POD-int to the object. The int no longer needs
31   // close()ing,
32   // and has the lifetime of the Fd object.
33   explicit Fd(int fd);
34   explicit Fd(IntOwnedFd);
35   static int const invalid{-1};
36   Fd();  // Initializes fd to the anbox::Fd::invalid;
37   Fd(Fd&&);
38   Fd(Fd const&) = default;
39   Fd& operator=(Fd);
40
41   // bit of a convenient kludge. take care not to close or otherwise destroy the
42   // FD.
43   operator int() const;
44
45  private:
46   std::shared_ptr<int> fd;
47 };
48 }  // namespace anbox
49
50 #endif