//===-- Timeout.h -----------------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLDB_UTILITY_TIMEOUT_H #define LLDB_UTILITY_TIMEOUT_H #include "llvm/Support/Chrono.h" #include "llvm/Support/FormatProviders.h" #include namespace lldb_private { // A general purpose class for representing timeouts for various APIs. It's // basically an std::optional>, but we // customize it a bit to enable the standard chrono implicit conversions (e.g. // from Timeout to Timeout. // // The intended meaning of the values is: // - std::nullopt - no timeout, the call should wait forever - 0 - poll, only // complete the call if it will not block - >0 - wait for a given number of // units for the result template class Timeout : public std::optional> { private: template using Dur = std::chrono::duration; template using EnableIf = std::enable_if< std::is_convertible, std::chrono::duration>::value>; using Base = std::optional>; public: Timeout(std::nullopt_t none) : Base(none) {} template ::type> Timeout(const Timeout &other) : Base(other ? Base(Dur(*other)) : std::nullopt) {} template ::type> Timeout(const std::chrono::duration &other) : Base(Dur(other)) {} }; } // namespace lldb_private namespace llvm { template struct format_provider, void> { static void format(const lldb_private::Timeout &timeout, raw_ostream &OS, StringRef Options) { typedef typename lldb_private::Timeout::value_type Dur; if (!timeout) OS << ""; else format_provider::format(*timeout, OS, Options); } }; } #endif // LLDB_UTILITY_TIMEOUT_H