-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcache.cpp
232 lines (208 loc) · 6.26 KB
/
cache.cpp
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
#include "cache.h"
#include <QDebug>
#include <QUuid>
#include <QtCore>
Cache* Cache::m_instance = NULL;
Notebook* Cache::m_sel_notebook = NULL;
Cache::Cache(QObject *parent) :
QObject(parent),
nextNotebook(0)
{
tags = new QVector <Tag> ();
notebooks = new QVector <Notebook> ();
notes = new QVector <Note>();
}
Cache* Cache::instance(){
if(!m_instance){
m_instance = new Cache();
}
return m_instance;
}
void Cache::setNextNotebook()
{
m_sel_notebook = const_cast<Notebook*>(¬ebooks->at(nextNotebook));
notebookFired(new NotebookWrapper(notebooks->at(nextNotebook)));
nextNotebook++;
if (nextNotebook >= notebooks->size()) {
nextNotebook = 0;
}
}
Notebook* Cache::selectedNotebook(){
if (!m_sel_notebook) {
for (int i=0; i < Cache::instance()->notebooks->size(); i++) {
Notebook notebook = Cache::instance()->notebooks->at(i);
if(notebook.defaultNotebook) {
qDebug() << "Got notebook " << QString::fromStdString(notebook.name);
m_sel_notebook = const_cast<Notebook*>(&Cache::instance()->notebooks->at(i));
}
}
}
return m_sel_notebook;
}
void Cache::setSelectedNotebook(QString guid){
for (int i=0; i < notebooks->size(); i++) {
Notebook notebook = notebooks->at(i);
if(notebook.guid == guid.toStdString()) {
qDebug() << "Got notebook " << QString::fromStdString(notebook.guid);
m_sel_notebook = const_cast<Notebook*>(¬ebooks->at(i));
}
}
}
Cache::~Cache() {
}
void Cache::clear(){
tags->clear();
notebooks->clear();
notes->clear();
}
void Cache::softLoad() {
clearNotes();
clearSearches();
qDebug() << "Notes size: " << notes->size();
for(int i=0;i<notes->size();i++){
Note note = notes->at(i);
if (m_sel_notebook) {
if (note.notebookGuid == m_sel_notebook->guid){
NoteWrapper* noteWrapper = new NoteWrapper(note);
noteAdded(noteWrapper);
}
} else {
NoteWrapper* noteWrapper = new NoteWrapper(note);
noteAdded(noteWrapper);
}
}
}
void Cache::load(){
tags = DatabaseManager::instance()->getTags();
notebooks = DatabaseManager::instance()->getNotebooks();
notes = DatabaseManager::instance()->getNotes();
searches = DatabaseManager::instance()->getSavedSearches();
clearNotes();
clearSearches();
qDebug() << "Notes size: " << notes->size();
for(int i=0;i<notes->size();i++){
Note note = notes->at(i);
if (m_sel_notebook) {
if (note.notebookGuid == m_sel_notebook->guid){
NoteWrapper* noteWrapper = new NoteWrapper(note);
noteAdded(noteWrapper);
}
} else {
NoteWrapper* noteWrapper = new NoteWrapper(note);
noteAdded(noteWrapper);
}
}
}
NoteWrapper* Cache::getNote(int index){
if (!notes->isEmpty()) {
return new NoteWrapper(notes->at(index));
} else {
return NULL;
}
}
QString Cache::getNoteContent(NoteWrapper* note){
return FileUtils::readNoteContent(note);
}
void Cache::clearFileCache(){
FileUtils::removeNoteDir();
}
void Cache::fillWithTags(){
for(int i=0;i<tags->size();i++){
Tag tag = tags->at(i);
TagWrapper* wrapper = new TagWrapper(tag);
tagFired(wrapper);
}
}
void Cache::fillWithNotebooks(){
for(int i=0;i<notebooks->size();i++){
Notebook notebook = notebooks->at(i);
if (notebook.defaultNotebook) {
m_sel_notebook = ¬ebook;
}
NotebookWrapper* wrapper = new NotebookWrapper(notebook);
notebookFired(wrapper);
}
}
void Cache::fillWithSavedSearches() {
for(int i=0; i < searches->size(); i++) {
SavedSearch search = searches->at(i);
SavedSearchWrapper* wrapper = new SavedSearchWrapper(search);
savedSearchFired(wrapper);
}
}
QString Cache::getCacheFileName(NoteWrapper* note){
return FileUtils::noteContentFilePath(note);
}
NotebookWrapper* Cache::getNotebook(NoteWrapper* note){
for(int i=0;i<notebooks->size();i++){
Notebook notebook = notebooks->at(i);
if(notebook.guid.compare(note->getNotebookGUID().toStdString()) == 0){
return new NotebookWrapper(notebook);
}
}
}
NotebookWrapper* Cache::getFirstNoteBook() {
return new NotebookWrapper(notebooks->at(0));
}
TagWrapper* Cache::getTagForGuid(QString guid) {
for(int i=0; i<tags->size(); i++) {
if(tags->at(i).guid == guid.toStdString()) {
return new TagWrapper(tags->at(i));
}
}
}
NoteWrapper* Cache::getNoteForGuid(QString guid) {
for (int i=0; i < notes->size(); i++) {
if(notes->at(i).guid == guid.toStdString()) {
return new NoteWrapper(notes->at(i));
}
}
}
SavedSearchWrapper* Cache::getSavedSearch(int index) {
return new SavedSearchWrapper(searches->at(index));
}
SavedSearchWrapper* Cache::getSavedSearchForGuid(QString guid) {
for (int i=0; i < searches->size(); i++) {
if(searches->at(i).guid == guid.toStdString()) {
return new SavedSearchWrapper(searches->at(i));
}
}
}
QString Cache::genGuid() {
return QUuid::createUuid().toString().replace("{","").replace("}","");
}
ResourceWrapper* Cache::getResourceForNote(NoteWrapper* note, QString guid){
std::vector<Resource> resources = DatabaseManager::instance()->getNoteResources(note->note);
for (int i = 0; i < resources.size(); i++) {
Resource res = resources.at(i);
if (res.guid == guid.toStdString()) {
return new ResourceWrapper(res);
}
}
}
void Cache::setToDefaultNotebook()
{
m_sel_notebook = NULL;
}
void Cache::fireClearNotes() {
clearNotes();
}
void Cache::fireNoteAdded(NoteWrapper *note) {
noteAdded(note);
}
void Cache::fireClearSearches() {
clearSearches();
}
/*void Cache::loadTags(){
if(isTagsLoaded() || EvernoteSession::instance()->isSyncInProgress()){
return;
}
clearTags();
tags = DatabaseManager::instance()->getTags();
for(int i=0;i<tags->size();i++){
Tag tag = tags->at(i);
TagWrapper* tagWrapper = new TagWrapper(tag);
tagAdded(tagWrapper);
}
setTagsLoaded(true);
}*/