summaryrefslogtreecommitdiff
path: root/lib-apps-common/src/Model/DataProvider.cpp
blob: 54b73e5e5d3d2ae842644d32732028d19eb588f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/*
 * Copyright 2017 Samsung Electronics Co., Ltd
 *
 * Licensed under the Flora License, Version 1.1 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://floralicense.org/license/
 *
 * 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.
 */

#include "Model/DataProvider.h"

using namespace Model;

DataProvider::DataProvider()
	: m_IsBusy(false), m_IsInitialized(false),
	  m_IsUpdateEnabled(true), m_IsUpdatePending(false),
	  m_IsDestroyPending(false)
{
}

DataProvider::~DataProvider()
{
	for (auto &&dataItem : m_DataList) {
		delete dataItem;
	}
}

const DataProvider::DataList &DataProvider::getDataList()
{
	return m_DataList;
}

void DataProvider::initialize(InitializeCallback callback)
{
	if (m_IsInitialized || m_IsBusy) {
		return;
	}

	m_IsBusy = true;
	m_OnInitialized = std::move(callback);

	startInit();
}

void DataProvider::update()
{
	if (!m_IsInitialized) {
		return;
	}

	if (!m_IsUpdateEnabled || m_IsBusy) {
		m_IsUpdatePending = true;
		return;
	}

	m_IsBusy = true;
	m_IsUpdatePending = false;
	m_OnUpdateStarted();

	startUpdate();
}

void DataProvider::destroy()
{
	if (m_IsBusy) {
		m_IsDestroyPending = true;
	} else {
		delete this;
	}
}

void DataProvider::setUpdateEnabled(bool isEnabled)
{
	m_IsUpdateEnabled = isEnabled;
	if (m_IsUpdateEnabled && m_IsUpdatePending) {
		update();
	}
}

DataProvider::InsertCallback &DataProvider::onInserted()
{
	return m_OnInserted;
}

DataProvider::UpdateCallback &DataProvider::onUpdateStarted()
{
	return m_OnUpdateStarted;
}

DataProvider::UpdateCallback &DataProvider::onUpdateFinished()
{
	return m_OnUpdateFinished;
}

void DataProvider::insertDataItem(DataItem *dataItem)
{
	dataItem->m_ChangeType = ChangeInsert;
	m_DataList.push_back(dataItem);
}

void DataProvider::deleteDataItem(DataItem &dataItem)
{
	dataItem.m_ChangeType = ChangeDelete;
}

void DataProvider::finishInit(DataList dataList)
{
	if (m_IsDestroyPending) {
		delete this;
		return;
	}

	m_DataList = std::move(dataList);
	m_IsInitialized = true;

	if (m_OnInitialized) {
		m_OnInitialized();
		m_OnInitialized = nullptr;
	}

	m_IsBusy = false;
}

void DataProvider::finishUpdate()
{
	if (m_IsDestroyPending) {
		delete this;
		return;
	}

	for (auto it = m_DataList.begin(); it != m_DataList.end(); ) {
		auto changeType = (*it)->m_ChangeType;
		(*it)->finishUpdate();

		if (changeType == ChangeInsert) {
			if (m_OnInserted) {
				m_OnInserted(**it);
			}
		} else if (changeType == ChangeDelete) {
			delete *it;
			it = m_DataList.erase(it);
			continue;
		}

		++it;
	}
	m_OnUpdateFinished();

	m_IsBusy = false;
	if (m_IsUpdatePending) {
		update();
	}
}