Project

General

Profile

User story #142

MARTe-EX-F-1.1.15: The framework shall offer portable support for basic console operations.

Added by Riccardo Vitelli almost 10 years ago. Updated over 9 years ago.

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

0%

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

Description

Implement requirement MARTe-EX-F-1.1.15 based on the original MARTe implementation.

Note: Basic is intended as with no streaming support. Expected functionality (as minimum) is I/O to/from stdin/stdout. This implementation should be portable and delegated to the different operating systems console implementation.

Source code files modified

  • Source/Core/L0Portability/BasicConsole.cpp
  • Source/Core/L0Portability/BasicConsole.h
  • Source/Core/L0Portability/OperatingSystem/Linux/BasicConsoleOS.cpp
  • Source/Core/L0Portability/OperatingSystem/Windows/BasicConsoleOS.cpp
  • Test/Core/L0Portability/BasicConsoleTest.cpp
  • Test/Core/L0Portability/BasicConsoleTest.h
  • Test/GTest/BasicConsoleGTest.cpp

Architecture & design review

Date of the review: 23/06/2015

Person who did the review: André Neto

Version of architecture & design document: N/A. As per the original MARTe implementation, this is a support function and does not require formal design in UML.

Result of review: N/A

List of non-conformities: N/A

Code and documentation review

Date of the review: 01/07/2015

Person who did the review: Ivan Herrero

Result of review: PASS

List of non-conformities: N/A

Unit test review

Date of the review: 24/07/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:

Coverage note: Some error paths not exercised

The following methods of BasicConsole do not have an explicit test, because the answer is different according to the target operating system:
  • bool ColourSupported()
  • bool ConsoleBufferSupported()
  • bool CursorPositionSupported()
  • bool TitleBarSupported()
  • bool WindowSizeSupported()
  • bool TimeoutSupported()
The following methods of BasicConsole are not tested because they are not implemented in Linux:
  • ErrorType BasicConsole::ShowBuffer();
  • ErrorType BasicConsole::SetColour(const Colours &foregroundColour, const Colours &backgroundColour);
  • ErrorType BasicConsole::SetTitleBar(const char8 * const title);
  • ErrorType BasicConsole::GetTitleBar(char8 * const title, const uint32 &size) const;
  • ErrorType BasicConsole::SetCursorPosition(const uint32 &column, const uint32 &row);
  • ErrorType BasicConsole::GetCursorPosition(uint32 &column, uint32 &row) const;
  • ErrorType BasicConsole::SetWindowSize(const uint32 &numberOfColumns, const uint32 &numberOfRows);
  • ErrorType BasicConsole::GetWindowSize(uint32 &numberOfColumns, uint32 &numberOfRows) const;
  • ErrorType BasicConsole::PlotChar(const char8 &c, const Colours &foregroundColour, const Colours &backgroundColour, const uint32 &column, const uint32 &row);

Associated revisions

Revision 65eef75c (diff)
Added by Giuseppe Ferrò almost 10 years ago

Added BasicConsole implementation
#142

Revision 98bcb659 (diff)
Added by Giuseppe Ferrò almost 10 years ago

Fixed warnings.
#142

Revision 44118403 (diff)
Added by Giuseppe Ferrò almost 10 years ago

Fixed issues accordingly with revision.
#142

Revision fc4753aa (diff)
Added by Giuseppe Ferrò almost 10 years ago

Corrected code accordingly with revision.
#142

Revision c2568369 (diff)
Added by Llorenc Capella over 9 years ago

US #142 Basic console tests added and BasicConsole::Write() corrected.

List of changes: * When size > real string size the Write() returns a wrong size
written. It was corrected. * Makefile.inc in the GTest folter modified to include the ConsoleGTest * Rename TestOpen to TestOpenModeDefault * TestOpenModeCreateNewBuffer added. * TestOpenPerformCharacterInput added. * TestOpenDisableControlBreak added. * TestOpenEnablePaging added. * TestGetMode added. * TestClose added. * Rename TestWrite to TestWriteCheckReturn. * TestWriteNullString added. * TestWriteExactSize added. * TestWriteSmallSize added. * TestWriteLargeSize added. * TestWirteEndColumn added.

Revision 973b449b (diff)
Added by Llorenc Capella over 9 years ago

US #142 BasicConsoleOS bug correction

Bug related with currentColumn corrected. Now when the currentChar='\n'
the currentColumn is reseted (set to 0).

Revision d8a20764 (diff)
Added by Giuseppe Ferrò over 9 years ago

BasicConsole tests implementation.
#142

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

#142 - Minor formatting corrections (following template rules)

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

Added TestConstructor and TestTimeoutRead to BasicConsoleTest.
#142

History

#1 Updated by André Neto almost 10 years ago

  • Subject changed from MARTe-EX-F-1.1.15: The framework shall have basic and portable support for console operations. to MARTe-EX-F-1.1.15: The framework shall offer portable support for basic console operations.
  • Description updated (diff)

#2 Updated by Riccardo Vitelli almost 10 years ago

  • Status changed from New to Arch: Rev

#3 Updated by Riccardo Vitelli almost 10 years ago

  • Assignee set to André Neto

#4 Updated by André Neto almost 10 years ago

  • Description updated (diff)

#5 Updated by Giuseppe Ferro almost 10 years ago

  • Status changed from Arch: Rev to Code: Impl

#6 Updated by Giuseppe Ferro almost 10 years ago

  • Assignee changed from André Neto to Giuseppe Ferro

#7 Updated by Riccardo Vitelli almost 10 years ago

  • Status changed from Code: Impl to Code: Rev

#8 Updated by Riccardo Vitelli almost 10 years ago

  • Assignee changed from Giuseppe Ferro to Ivan Herrero

#9 Updated by Ivan Herrero almost 10 years ago

  • Description updated (diff)

Code and documentation review made on revision b99ba9f. Code and documentation corrections pending.

#10 Updated by André Neto almost 10 years ago

  • Status changed from Code: Rev to Code: Impl

#11 Updated by André Neto almost 10 years ago

  • Assignee changed from Ivan Herrero to Giuseppe Ferro

#12 Updated by Riccardo Vitelli almost 10 years ago

  • Status changed from Code: Impl to Code: Rev

#13 Updated by Riccardo Vitelli almost 10 years ago

  • Assignee deleted (Giuseppe Ferro)

#14 Updated by Ivan Herrero almost 10 years ago

  • Description updated (diff)

Source/Core/L0Portability/OperatingSystem/Linux/BasicConsoleOS.h correction not completed, yet.
Source/Core/L0Portability/OperatingSystem/Windows/BasicConsoleOS.h correction not completed, yet.

#15 Updated by Ivan Herrero almost 10 years ago

  • Status changed from Code: Rev to Code: Impl

#16 Updated by Giuseppe Ferro almost 10 years ago

  • Assignee set to Giuseppe Ferro

#17 Updated by Riccardo Vitelli almost 10 years ago

  • Status changed from Code: Impl to Code: Rev

#18 Updated by Riccardo Vitelli almost 10 years ago

  • Assignee deleted (Giuseppe Ferro)

#19 Updated by Ivan Herrero almost 10 years ago

  • Description updated (diff)
  • Assignee set to Ivan Herrero

Code and documentation review made on revision 8e15315 [PASS].

#20 Updated by Riccardo Vitelli almost 10 years ago

  • Status changed from Code: Rev to Unit: Impl

#21 Updated by Riccardo Vitelli almost 10 years ago

  • Assignee deleted (Ivan Herrero)

#22 Updated by Riccardo Vitelli almost 10 years ago

  • Target version changed from 0.1 to 0.2

#23 Updated by Llorenc Capella over 9 years ago

  • Assignee set to Llorenc Capella

#24 Updated by Llorenc Capella over 9 years ago

  • Status changed from Unit: Impl to Unit: Rev

#25 Updated by Llorenc Capella over 9 years ago

  • Assignee deleted (Llorenc Capella)

TestPerfChar() does not work well on the eclipse console (because it needs an enter), but does work on the Linux console.

#26 Updated by Llorenc Capella over 9 years ago

  • Status changed from Unit: Rev to Unit: Impl

#27 Updated by Llorenc Capella over 9 years ago

  • Assignee set to Giuseppe Ferro

#28 Updated by Giuseppe Ferro over 9 years ago

  • Status changed from Unit: Impl to Unit: Rev

#29 Updated by Giuseppe Ferro over 9 years ago

  • Assignee deleted (Giuseppe Ferro)

Unit Tests done.

#30 Updated by Ivan Herrero over 9 years ago

  • Assignee set to Ivan Herrero

#31 Updated by Ivan Herrero over 9 years ago

  • Description updated (diff)
  • Status changed from Unit: Rev to Unit: Impl
  • Assignee deleted (Ivan Herrero)

Unit test review made on revision c4cb5ff.

#32 Updated by Giuseppe Ferro over 9 years ago

  • Assignee set to Giuseppe Ferro

#33 Updated by Giuseppe Ferro over 9 years ago

  • Assignee deleted (Giuseppe Ferro)

Unit Implementation Done: efd10a0

#34 Updated by Giuseppe Ferro over 9 years ago

  • Status changed from Unit: Impl to Unit: Rev

#35 Updated by Ivan Herrero over 9 years ago

  • Assignee set to Ivan Herrero

#36 Updated by Ivan Herrero over 9 years ago

  • Description updated (diff)
  • Status changed from Unit: Rev to Closed
  • Assignee deleted (Ivan Herrero)

Unit test review made on revision cb388cb.

Also available in: Atom PDF