Project

General

Profile

User story #268

Type conversion engine

Added by André Neto over 9 years ago. Updated over 9 years ago.

Status:
Closed
Priority:
Normal
Assignee:
-
Target version:
Start date:
10.11.2015
Due date:
% Done:

0%

Estimated time:
Git branch (link):
Git merge to develop (link):
SVN commit (link/?p=rev):

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

Revision 24adff7a (diff)
Added by Giuseppe Ferro over 9 years ago

#268 Work in Progress implementation and testing of type conversion

Revision d45779c7 (diff)
Added by Giuseppe Ferro over 9 years ago

#268 Added Type conversion tests.
Fixed code.

Revision 11105337
Added by Giuseppe Ferro over 9 years ago

Merge remote-tracking branch 'origin/develop' into #268_TypeConversion

Conflicts:
Test/GTest/Makefile.inc

Revision 8b3a6238
Added by Giuseppe Ferro over 9 years ago

Merge remote-tracking branch 'origin/#267_Configuration_Database_engine' into #268_TypeConversion

Revision 3b6ed531 (diff)
Added by Giuseppe Ferro over 9 years ago

#268
- Lint and Documentation of StringToInteger and StringToFloat done.
- Added tests to TypeConversion.
- Work in Progress Matrix and vector tests.

Revision cbd1db24 (diff)
Added by Giuseppe Ferro over 9 years ago

#268 Fixed apporximation in float to int conversion 0.5-->1
posticipated saturation to 0 in string to unsigned number conversion.

Revision b30b02e7
Added by Giuseppe Ferro over 9 years ago

Merge remote-tracking branch 'origin/#267_Configuration_Database_engine'
into #268_TypeConversion

Conflicts:
Source/Core/BareMetal/L4Configuration/TypeConversion.cpp

Revision c6c27456 (diff)
Added by Giuseppe Ferro over 9 years ago

#268 Added support for char arrays in type conversion.
Added new tests.
Divided functions in more files.
--Ready to be linted--

Revision 111fa8e7 (diff)
Added by Giuseppe Ferro over 9 years ago

#268 Linting and documentation done.

Revision 11210097 (diff)
Added by Giuseppe Ferro over 9 years ago

#268 Fixed a test.

Revision 0b14a3c2 (diff)
Added by André Neto over 9 years ago

#267 Commit to synchronise with #268

Revision 6f2450b8 (diff)
Added by Giuseppe Ferro over 9 years ago

#268 Fixed a bug in serialization of vector for CCStrings

Revision deee70ef (diff)
Added by André Neto over 9 years ago

#267 synchronising with #268

Revision c160beaf (diff)
Added by Giuseppe Ferro over 9 years ago

#268 Merged with #267 and fixed AnyObject.

Revision ee46a179 (diff)
Added by Giuseppe Ferro over 9 years ago

#268 Added Tests to improve coverage.
Work in Progress on Matrix adding new feautures

Revision b257ac1a (diff)
Added by Giuseppe Ferro over 9 years ago

#268 Added Matrix tests and checked coverage.

Revision 617f78d7
Added by Giuseppe Ferro over 9 years ago

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

Revision 1bf7ff59
Added by Giuseppe Ferro over 9 years ago

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

Revision da053ad5 (diff)
Added by Giuseppe Ferro over 9 years ago

#268 Added documentation to tests.

Revision 11204138 (diff)
Added by Giuseppe Ferro over 9 years ago

#268 Moved Vector and Matrix tests to L0Types

Revision 2138391a (diff)
Added by Giuseppe Ferro over 9 years ago

#268 Improved documentation

Revision 3725d3b8 (diff)
Added by Giuseppe Ferro over 9 years ago

#268 Added AnyObjectTest::TestCleanUp().

Revision 8c35328d (diff)
Added by Ivan Herrero over 9 years ago

#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)

code implementation done: 1bf7ff5
The branch includes user stories #267 and #269

#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

Also available in: Atom PDF