User story #182
Logging for L0Portability
0%
Description
This would satisfy requirements:
- MARTe-EX-F-3.1.1: The framework shall offer developers an interrupt-safe logging mechanism.
- MARTe-EX-F-3.1.2: The framework shall automatically include in the log message the absolute time of the message.
- MARTe-NE-F-3.1.3: The framework shall automatically include in the log message the source file line number.
- MARTe-NE-F-3.1.4: The framework shall automatically include in the log message the source filename.
- MARTe-NE-F-3.1.7: The framework shall automatically include in the log message the identifier of the thread from which the message is triggered from.
- MARTe-NE-F-3.1.8: The framework shall allow developers to specify the severity of the log message.
Source code files modified¶
- SourceCore/L0Portbility/
Logger.hErrorManagement.h - SourceCore/L0Portbility/
Logger.cppErrorManagement.cpp - SourceCore/L0Portbility/
LogInformation.hErrorInformation.h
Architecture & design review¶
As per the original MARTe implementation, this is a support function and does not require formal design in UML.
Code and documentation review¶
Date of the review: 31/08/2015
Person who did the review: Ivan Herrero
Result of review: PASS
List of non-conformities: N/A
Note: There is an open discussion about if these classes/namespaces must be named Error infrastructure or Log infrastructure, because we log a lot of Information and Debug which by definition are not errors.
Unit test review¶
Date of the review: 02/09/2015
Person who did the review: Ivan Herrero
Result of coverage tests review: PASS
Result of functional tests review: PASS
Result of review: PASS
List of non-conformities: N/A
Notes: The function ErrorManagementTest::CheckParameters does not verify ErrorInformation::header::isObject, ErrorInformation::hrtTime, ErrorInformation::objectPointer, and ErrorInformation::className, because they are not implemented.
Associated revisions
List of changes:
Lint and testing of ErrorManagement done.
#182
List of changes:
-Removed bit field from ErrorType in ErrorInfo since it is already a
typedef of int8
#182
List of changes:
-Added documentation.
#182
Added the file ErrorInformation.h
#182
Merge branch 'develop' into #182_Error_Management
Conflicts:
MakeDefaults/Lint/marte_flint_exceptions.lnt
MakeDefaults/Lint/marte_flint_files.lnt
Source/Core/L0Portability/ErrorInformation.h
Source/Core/L0Portability/Makefile.inc
Source/Core/L0Portability/OperatingSystem/Linux/GeneralDefinitionsOS.h
Source/Core/L0Portability/OperatingSystem/Windows/GeneralDefinitionsOS.h
Test/GTest/Makefile.inc
List of changes:
-Changed name ErrorManagement to LogManagement and so on...
#182
Merge branch '#182_Error_Management' of
https://vcis-gitlab.f4e.europa.eu/aneto/MARTe2.git into
#182_Error_Management
Conflicts:
Source/Core/L0Portability/ErrorInformation.h
Source/Core/L0Portability/ErrorManagement.h
Test/GTest/Makefile.inc
#182 - Apply minor corrections
- Add the "static" keyword for functions on the section static of
ErrorManagementTest.cpp, because they are only used in the translation
unit. - The implementation of DummyErrorFunction at ErrorManagementTest.cpp
has been simplified to "ErrorManagementTest::retVal = true;". - The implementation of the function ErrorManagementTest::TestToName at
ErrorManagementTest.cpp has been updated after changes on
ErrorManagement::UnsupportedFeature name string.
History
#1 Updated by André Neto over 9 years ago
- Description updated (diff)
#2 Updated by Riccardo Vitelli over 9 years ago
- Status changed from New to Code: Impl
#3 Updated by Riccardo Vitelli over 9 years ago
- Assignee set to Giuseppe Ferro
#4 Updated by Giuseppe Ferro over 9 years ago
- Status changed from Code: Impl to Code: Rev
#5 Updated by Giuseppe Ferro over 9 years ago
- Assignee deleted (
Giuseppe Ferro)
Code implementation done: b642671
#6 Updated by André Neto over 9 years ago
- Assignee set to André Neto
#7 Updated by André Neto over 9 years ago
- Assignee deleted (
André Neto)
#8 Updated by André Neto over 9 years ago
- Description updated (diff)
#9 Updated by André Neto over 9 years ago
- Description updated (diff)
#10 Updated by Riccardo Vitelli over 9 years ago
- Target version changed from 0.3 to 0.4
#11 Updated by Giuseppe Ferro over 9 years ago
- Assignee set to Giuseppe Ferro
#12 Updated by Riccardo Vitelli over 9 years ago
- Status changed from Code: Rev to Code: Impl
#13 Updated by Giuseppe Ferro over 9 years ago
- Description updated (diff)
- Status changed from Code: Impl to Code: Rev
- Assignee deleted (
Giuseppe Ferro)
#14 Updated by Riccardo Vitelli over 9 years ago
- Assignee set to Ivan Herrero
#15 Updated by Ivan Herrero over 9 years ago
- Description updated (diff)
#16 Updated by Ivan Herrero over 9 years ago
- Status changed from Code: Rev to Unit: Rev
#17 Updated by Ivan Herrero over 9 years ago
- Description updated (diff)
#18 Updated by André Neto over 9 years ago
- Status changed from Unit: Rev to Closed
- Assignee deleted (
Ivan Herrero)
#19 Updated by Ivan Herrero over 9 years ago
- Description updated (diff)
List of changes:
-First lint refactor (not complete) of ErrorManagement.
-Added ErrorManagement tests.
#182