User story #268
Type conversion engine
0%
Description
Implement the TypeConversion engine based on the previous MARTe implementation and on the prototype available in the branch Configuration_prototype.
This engine is responsible of the deserialisation of the types stored in the ConfigurationDatabase (scalars, vectors and matrices). Each deserialised item is then type converted using the ScalarTypeConversion.
Note that this work does NOT include the ScalarTypeConversion work (see #269)
Source code files modified¶
- Source/Core/BareMetal/L0Types/Vector.h
- Source/Core/BareMetal/L0Types/Matrix.h
- Source/Core/BareMetal/L4Configuration/AnyObject.h
- Source/Core/BareMetal/L4Configuration/AnyObject.cpp
- Source/Core/BareMetal/L4Configuration/TypeConversion.h
- Source/Core/BareMetal/L4Configuration/TypeConversion.cpp
- Source/Core/BareMetal/L4Configuration/ConfigurationDatabase.h
- Source/Core/BareMetal/L4Configuration/ConfigurationDatabase.cpp
- Source/Core/BareMetal/L4Configuration/FloatToInteger.cpp
- Source/Core/BareMetal/L4Configuration/IntegerToFloat.cpp
- Source/Core/BareMetal/L4Configuration/StringToFloat.cpp
- Source/Core/BareMetal/L4Configuration/StringToInteger.cpp
- Test/Core/BareMetal/L0Types/VectorTest.h
- Test/Core/BareMetal/L0Types/VectorTest.cpp
- Test/Core/BareMetal/L0Types/MatrixTest.h
- Test/Core/BareMetal/L0Types/MatrixTest.cpp
- Test/Core/BareMetal/L4Configuration/AnyObjectTest.h
- Test/Core/BareMetal/L4Configuration/AnyObjectTest.cpp
- Test/Core/BareMetal/L4Configuration/TypeConversionTest.h
- Test/Core/BareMetal/L4Configuration/TypeConversionTest.cpp
- Test/Core/BareMetal/L4Configuration/ConfigurationDatabaseTest.h
- Test/Core/BareMetal/L4Configuration/ConfigurationDatabaseTest.cpp
- Test/GTest/AnyObjectGTest.cpp
- Test/GTest/TypeConversionGTest.cpp
- Test/GTest/ConfigurationDatabaseGTest.cpp
Architecture & design review¶
Date of the review: 10/11/2015
Person who did the review: André Neto
Version of architecture & design document: N/A. As per the original MARTe implementation. The interface was prototyped in a dedicated branch and discussed in a technical meeting.
Result of review: N/A
List of non-conformities: N/A
Code and documentation review¶
Date of the review: 25/11/2015 [on commit 8c35328]
Person who did the review: Ivan Herrero
Result of review: PASS
List of non-conformities: N/A
Comments:
- The Vector and Matrix classes implementation use the standard new and delete operators.
- On Vector and Matrix classes, the dataPointer member could be declared as a T* instead of a void*, so it will be unnecessary to use reinterpret_cast<T*> on code.
- On Vector and Matrix class, some functions could be non-members, like Product, Transpose, and so on.
- The methods Determinant and Inverse of the Matrix class are declared as inline, but they are so big that it is useless.
- The methods Determinant and Inverse of the Matrix class are defined with concrete types (Matrix<float32> and Matrix<float64>), because they make sense only for floats, but then they are not generic implementations.
Unit test review¶
Date of the review: 25/11/2015 [on commit 8c35328]
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
Associated revisions
#268 Added Type conversion tests.
Fixed code.
Merge remote-tracking branch 'origin/develop' into #268_TypeConversion
Conflicts:
Test/GTest/Makefile.inc
Merge remote-tracking branch 'origin/#267_Configuration_Database_engine' into #268_TypeConversion
#268
- Lint and Documentation of StringToInteger and StringToFloat done.
- Added tests to TypeConversion.
- Work in Progress Matrix and vector tests.
#268 Fixed apporximation in float to int conversion 0.5-->1
posticipated saturation to 0 in string to unsigned number conversion.
Merge remote-tracking branch 'origin/#267_Configuration_Database_engine'
into #268_TypeConversion
Conflicts:
Source/Core/BareMetal/L4Configuration/TypeConversion.cpp
#268 Added support for char arrays in type conversion.
Added new tests.
Divided functions in more files.
--Ready to be linted--
#268 Linting and documentation done.
#268 Fixed a test.
#268 Fixed a bug in serialization of vector for CCStrings
#268 Added Tests to improve coverage.
Work in Progress on Matrix adding new feautures
#268 Added Matrix tests and checked coverage.
Merge remote-tracking branch 'origin/#267_Configuration_Database_engine'
into #268_TypeConversion
Conflicts:
MakeDefaults/Lint/marte_flint_files.lnt
Source/Core/BareMetal/L0Types/Matrix.h
Source/Core/BareMetal/L0Types/Vector.h
Source/Core/BareMetal/L4Configuration/AnyObject.cpp
Test/Core/BareMetal/L4Configuration/AnyObjectTest.cpp
Test/Core/BareMetal/L4Configuration/AnyObjectTest.h
Test/GTest/AnyObjectGTest.cpp
Merge remote-tracking branch 'origin/develop' into #268_TypeConversion
Conflicts:
MakeDefaults/Lint/marte_flint_files.lnt
Source/Core/BareMetal/L3Streams/String.cpp
Test/Core/BareMetal/L3Streams/StringTest.cpp
Test/GTest/Makefile.inc
#268 Added documentation to tests.
#268 Moved Vector and Matrix tests to L0Types
#268 Improved documentation
#268 Added AnyObjectTest::TestCleanUp().
#268 - Minor corrections and improvements on documentation.
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
- Target version set to 0.8
#3 Updated by Giuseppe Ferro 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)
#6 Updated by Giuseppe Ferro over 9 years ago
- Description updated (diff)
#7 Updated by Ivan Herrero over 9 years ago
- Description updated (diff)
- Assignee set to Ivan Herrero
#8 Updated by Ivan Herrero over 9 years ago
- Description updated (diff)
#9 Updated by Ivan Herrero over 9 years ago
- Description updated (diff)
#10 Updated by Ivan Herrero over 9 years ago
- Assignee deleted (
Ivan Herrero)
Merged with develop on commit a15780e.
#11 Updated by Ivan Herrero over 9 years ago
Branch #268_TypeConversion deleted on https://vcis-gitlab.f4e.europa.eu/aneto/MARTe2.
#12 Updated by Ivan Herrero over 9 years ago
- Status changed from Code: Rev to Closed
#268 Work in Progress implementation and testing of type conversion