User story #168
Find all the objects statically defined in headers and refactor them
0%
Description
The definition of static objects in headers must be avoided, because the static keyword (do not confuse it with the class static keyword) it is intended to make objects private to their compilation units (i.e. cpp files).
Moreover, defining objects on headers declared as static will create multiple copies of those objects (one per each time a compilation unit include the header).
This can observed, for example, on /MARTe2/Source/Core/L0Portability/OperatingSystem/Linux/HighResolutionTimerOS.h (line 47 @ revision e49a441):
static HighResolutionTimerCalibratorOS calibratedHighResolutionTimer;
Note: The refactoring to apply must be agreed case per case.
Source code files modified¶
- Source/Core/L0Portability/OperatingSystem/Linux/HighResolutionTimerOS.h
- Source/Core/L0Portability/OperatingSystem/Linux/HighResolutionTimerCalibratorOS.h
- Source/Core/L0Portability/OperatingSystem/Linux/HighResolutionTimerCalibratorOS.cpp
- Source/Core/L0Portability/OperatingSystem/Windows/HighResolutionTimerOS.h
- Source/Core/L0Portability/OperatingSystem/Windows/HighResolutionTimerCalibratorOS.h
- Source/Core/L0Portability/OperatingSystem/Windows/HighResolutionTimerCalibratorOS.cpp
h1. Architecture & design review
Date of the review: as per #150.
Person who did the review: N/A
Version of architecture & design document: N/A
Result of review: N/A
List of non-conformities: N/A
Code and documentation review¶
Date of the review: 20/08/2015.
Person who did the review: Andre' Neto
Result of review: PASS
List of non-conformities:
Unit test review¶
Date of the review: 20/08/2015
Person who did the review: Andre' Neto
Result of coverage tests review: PASS
Result of functional tests review: PASS
Result of review: PASS
List of non-conformities:
Associated revisions
Cosmetic changes to code structure #168.
Merge branch '#168_#177_Refactoring' of https://vcis-gitlab.f4e.europa.eu/aneto/MARTe2.git into #168_#177_Refactoring
History
#1 Updated by André Neto over 9 years ago
- Target version changed from Backlog to 0.3
#2 Updated by Riccardo Vitelli over 9 years ago
- Assignee set to Giuseppe Ferro
#3 Updated by Riccardo Vitelli over 9 years ago
- Status changed from New to Code: Impl
#4 Updated by Giuseppe Ferro over 9 years ago
Code Implementation done: ea7c104
#5 Updated by Giuseppe Ferro over 9 years ago
- Status changed from Code: Impl to Code: Rev
#6 Updated by Giuseppe Ferro over 9 years ago
- Assignee deleted (
Giuseppe Ferro)
#7 Updated by André Neto over 9 years ago
- Assignee set to André Neto
#8 Updated by André Neto over 9 years ago
- Description updated (diff)
#9 Updated by André Neto over 9 years ago
- Status changed from Code: Rev to Code: Impl
#10 Updated by André Neto over 9 years ago
- Assignee deleted (
André Neto)
#11 Updated by Riccardo Vitelli over 9 years ago
- Status changed from Code: Impl to Code: Rev
#12 Updated by André Neto over 9 years ago
- Status changed from Code: Rev to Code: Impl
#13 Updated by André Neto over 9 years ago
- Status changed from Code: Impl to Code: Rev
#14 Updated by André Neto over 9 years ago
- Assignee set to André Neto
#15 Updated by André Neto over 9 years ago
- Description updated (diff)
#16 Updated by André Neto over 9 years ago
- Status changed from Code: Rev to Unit: Rev
#17 Updated by André Neto over 9 years ago
- Status changed from Unit: Rev to Closed
- Assignee deleted (
André Neto)
#18 Updated by André Neto over 9 years ago
- Description updated (diff)
List of changes:
-Declared osHighResolutionTimerCalibrator as extern in
HighResolutionTimerOS.h and defined in
HighResolutionTimerCalibratorOS.cpp (MISRA compliant because global
variable)
-Declared processorVendorId as extern in ProcessorA.h and defined in
ProcessorOS.cpp (MISRA compliant because global variable)
-Included directly the Architecture header files for inline
implementations of Endianity and Atomic Functions.
-Moved BasicConsole::Mode outside of the class with the namespace
BasicConsoleMode.
User Stories #168 #177