User story #244
Windows file implementation
0%
Description
Implement the Windows File stream based on the previous MARTe implementation.
Source code files modified¶
Architecture & design review¶
Date of the review: 23/10/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: 20/11/2015
Person who did the review: André Neto
Result of review: PASS
List of non-conformities: N/A.
Unit test review¶
Date of the review: 20/11/2015
Person who did the review: André Neto
Result of coverage tests review: PASS
Result of functional tests review: N/A
Result of review: PASS
List of non-conformities:
Note: some tests unrelated to this user-story are failing on Windows:
[ FAILED ] BufferedStreamIGTest.TestPrintFormatted_Pointer_BufferSize_1
[ FAILED ] BufferedStreamIGTest.TestPrintFormatted_Pointer_BufferSize_2
[ FAILED ] BufferedStreamIGTest.TestPrintFormatted_Pointer_BufferSize_8
[ FAILED ] BufferedStreamIGTest.TestPrintFormatted_Pointer_BufferSize_64
[ FAILED ] BufferedStreamIGTest.TestPrintFormatted_Pointer_BufferSize_128
[ FAILED ] BufferedStreamIGTest.TestPrintFormatted_Pointer_BufferSize_1024
[ FAILED ] IOBufferGTest.TestPrintFormatted_Pointer
[ FAILED ] IOBufferGTest.TestPrintFormattedMultiple
Associated revisions
#244 - Preliminary version of BasicFile implementation for Windows
- Add FileSystem/L1Portability (with Environment\Windows inside)
- Add BasicFile.h
- Add BasicFile.cpp for Windows
- Update existing makefiles and create new ones for FileSystem and
BasicFile.
#244 - Finish BasicFile implementation for Windows
- Document all methods of BasicFile.
- Add hidden implementation by means of BasicFileProperties.
- Change calls to 32 bits versions of Win32 file functions with its 64
bits counterparts (functions tailed with "Ex").
- Add implementation for read/write methods with timeout.
#244 - Add error handling reporting for system calls and for
preconditions.
#244 - Format makefiles of Scheduler.
#244 - Fix makefiles for compiling, on Windows, of FileSystem in general
and BasicFile in particular.
#244 - Configure BasicFile for linking it into Windows DLL's.
#244 - Minor documentation changes
#244 - Synchronise function prototypes of BasicFile between .h and .cpp
files.
#244 - Import changes from #243_Linux_File branch and improve FileSystem
implementation for Windows.
- Import constants for integer limits on CompilerTypes from
#243_Linux_File branch.
- Import BasicFileTest and BasicFileGTest from #243_Linux_File branch.
- Update Makefile.inc files on all folders related with FileSystem.
- Add Makefile.msc files on all folders related with FileSystem.
- Fix bugs on implementation of BasicFile for Windows detected after
executing unit tests.
#244 - Add missing Makefile files for BasicFile unit testing on Windows.
#244 - First version of Windows implementation for BasicFile.
Note: Makefiles and units tests updated.
Merge branch 'develop' into #244_Windows_File_bis
#244 - Fix flags bugs on Windows implementation for BasicFile.
#244 - Change default value of flags on BasicFile.
#244 - Improvement of the Windows implementation for the assignment
operator and copy constructor of BasicFile.
- The assignment operator now releases the handle of the assigned
object, but in case of error, mantains its previous state.
- The copy constructor implementation has been refactored to mirror the
assignment operator one.
#244 Ready to be merged in develop
History
#1 Updated by André Neto over 9 years ago
- Status changed from New to Code: Impl
#2 Updated by André Neto over 9 years ago
- Description updated (diff)
#3 Updated by André Neto over 9 years ago
- Target version set to 0.7
#4 Updated by Ivan Herrero over 9 years ago
- Assignee set to Ivan Herrero
#5 Updated by Ivan Herrero over 9 years ago
- Status changed from Code: Impl to Code: Rev
- Assignee deleted (
Ivan Herrero)
#6 Updated by André Neto over 9 years ago
- Target version changed from 0.7 to 0.8
#7 Updated by Riccardo Vitelli over 9 years ago
- Status changed from Code: Rev to Code: Impl
#8 Updated by Riccardo Vitelli over 9 years ago
- Assignee set to Ivan Herrero
#9 Updated by André Neto over 9 years ago
- Status changed from Code: Impl to Code: Rev
#10 Updated by André Neto over 9 years ago
- Description updated (diff)
- Assignee changed from Ivan Herrero to André Neto
#11 Updated by André Neto over 9 years ago
- Status changed from Code: Rev to Unit: Impl
#12 Updated by André Neto over 9 years ago
- Assignee changed from André Neto to Ivan Herrero
#13 Updated by André Neto over 9 years ago
- Status changed from Unit: Impl to Unit: Rev
#14 Updated by André Neto over 9 years ago
- Assignee changed from Ivan Herrero to André Neto
#15 Updated by André Neto over 9 years ago
- Assignee deleted (
André Neto)
#16 Updated by André Neto over 9 years ago
Merged in develop in commit a6b9c80fae412edf15a936fc087b078a7b01932d
#17 Updated by André Neto over 9 years ago
- Status changed from Unit: Rev to Closed
#244 - Preliminary version of BasicFile implementation for Windows
- Add FileSystem/L1Portability (with Environment\Windows inside)
- Add BasicFile.h
- Add BasicFile.cpp for Windows
- Update existing makefiles and create new ones for FileSystem and
BasicFile.