-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLogger.f90
228 lines (195 loc) · 6.05 KB
/
Logger.f90
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
module LoggerModule
!------------------------------------------------------------------------------
! Lagrangian Particle / Panel Method - Spherical Model
!------------------------------------------------------------------------------
!> @file
!> A Logger object for writing output to console or to files
!> @author
!> Peter Bosler, Department of Mathematics, University of Michigan
!
!> @defgroup Logger Logger module
!> A Logger object for writing output to console or to files
!> @{
!
!
!------------------------------------------------------------------------------
use NumberKindsModule
use OutputWriterModule
use STDIntVectorModule
implicit none
private
public Logger
public New, Delete
public DEBUG_LOGGING_LEVEL, TRACE_LOGGING_LEVEL, WARNING_LOGGING_LEVEL, ERROR_LOGGING_LEVEL
public LogMessage
public StartSection, EndSection
!
!----------------
! Types and module constants
!----------------
!
integer(kint), parameter :: DEBUG_LOGGING_LEVEL = 1, &
TRACE_LOGGING_LEVEL = 2, &
WARNING_LOGGING_LEVEL = 3, &
ERROR_LOGGING_LEVEL = 4
!> @class Logger
!> @brief Class handles display, formatting, and organization of console messages.
!> All messages are presumed to have a key - value pair.
!> For example, the key may be the origin of the message in the code, and the value contains the message content.
type Logger
integer(kint) :: level !< Messages with precedence below this level will be ignored.
type(OutputWriter) :: writer !< formatted output writer
end type
!
!----------------
! Interfaces
!----------------
!
!> @brief Initializes a logger object
interface New
module procedure NewPrivate
end interface
!> @brief Deletes and frees memory associated with a logger object.
interface Delete
module procedure DeletePrivate
end interface
!> @brief Common interface for logging various data types.
interface LogMessage
module procedure LogString
module procedure LogInteger
module procedure LogReal
module procedure LogIntVector
end interface
!> @brief Starts an indented section
interface StartSection
module procedure StartSectionLogger
end interface
!> @brief Ends an indented section
interface EndSection
module procedure EndSectionLogger
end interface
contains
!
!----------------
! Standard methods : Constructor / Destructor
!----------------
!
!> @brief Initializes a new Logger object, defines unit for chosen output.
subroutine NewPrivate(self,level,fileUnit,fileName)
type(Logger), intent(out) :: self
integer(kint), intent(in) :: level
integer(kint), intent(in), optional :: fileUnit
character(len=*), intent(in), optional :: fileName
self%level = level
if ( present(fileUnit) ) then
if ( present(fileName) ) then
call New(self%writer,fileUnit,fileName)
else
print *,"Logger ERROR : must supply filename for non-STD_OUT logging."
print *,"Redirecting output to STD_OUT"
call New(self%writer)
endif
else
call New(self%writer)
endif
end subroutine
!> @brief Placeholder for future development.
subroutine DeletePrivate(self)
type(Logger), intent(inout) :: self
call Delete(self%writer)
end subroutine
!
!----------------
! Public functions
!----------------
!
!> @brief Logs a string key-value pair.
!> @param self
!> @param msgLevel Priority level of this message.
!> If it is below the priority of the logger object self, the message will not be displayed.
!> @param key identification key for message
!> @param string message content
subroutine LogString(self,msgLevel,key,string)
type(Logger), intent(in) :: self
integer(kint), intent(in) :: msgLevel
character(len=*), intent(in) :: key
character(len=*), intent(in), optional :: string
if ( msgLevel >= self%level ) then
if ( present(string) ) then
call Write(self%writer,key,string)
else
call Write(self%writer,key)
endif
endif
end subroutine
!> @brief Logs a string/integer key-value pair.
!> @param self
!> @param msgLevel Priority level of this message.
!> If it is below the priority of the logger object self, the message will not be displayed.
!> @param key identification key for message
!> @param val message content
subroutine LogInteger(self,msgLevel,key,val)
type(Logger), intent(in) :: self
integer(kint), intent(in) :: msgLevel
character(len=*), intent(in) :: key
integer(kint), intent(in) :: val
if ( msgLevel >= self%level) then
call Write(self%writer,key,val)
endif
end subroutine
subroutine LogIntVector(self, msgLevel, key, val )
type(Logger), intent(in) :: self
integer(kint), intent(in) :: msgLevel
character(len=*), intent(in) :: key
type(STDIntVector), intent(in) :: val
if ( msgLevel >= self%level ) then
call Write(self%writer, key, val)
endif
end subroutine
!> @brief Logs a string/real key-value pair.
!> @param self
!> @param msgLevel Priority level of this message.
!> If it is below the priority of the logger object self, the message will not be displayed.
!> @param key identification key for message
!> @param val message content
subroutine LogReal(self,msgLevel,key,val)
type(Logger), intent(in) :: self
integer(kint), intent(in) :: msgLevel
character(len=*), intent(in) :: key
real(kreal), intent(in) :: val
if (msgLevel>=self%level) then
call Write(self%writer,key,val)
endif
end subroutine
!> @brief Starts an indented section for this logger object.
!> Allows user to optionally provide a section title and section description.
!> @param self
!> @param sectionName
!> @param description
subroutine StartSectionLogger(self,sectionName,description)
type(Logger), intent(inout) :: self
character(len=*), intent(in), optional :: sectionName
character(len=*), intent(in), optional :: description
if ( present(sectionName) ) then
if ( present(description) ) then
call StartSection(self%writer,sectionName,description)
else
call StartSection(self%writer,sectionName)
endif
else
call StartSection(self%writer)
endif
end subroutine
!> @brief Ends an indented section for this logger object.
!> @param self
subroutine EndSectionLogger(self)
type(Logger), intent(inout) :: self
call EndSection(self%writer)
end subroutine
!
!----------------
! Module methods : type-specific functions
!----------------
!
!> @}
end module