Rolf Badorek | ef2bf51 | 2019-08-20 11:17:15 +0300 | [diff] [blame] | 1 | /* |
| 2 | Copyright (c) 2018-2019 Nokia. |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | */ |
| 16 | |
Timo Tietavainen | a0745d2 | 2019-11-28 09:55:22 +0200 | [diff] [blame^] | 17 | /* |
| 18 | * This source code is part of the near-RT RIC (RAN Intelligent Controller) |
| 19 | * platform project (RICP). |
| 20 | */ |
| 21 | |
Rolf Badorek | ef2bf51 | 2019-08-20 11:17:15 +0300 | [diff] [blame] | 22 | #include "private/filedescriptor.hpp" |
| 23 | #include "private/system.hpp" |
| 24 | |
| 25 | using namespace shareddatalayer; |
| 26 | |
| 27 | namespace |
| 28 | { |
| 29 | int moveFD(int& fd) |
| 30 | { |
| 31 | const int ret(fd); |
| 32 | fd = -1; |
| 33 | return ret; |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | FileDescriptor::FileDescriptor(int fd) noexcept: |
| 38 | FileDescriptor(System::getSystem(), fd) |
| 39 | { |
| 40 | } |
| 41 | |
| 42 | FileDescriptor::FileDescriptor(System& system, int fd) noexcept: |
| 43 | system(&system), |
| 44 | fd(fd) |
| 45 | { |
| 46 | } |
| 47 | |
| 48 | FileDescriptor::FileDescriptor(FileDescriptor&& fd) noexcept: |
| 49 | system(fd.system), |
| 50 | fd(moveFD(fd.fd)), |
| 51 | atCloseCb(std::move(fd.atCloseCb)) |
| 52 | { |
| 53 | } |
| 54 | |
| 55 | FileDescriptor& FileDescriptor::operator = (FileDescriptor&& fd) noexcept |
| 56 | { |
| 57 | close(); |
| 58 | system = fd.system; |
| 59 | this->fd = moveFD(fd.fd); |
| 60 | atCloseCb = std::move(fd.atCloseCb); |
| 61 | return *this; |
| 62 | } |
| 63 | |
| 64 | FileDescriptor::~FileDescriptor() |
| 65 | { |
| 66 | close(); |
| 67 | } |
| 68 | |
| 69 | void FileDescriptor::atClose(std::function<void(int)> atCloseCb) |
| 70 | { |
| 71 | this->atCloseCb = atCloseCb; |
| 72 | } |
| 73 | |
| 74 | void FileDescriptor::close() |
| 75 | { |
| 76 | if (fd < 0) |
| 77 | return; |
| 78 | if (atCloseCb) |
| 79 | atCloseCb(fd); |
| 80 | system->close(fd); |
| 81 | fd = -1; |
| 82 | } |