blob: 9991ad6d1294c2ce163181eba018f0b67bccfd30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
// file : libbuild2/script/timeout.hxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
#ifndef LIBBUILD2_SCRIPT_TIMEOUT_HXX
#define LIBBUILD2_SCRIPT_TIMEOUT_HXX
#include <libbuild2/types.hxx>
#include <libbuild2/utility.hxx>
namespace build2
{
// Parse the specified in seconds timeout returning it if the value is not
// zero and nullopt otherwise. Issue diagnostics and fail if the argument is
// not a valid timeout.
//
optional<duration>
parse_timeout (const string&,
const char* what,
const location& = location ());
// As above, but return the timepoint which is away from now by the
// specified timeout.
//
optional<timestamp>
parse_deadline (const string&,
const char* what,
const location& = location ());
// Return the earlier timeout/deadline of two values, if any is present.
//
// Note that earlier(nullopt, v) and earlier(v, nullopt) return v.
//
template <typename T>
T
earlier (const T&, const T&);
template <typename T>
T
earlier (const optional<T>&, const T&);
template <typename T>
T
earlier (const T&, const optional<T>&);
template <typename T>
optional<T>
earlier (const optional<T>&, const optional<T>&);
}
#include <libbuild2/script/timeout.ixx>
#endif // LIBBUILD2_SCRIPT_TIMEOUT_HXX
|