X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=service%2Fsystem%2Flogger_service%2Fserver%2Fsrc%2Fcached_file_writer.cpp;fp=service%2Fsystem%2Flogger_service%2Fserver%2Fsrc%2Fcached_file_writer.cpp;h=92c02f5a4df72c04362edb8e44ac45166b87ace2;hb=17cf21bcf8a2e29d2cbcf0a313474d2a4ee44f5d;hp=0000000000000000000000000000000000000000;hpb=9e86046cdb356913ae026f616e5bf17f6f238aa5;p=staging%2Fbasesystem.git diff --git a/service/system/logger_service/server/src/cached_file_writer.cpp b/service/system/logger_service/server/src/cached_file_writer.cpp new file mode 100755 index 0000000..92c02f5 --- /dev/null +++ b/service/system/logger_service/server/src/cached_file_writer.cpp @@ -0,0 +1,79 @@ +/* + * @copyright Copyright (c) 2016-2020 TOYOTA MOTOR CORPORATION. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/////////////////////////////////////////////////////////////////////////////// +/// \ingroup tag_SS_LoggerService +/// \brief TODO +/// +/////////////////////////////////////////////////////////////////////////////// +#include "readerWriter/writer/cached_file_writer.h" +#include + +namespace ReaderWriter { + +CCachedFileWriter::CCachedFileWriter() { + std::memset(this->m_buffer, 0, CACHED_BLOCK_SIZE); + m_index = 0u; +} + +CCachedFileWriter::~CCachedFileWriter() { +} + +EFrameworkunifiedStatus CCachedFileWriter::Write(UI_8* f_data, UI_32 f_length, + SI_32& f_bytesWritten) { + EFrameworkunifiedStatus l_eStatus = eFrameworkunifiedStatusOK; + // length check + if (f_data != NULL) { // LCOV_EXCL_BR_LINE 200: f_data can not be null + if ((this->m_index + f_length) > CACHED_BLOCK_SIZE) { // LCOV_EXCL_BR_LINE 200: data size can not over 4*1024 + l_eStatus = this->FlushCache(); + } + if (f_length > CACHED_BLOCK_SIZE) { // LCOV_EXCL_BR_LINE 200: data size can not over 4*1024 + // LCOV_EXCL_START 200: data size can not over 4*1024 + AGL_ASSERT_NOT_TESTED(); // LCOV_EXCL_LINE 200: test assert + FRAMEWORKUNIFIEDLOG(ZONE_ERR, __FUNCTION__, " Error. Possible memory corruption."); + FRAMEWORKUNIFIEDLOG( + ZONE_ERR, + __FUNCTION__, + " Error. Length(%d) bigger than cache. Will dump memory to core and ignore data. ", + f_length); + // LCOV_EXCL_STOP + } else { + (void) std::memcpy(&this->m_buffer[this->m_index], f_data, f_length); + this->m_index += f_length; + f_bytesWritten = f_length; + } + } else { + l_eStatus = eFrameworkunifiedStatusFail; + } + + return (l_eStatus); +} + +EFrameworkunifiedStatus CCachedFileWriter::FlushCache(void) { + EFrameworkunifiedStatus l_eStatus = eFrameworkunifiedStatusOK; + SI_32 l_written = 0; + SI_32 l_writtenTotal = 0; + while (((l_writtenTotal >= 0) && ((UI_32) l_writtenTotal < this->m_index)) + && (eFrameworkunifiedStatusOK == l_eStatus)) { + l_eStatus = this->WriteData(&this->m_buffer[l_writtenTotal], + this->m_index - l_writtenTotal, l_written); + l_writtenTotal += l_written; + l_written = 0; + } + this->m_index = 0; + return l_eStatus; +} +} // namespace ReaderWriter