Files
MuditaOS/module-apps/application-notes/NotesModel.cpp
2019-08-12 12:40:25 +02:00

48 lines
1.3 KiB
C++

/*
* @file NotesModel.cpp
* @author Robert Borzecki (robert.borzecki@mudita.com)
* @date 8 sie 2019
* @brief
* @copyright Copyright (C) 2019 mudita.com
* @details
*/
#include "service-db/api/DBServiceAPI.hpp"
#include "NotesModel.hpp"
NotesModel::NotesModel( app::Application* app) : DatabaseModel(app){
pageSize = 3;
}
NotesModel::~NotesModel() {
// TODO Auto-generated destructor stub
}
void NotesModel::requestRecordsCount() {
uint32_t start = xTaskGetTickCount();
recordsCount = DBServiceAPI::NotesGetCount(application);
uint32_t stop = xTaskGetTickCount();
LOG_INFO("DBServiceAPI::NotesGetCount %d records %d ms", recordsCount, stop-start);
//request first and second page if possible
if( recordsCount > 0 ){
DBServiceAPI::NotesGetLimitOffset(application, 0, pageSize );
if( recordsCount > pageSize ) {
DBServiceAPI::NotesGetLimitOffset(application, pageSize, pageSize );
}
}
}
bool NotesModel::updateRecords( std::unique_ptr<std::vector<NotesRecord>> records, const uint32_t offset, const uint32_t limit, uint32_t count ) {
LOG_INFO("Offset: %d, Limit: %d Count:%d", offset, limit, count);
for( uint32_t i=0; i<records.get()->size(); ++i ) {
LOG_INFO("id: %d, filename: %nos", records.get()->operator [](i).ID, records.get()->operator [](i).path.c_str());
}
return true;
}