Import CStringView from the Babeltrace tree
[lttng-tools.git] / src / common / file-descriptor.hpp
index 54c2e182a1bb352e5395990ae486be093d5ef4e9..b467e2e382d5bc293380ed880b779a2b02bc591b 100644 (file)
@@ -5,58 +5,52 @@
  *
  */
 
-#include <common/error.hpp>
-#include <common/format.hpp>
+#ifndef LTTNG_FILE_DESCRIPTOR_HPP
+#define LTTNG_FILE_DESCRIPTOR_HPP
 
-#include <algorithm>
-
-#include <unistd.h>
+#include <cstddef>
 
 namespace lttng {
 
-/*
- * RAII wrapper around a UNIX file descriptor. A file_descriptor's underlying
- * file descriptor
- */
+/* RAII wrapper around a UNIX file descriptor. */
 class file_descriptor {
 public:
-       explicit file_descriptor(int raw_fd) noexcept : _raw_fd{raw_fd}
-       {
-               LTTNG_ASSERT(_is_valid_fd(_raw_fd));
-       }
+       file_descriptor() noexcept = default;
 
+       explicit file_descriptor(int raw_fd) noexcept;
        file_descriptor(const file_descriptor&) = delete;
+       file_descriptor& operator=(const file_descriptor&) = delete;
 
-       file_descriptor(file_descriptor&& other) noexcept {
-               LTTNG_ASSERT(_is_valid_fd(_raw_fd));
-               std::swap(_raw_fd, other._raw_fd);
-       }
-
-       ~file_descriptor()
-       {
-               if (!_is_valid_fd(_raw_fd)) {
-                       return;
-               }
-
-               const auto ret = ::close(_raw_fd);
-               if (ret) {
-                       PERROR("Failed to close file descriptor: fd=%i", _raw_fd);
-               }
-       }
-
-       int fd() const noexcept
-       {
-               LTTNG_ASSERT(_is_valid_fd(_raw_fd));
-               return _raw_fd;
-       }
+       file_descriptor(file_descriptor&& other) noexcept;
 
-private:
-       static bool _is_valid_fd(int fd)
-       {
-               return fd >= 0;
-       }
+       file_descriptor& operator=(file_descriptor&& other) noexcept;
+
+       ~file_descriptor() noexcept;
 
+       /*
+        * Read `size` bytes from the underlying file descriptor, assuming
+        * raw_fd behaves as a blocking device.
+        *
+        * Throws an exception if the requested amount of bytes couldn't be read.
+        */
+       void read(void *buffer, std::size_t size);
+       /*
+        * Write `size` bytes to the underlying file descriptor, assuming
+        * raw_fd behaves as a blocking device.
+        *
+        * Throws an exception if the requested amount of bytes couldn't be written.
+        */
+       void write(const void *buffer, std::size_t size);
+
+       int fd() const noexcept;
+
+protected:
+       void _cleanup() noexcept;
+
+private:
        int _raw_fd = -1;
 };
 
 } /* namespace lttng */
+
+#endif /* LTTNG_FILE_DESCRIPTOR_HPP */
This page took 0.023589 seconds and 4 git commands to generate.