User story #305
Backport changes on lower levels for Messages
0%
Description
Changes done in lower levels in the branch for Messages will have to be ported in the main tree.
Note that this impacts code which has already been audited: modified functions will need to be re-audited.
Source code files modified
TBD¶
Architecture & design review¶
Date of the review: --/--/2016
Person who did the review:
Version of architecture & design document: N/A. As per the original MARTe implementation. Prototype code developed and reviewed in sprint preparation meeting.
Result of review: N/A
List of non-conformities: N/A
Code and documentation review¶
Date of the review: 04/08/2016
Person who did the review: R. Vitelli
Result of review: PASS
List of non-conformities: N/A
Unit test review¶
Date of the review: 04/08/2016
Person who did the review: R. Vitelli
Result of coverage tests review: PASS
Result of functional tests review: PASS
Result of review: PASS
List of non-conformities: N/A
Associated revisions
#305 - Add "TargetFile_Test.txt" file to ignore list.
#305 - Chnage of name of
ZeroTerminatedArrayTest<T>::TestPositionOperator to
ZeroTerminatedArrayTest<T>::TestSubscriptOperator.
#305 - Fix unit test fail that happened only on Windows, which was
related with floating point assignment and comparison.
#305 - Purge of unused includes (stdio.h)
#305 - Backport of null pointer as default parameter on
ZeroTerminatedArray constructor. Update tests accordingly.
#305 - Simplification of test
ZeroTerminatedArrayTest<T>::TestConstructor() and fix a potential error
in ZeroTerminatedArrayTest<T>::TestSubscriptOperator().
#305 - Add CString and CCString typedefs as ZeroTerminatedArray of chars
and rename the constant CCString to BT_CCString.
#305 - Refactor IteratorT<T>::Do() function.
#305 - Refactor SortFilterT<T>::Compare() function.
#305 - Refactor SearchFilterT class template.
+ Now it inherits from SearchFilter.
+ Change prototype of SearchFilterT::Test() function.
+ Override the inherited SearchFilter::Test() function.
#305 - Protect implementation of LinkedListHolder::ListPeek(const
uint32) from NULL.
#305 - Add LinkedListableT as the template version of LinkedListable.
#305 - Fix compilation error in implementation of
SearchFilterT<T>::Test(LinkedListable*) when template was instantiated.
#305 - Add class inheritance to Iterator from IteratorI template class.
#305 - Add class inheritance to SortFilter from SortFilterI template
class.
#305 - Add LinkedListHolderT as the template version of
LinkedListHolder.
#305 - Backport of stable changes in /BareMetal/L1Portability from
HttpService and DDB_Prototype branches.
Note: DDB_prototype backport made through previous backport work on
#306_Backport_GAMs branch.
#305 - Backport of stable changes in /BareMetal/L4Configuration from
HttpService and DDB_Prototype branches.
Note: DDB_prototype backport made through previous backport work on
#306_Backport_GAMs branch.
#305 - Remove files already generated by make from generic versions.
#305 - Backport of L2Objects from HttpService branch.
All compiles, but it complains at linking stage on Windows with the
following error:
ClassRegistryItem.obj : error LNK2019: unresolved external symbol
"public: virtual bool __thiscall MARTe::SearchFilterT<class
MARTe::ClassMethodsRegistryItem>::Test(class
MARTe::ClassMethodsRegistryItem *)"
(?Test@?$SearchFilterT@VClassMethodsRegistryItem@MARTe@@MARTe
@UAE_NPAVClassMethodsRegistryItem@2@Z)
?$SearchFilterT@VClassMethodsRegistryItem@MARTe@
referenced in function "public: virtual bool __thiscall
MARTe::SearchFilterT<class MARTe::ClassMethodsRegistryItem>::Test(class
MARTe::LinkedListable *)"
(?Test@MARTe
@UAE_NPAVLinkedListable@2@@Z)
#305 - Remove DLL_API from SearchFilterT.
#305 - Fix the error at linking stage present in commit 5e28e17.
#305 - Rename ReferenceContainer::ToStructuredData to
ReferenceContainer::ExportData in accordance with inherited class
Object.
#305 - First version of L4Messages.
#305 - Merge of Object.h/cpp taking the versions from develop and
http_service branches.
The merge is the result of putting all the content from the http_service
version, substituting only the methods ToStructuredData,
IntrospectionToStructuredData, ConvertToStructuredData, and
ConvertIntrospectionToStructuredData (the new methods are ExportData,
ExportMetadata, ConvertDataToStructuredData, and
ConvertMetadataToStructuredData).
#305 - Fix missing include in TypeConversion.cpp.
#305 - Enable compilation of Source/Core/BareMetal/L4Messages
#305 - Improve documentation of
ThreadInformation::Copy(ThreadInformation).
#305 - Initial version of Source/Core/Scheduler/L4Messages.
#305 - Backport of FastPollingEventSemTest, FastPollingMutexSemTest, and
MemoryAreaTest from HttpService branch.
#305 - Initial version of Test/Core/BareMetal/L4Messages.
#305 - Initial version of Test/Core/Scheduler/L4Messages.
#305 - Initial version of Test/GTest/BareMetal/L4Messages.
#305 - Initial version of Test/GTest/Scheduler/L4Messages.
#305 - Fix compilation errors in unit tests due to changes made on
source during backporting from HttpService branch..
#305 - Fix class and makefile configuration for Windows.
#305 - Add virtual to ClassRegistryItem::~ClassRegistryItem().
#305 - Fix compilation issue in ClassRegistryItemTest::TestDestructor()
when calling myItem.~ClassRegistryItemT(), because it myItem recently
changed from ClassRegistryItem to ClassRegistryItemT.
#305 - Update gitignore files for Windows compilation.
#305 - Fix linking with vtable on some classes (mainly lack of
CLASS_REGISTER macro).
#305 - Update gitignore files for L4Messages with rules for temporary
coverage generated files.
#305 - Initial version of coverage makefile for BareMetal/L4Messages.
#305 - Fix error in ClassRegistryItem::Instance(ClassRegistryItem*&,
ClassProperties&).
#305 - Fix error in ClassRegistryItemT::Instance().
#305 - Fix error in macro DECLARE_STRUCT_INTROSPECTION (the generated
class must inherit from Object).
#305 - Fix error in ReferenceT<T>::ReferenceT(const char8* const, HeapI*
const).
#305 - Fix error in macro CLASS_REGISTER.
#305 - Fix error in unit tests where auxiliary classes where needed
instead of structs (implies using CLASS_REGISTER macros).
#305 - Fix error in unit tests for ClassRegisterItem where a new class
inherited from Object was needed, instead of using Object class
directly.
#305 - Disable unit tests TestAdd, TestFind, and TestPeek for
ClassRegistryDatabase.
#305 - Fix coding rules at ReturnType class (move implementation of
operator bool from declaration section to inline section).
#305 - Synchronization of pending differences between this branch and
http_service.
#305 - Fix errors in ClassRegistryItem unit tests.
#305 - Fix errors
- ReturnType: Define 1 bit for each boolean member.
- SearchFilterT<T>::Test(): Initialize ret variable.
- CLASS_METHOD_REGISTER(): Disable creating variable as const.
- ClassMethodInterfaceMapper::~ClassMethodInterfaceMapper(): Release
object pointed by a member (acquired in constructor).
- ClassMethodsRegistryItem::Find(): Drop double loop and add extra colon
check.
- ClassRegistryItem::CallRegisteredMethod(): Use == instead of != when
checking for NULL pointers.
- Object.h: Add MARTe as a prefix into code generated by macros where it
was missing.
#305 - Add preliminary unit tests for method calling mechanism.
#305 - Add virtual destructor to ClassMethodsRegistryItem
#305 - Add virtual destructor to CallRegisteredMethodLauncher
#305 - Change order in file ClassWithCallableMethods.h of methods
NonRegisteredMethod and MethodK.
#305 - Add test ClassMethodsRegistryItemGTest::TestConstructor
#305 - Improve tests (ClassRegistryItemTest, ClassRegistryItemTest,
ClassMethodCallerTest)
#305 - Delete test code for "NonRegisteredMethod" because it does not
make sense in this case.
#305 - Adapt tests to changes done on ErrorType/ReturnType.
Merge branch '#305_backport_lower_levels_messages' of https://vcis-gitlab.f4e.europa.eu/aneto/MARTe2.git into #305_backport_lower_levels_messages
#305 - Refactor names of parameters
#305 - Update tests with respect to previous changes.
Merge branch '#305_backport_lower_levels_messages' of https://vcis-gitlab.f4e.europa.eu/aneto/MARTe2.git into #305_backport_lower_levels_messages
#305 - Fix problem for method call mechanism (the template argument
argType must be used explicitly when calling other template functions;
and argType must not be used to declare variables/parameters as
references, because argType can be by itself a reference).
Merge branch '#305_backport_lower_levels_messages' of https://vcis-gitlab.f4e.europa.eu/aneto/MARTe2.git into #305_backport_lower_levels_messages
#305 - Update tests for method calling mechanism accodingly to bug fixed
on commit 0a0db0b. Update these tests with input and output data.
Merge branch '#305_backport_lower_levels_messages' of https://vcis-gitlab.f4e.europa.eu/aneto/MARTe2.git into #305_backport_lower_levels_messages
Merge remote-tracking branch 'origin/#306_Backport_GAMs' into
#305_backport_lower_levels_messages
Conflicts:
Source/Core/BareMetal/L0Types/Architecture/x86_cl/CompilerTypes.h
Source/Core/BareMetal/L0Types/LinkedListHolder.cpp
Source/Core/BareMetal/L1Portability/Architecture/x86_cl/HighResolutionTimerA.h
Source/Core/BareMetal/L1Portability/Architecture/x86_gcc/HighResolutionTimerA.h
Source/Core/BareMetal/L1Portability/Environment/Generic/MemoryOperationsHelper_CLIB_Generic.cpp
Source/Core/BareMetal/L1Portability/Environment/Linux/BasicConsole.cpp
Source/Core/BareMetal/L1Portability/Environment/Linux/HighResolutionTimer.h
Source/Core/BareMetal/L1Portability/Environment/Linux/HighResolutionTimerCalibrator.cpp
Source/Core/BareMetal/L1Portability/Environment/Linux/HighResolutionTimerCalibrator.h
Source/Core/BareMetal/L1Portability/Environment/Linux/Sleep.cpp
Source/Core/BareMetal/L1Portability/Environment/Linux/lint-linux.h
Source/Core/BareMetal/L1Portability/Environment/Windows/HighResolutionTimerCalibrator.cpp
Source/Core/BareMetal/L1Portability/Environment/Windows/HighResolutionTimerCalibrator.h
Source/Core/BareMetal/L1Portability/ErrorInformation.h
Source/Core/BareMetal/L1Portability/FastPollingMutexSem.cpp
Source/Core/BareMetal/L1Portability/FastPollingMutexSem.h
Source/Core/BareMetal/L1Portability/HighResolutionTimer.h
Source/Core/BareMetal/L1Portability/Sleep.h
Source/Core/BareMetal/L1Portability/StaticList.h
Source/Core/BareMetal/L1Portability/TimeoutType.h
Source/Core/BareMetal/L2Objects/Object.cpp
Source/Core/BareMetal/L2Objects/Object.h
Source/Core/BareMetal/L2Objects/ObjectRegistryDatabase.cpp
Source/Core/BareMetal/L2Objects/ObjectRegistryDatabase.h
Source/Core/BareMetal/L2Objects/Reference.cpp
Source/Core/BareMetal/L2Objects/Reference.h
Source/Core/BareMetal/L2Objects/ReferenceContainer.cpp
Source/Core/BareMetal/L2Objects/ReferenceContainer.h
Source/Core/BareMetal/L2Objects/ReferenceT.h
Source/Core/BareMetal/L2Objects/StructuredDataI.h
Merge remote-tracking branch 'origin/#307_Valgrind_Check' into
#305_backport_lower_levels_messages
Conflicts:
Source/Core/BareMetal/L2Objects/ClassRegistryItem.cpp
Source/Core/BareMetal/L2Objects/Object.cpp
Test/Core/BareMetal/L0Types/ZeroTerminatedArrayTest.h
Test/Core/BareMetal/L1Portability/FastPollingMutexSemTest.cpp
#305 - Fix bug in ClassMethodsRegistryItem::Find
Merge branch '#305_backport_lower_levels_messages' of
https://vcis-gitlab.f4e.europa.eu/aneto/MARTe2.git into
#305_backport_lower_levels_messages
Conflicts:
Source/Core/BareMetal/L2Objects/ClassMethodsRegistryItem.cpp
Merge branch '#305_backport_lower_levels_messages' of
https://vcis-gitlab.f4e.europa.eu/aneto/MARTe2.git into
#305_backport_lower_levels_messages
Conflicts:
Source/Core/BareMetal/L2Objects/ClassMethodsRegistryItem.cpp
#305 - WIP for unit tests of method calling mechanism.
Merge branch '#305_backport_lower_levels_messages' of
https://vcis-gitlab.f4e.europa.eu/aneto/MARTe2.git into
#305_backport_lower_levels_messages
Conflicts:
Source/Core/BareMetal/L2Objects/ClassMethodCaller.h
Source/Core/BareMetal/L2Objects/ClassMethodsRegistryItem.cpp
#305 - Add calls to integer tests and change name of tests.
Merge branch '#305_backport_lower_levels_messages' of https://vcis-gitlab.f4e.europa.eu/aneto/MARTe2.git into #305_backport_lower_levels_messages
#305 - Rename ClassWithCallableMethods::MethodK to
ClassWithCallableMethods::FaultyMethod
#305 - First version of overloadedmethod unit testing
Merge branch '#305_backport_lower_levels_messages' of https://vcis-gitlab.f4e.europa.eu/aneto/MARTe2.git into #305_backport_lower_levels_messages
Merge branch '#305_backport_lower_levels_messages' of https://vcis-gitlab.f4e.europa.eu/aneto/MARTe2.git into #305_backport_lower_levels_messages
#305 - Fix bug when finding overloaded methods
#305 - Add unit tests for overloaded methods in all existing unit tests.
Merge branch '#305_backport_lower_levels_messages' of https://vcis-gitlab.f4e.europa.eu/aneto/MARTe2.git into #305_backport_lower_levels_messages
#305 - Add unit tests for calling methods with parameters by copy.
Merge branch '#305_backport_lower_levels_messages' of https://vcis-gitlab.f4e.europa.eu/aneto/MARTe2.git into #305_backport_lower_levels_messages
#305 - Add check to verify if the method called has been actually
called, for all methods of ClassWithCallableMethods.
#305 - Add a result's value update on every stage of
ClassMethodsRegistryItemTest::TestCallFunction2()
#305 - Refactor of ClassMethodInterfaceMapperTest.{h|cpp}
Extract class ClassMethodCallerTest from
ClassMethodInterfaceMapperTest.{h|cpp} and put into its own file
ClassMethodCallerTest.{h|cpp}
#305 - Refactoring of ClassMethodsRegistryItemTest
Extract TestCallFunction2 from ClassMethodsRegistryItemTest and put into
ObjectTest as TestCallRegisteredMethod
#305 - Fix bug in ObjectTest::TestCallRegisteredMethod()
Note: The previous version was using an uninitialised context object
when calling the method GetLastMethodExecuted().
#305 - Add stub for unit testing
ClassRegistryItemTest::TestRegisterMethods
This initial version always returns false.
#305 - Add stubs for unit testing ClassMethodInterfaceMapper's
contructors.
Note: These initial versions always returns false.
#305 - Add stub for unit testing ClassMethodCaller's default contructor.
Note: This initial version always returns false.
#305 - Improve ClassMethodsRegistryItemTest::TestConstructor()
#305 - Change calls to static MessageI::SendMessage* methods using
"MessageI::" instead of an instance of MessageI.
#305 - Improve readability of MessageITest's methods.
+ Use of "using namespace MARTe;" into each method.
+ Use of a bool result variable into each method.
+ Use of an ErrorType status variable when calling MessageI methods.
#305 - Remove from the MessageITest's methods implementation the local
instance of a sender when it is not used (MessageI::SendMessage is
called passing a NULL as sender)
#305 - Improve readability of
MessageITest::TestSendMessage_False_InvalidDestination
#305 - Purge printf calls used for debugging
#305 - Refactor and improve unit tests for Message class
#305 - Refactor ClassRegistryItem.h (extract
CallRegisteredMethodLauncher and CallRegisteredMethodLauncher classes
from this header and put into their own header files)
#305 - Initial version of gitignore file for
Source/Core/BareMetal/L4Configuration
#305 - Add/Improve documentation and fix formatting on several files.
#305 - Fix dependency issues on source and tests code.
#305 - Purge "#if 0" source code.
#305 - Purge dead macro
#305 - Refactor macros CLASS_REGISTER and CLASS_REGISTER_DECLARATION
(extract from Object.h)
#305 - Improve documentation of class ClassMethodCaller.
Merge branch '#305_backport_lower_levels_messages' of https://vcis-gitlab.f4e.europa.eu/aneto/MARTe2.git into #305_backport_lower_levels_messages
#305 - Refactor ClassMethodCallerT
+ Add a typedef for defining the method's pointer type.
+ Add a function for querying the method's pointer.
#305 - Refactor tests for ClassMethodCaller and ClassMethodCallerT
(split tests for both classes)
#305 - Implement the unit test
ClassRegistryItemTest::TestRegisterMethods()
#305 - Add implementation for destructor tests in
ClassMethodInterfaceMapperTest.
#305 - Apply file formatting to L2Objects.
#305 - Add DLL_API definition where it was missing and fix minor
formatting issues.
#305 - Fix forward declarations declaration (into a reserved file's
section)
#305 - Fix forward declarations declaration for structs (into a reserved
file's
section)
#305 - Update Git's ignore lists.
#305 - Fix compilation issue on Windows implementation (the threadId
used in MARTe::Threads is a Windows handle, not a pointer, so it can not
be deleted as a C++ pointer).
#305 - Add "#define DLL_API" into BufferedStreamIOBuffer.cpp.
#305 - Remove DLL_API from template classes, because its code it is not
compiled into the library, but into the client's code.
#305 - Add DLL_API to QueuedMessageI.{h|cpp}.
#305 - Remove DLL_API from test classes files, because it is not used.
#305 - Add "#define DLL_API" into Message.cpp.
Merge branch '#305_backport_lower_levels_messages' of https://vcis-gitlab.f4e.europa.eu/aneto/MARTe2.git into #305_backport_lower_levels_messages
#305 - Fix compile object removed by mistake from the list in Makefile.
#305 - Improve documentation, formatting, and source file rules on
L2Objects package.
#305 - Add inline attribute to the definition of ObjectBuilder's
methods, otherwise they are defined multiple times.
#305 - Refactor ClassMethodsRegistryItem.h (extract macro
CLASS_METHOD_REGISTER)
#305 - Update lint configuration files
#305 - Fix format on files
#305 - Fix linting issues
#305 - Improve documentation of ClassMethodCaller and
ClassMethodCallerT.
#305 - Fix compilation error in
ClassMethodCallerTTest::TestDefaultConstructor method.
#305 - Improve documentation of ClassWithCallableMethods.
#305 - Improve documentation for ClassMethodsRegistryItem.
#305 - Improve documentation for ClassRegistryItem::RegisterMethods and
ClassRegistryItem::CallRegisteredMethod.
#305 - Improve documentation on ObjectBuilder and improve its tests.
#305 - Add the dependencies needed by users of the macros.
#305 - Add a dependency (shadowed by other includes).
#305 - Split ObjectBuilderTest into 2 tests (one for ObjectBuilder and
another for ObjectBuilderT).
#305 - Improve documentation, formatting, and namespace usage on
MessageTest and MessageITest.
#305 - Fix spelling error on MessageTest.
#305 - Improve QueuedMessageI documentation and structure, but it is
still a WIP.
#305 - Fix naming error on QueuedMessageIGTest.
#305 - Add unit tests for CallRegisteredMethodLauncher and
CallRegisteredMethodLauncherT classes.
#305 - Fix issue into ClassMethodsRegistryItemTest::TestConstructor().
#305 - Improve documentation for ClassMethodInterfaceMapper.
#305 - Fix segmentation fault when testing
CallRegisteredMethodLauncher::GetResults() and
CallRegisteredMethodLauncherT<>::GetResults().
#305 - Fix bug on MessageTest::TestSetReplyTimeout(), causing to always
report a fail.
History
#1 Updated by Riccardo Vitelli almost 9 years ago
- Status changed from New to Code: Impl
#2 Updated by Riccardo Vitelli almost 9 years ago
- Subject changed from Backport of changes on lower levels for Messages to Backport changes on lower levels for Messages
#3 Updated by Riccardo Vitelli almost 9 years ago
- Assignee set to Ivan Herrero
#4 Updated by Riccardo Vitelli over 8 years ago
- Description updated (diff)
- Assignee deleted (
Ivan Herrero)
#5 Updated by Riccardo Vitelli over 8 years ago
- Status changed from Code: Impl to Closed
#305 - Add all the instances of "vc140.pdb" file to the ignore lists.