File tree 3 files changed +56
-21
lines changed
3 files changed +56
-21
lines changed Original file line number Diff line number Diff line change 15
15
#include " lib/Metadata/Finalize.hpp"
16
16
#include " lib/Lib/Lookup.hpp"
17
17
#include " lib/Support/Error.hpp"
18
+ #include " lib/Support/Chrono.hpp"
18
19
#include < mrdocs/Metadata.hpp>
19
20
#include < mrdocs/Support/Error.hpp>
20
21
#include < llvm/ADT/STLExtras.h>
78
79
79
80
// ------------------------------------------------
80
81
81
- namespace {
82
- template <class Rep , class Period >
83
- std::string
84
- format_duration (
85
- std::chrono::duration<Rep, Period> delta)
86
- {
87
- auto delta_ms = std::chrono::duration_cast<
88
- std::chrono::milliseconds>(delta).count ();
89
- if (delta_ms < 1000 )
90
- {
91
- return fmt::format (" {} ms" , delta_ms);
92
- }
93
- else
94
- {
95
- double const delta_s = static_cast <double >(delta_ms) / 1000.0 ;
96
- return fmt::format (" {:.02f} s" , delta_s);
97
- }
98
- }
99
- }
100
-
101
82
mrdocs::Expected<std::unique_ptr<Corpus>>
102
83
CorpusImpl::
103
84
build (
Original file line number Diff line number Diff line change
1
+ //
2
+ // Licensed under the Apache License v2.0 with LLVM Exceptions.
3
+ // See https://llvm.org/LICENSE.txt for license information.
4
+ // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
5
+ //
6
+ // Copyright (c) 2023 Vinnie Falco (vinnie.falco@gmail.com)
7
+ // Copyright (c) 2023 Krystian Stasiowski (sdkrystian@gmail.com)
8
+ // Copyright (c) 2024 Alan de Freitas (alandefreitas@gmail.com)
9
+ //
10
+ // Official repository: https://github.com/cppalliance/mrdocs
11
+ //
12
+
13
+ #ifndef MRDOCS_LIB_SUPPORT_CHRONO_HPP
14
+ #define MRDOCS_LIB_SUPPORT_CHRONO_HPP
15
+
16
+ #include < chrono>
17
+ #include < string>
18
+ #include < fmt/format.h>
19
+
20
+ namespace clang {
21
+ namespace mrdocs {
22
+
23
+ template <class Rep , class Period >
24
+ std::string
25
+ format_duration (
26
+ std::chrono::duration<Rep, Period> delta)
27
+ {
28
+ auto delta_ms = std::chrono::duration_cast<
29
+ std::chrono::milliseconds>(delta).count ();
30
+ if (delta_ms < 1000 )
31
+ {
32
+ return fmt::format (" {} ms" , delta_ms);
33
+ }
34
+ else
35
+ {
36
+ double const delta_s = static_cast <double >(delta_ms) / 1000.0 ;
37
+ return fmt::format (" {:.02f} s" , delta_s);
38
+ }
39
+ }
40
+
41
+ } // mrdocs
42
+ } // clang
43
+
44
+ #endif
Original file line number Diff line number Diff line change 11
11
12
12
#include " lib/AST/ParseJavadoc.hpp"
13
13
#include " lib/Support/Path.hpp"
14
+ #include " lib/Support/Chrono.hpp"
14
15
#include < mrdocs/Support/Error.hpp>
15
16
#include < mrdocs/Generator.hpp>
16
17
#include < llvm/ADT/SmallString.h>
@@ -58,11 +59,20 @@ Error
58
59
Generator::
59
60
build (Corpus const & corpus) const
60
61
{
62
+ using clock_type = std::chrono::steady_clock;
63
+ auto start_time = clock_type::now ();
61
64
std::string absOutput = files::normalizePath (
62
65
files::makeAbsolute (
63
66
corpus.config ->output ,
64
67
corpus.config ->configDir ));
65
- return build (absOutput, corpus);
68
+ auto err = build (absOutput, corpus);
69
+ if (!err.failed ())
70
+ {
71
+ report::info (
72
+ " Generated documentation in {}" ,
73
+ format_duration (clock_type::now () - start_time));
74
+ }
75
+ return err;
66
76
}
67
77
68
78
Error
You can’t perform that action at this time.
0 commit comments