blob: 7aa3622ae89f31166ff7380e5845039c6675ca0f (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
|
// file : butl/filesystem.ixx -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
namespace butl
{
// dir_entry
//
inline entry_type dir_entry::
type () const
{
return t_ != entry_type::unknown ? t_ : (t_ = type (false));
}
inline entry_type dir_entry::
ltype () const
{
entry_type t (type ());
return t != entry_type::symlink
? t
: lt_ != entry_type::unknown ? lt_ : (lt_ = type (true));
}
// dir_iterator
//
inline dir_iterator::
dir_iterator (dir_iterator&& x): e_ (std::move (x.e_)), h_ (x.h_)
{
x.h_ = nullptr;
}
inline dir_iterator& dir_iterator::
operator= (dir_iterator&& x)
{
if (this != &x)
{
e_ = std::move (x.e_);
h_ = x.h_;
x.h_ = nullptr;
}
return *this;
}
inline bool
operator== (const dir_iterator& x, const dir_iterator& y)
{
return x.h_ == y.h_;
}
inline bool
operator!= (const dir_iterator& x, const dir_iterator& y)
{
return !(x == y);
}
#ifndef _WIN32
inline dir_iterator::
~dir_iterator ()
{
if (h_ != nullptr)
::closedir (h_); // Ignore any errors.
}
#else
#endif
}
|