aboutsummaryrefslogtreecommitdiff
path: root/afdnotebook.cc
blob: 58ae35956c4fa27188d5fae6a27f43fd5f5721ba (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
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
/*
 * scribiu -- read notebooks and voice memos from Livescribe pens
 * Copyright (C) 2015 Javier S. Pedro <javier@javispedro.com>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <cmath>
#include <QtCore/QDebug>
#include <QtGui/QPixmapCache>
#include "xmlutils.h"
#include "smartpen.h"
#include "afdnotebook.h"

AfdNotebook::AfdNotebook(QObject *parent)
    : QObject(parent)
{
}

AfdNotebook::~AfdNotebook()
{
}

bool AfdNotebook::open(const QString &path)
{
	_dir.setPath(path);
	if (!_dir.exists()) {
		qWarning() << "Directory" << _dir.absolutePath() << "does not exist";
		return false;
	}
	if (!parseMainInfo()) {
		return false;
	}
	if (!parseMainDocument()) {
		return false;
	}
	if (!findPenData()) {
		return false;
	}
	return true;
}

void AfdNotebook::close()
{
	_title.clear();
	_lastPage = _firstPage = AfdPageAddress();
	_pagesPerBook = 0;
	_gfx.clear();
	_pages.clear();
	_penData.clear();
	_dir.setPath(QString());
}

QString AfdNotebook::title() const
{
	return _title;
}

quint64 AfdNotebook::guid() const
{
	return _guid;
}

int AfdNotebook::numPages() const
{
	return _pages.size();
}

AfdPageAddress AfdNotebook::getPageAddress(int pageNum) const
{
	if (pageNum < 0 || pageNum >= _pages.size()) {
		qWarning() << "Invalid page number:" << pageNum << "for notebook" << _title;
	}
	uint new_page = _firstPage.page() + pageNum;
	return AfdPageAddress(_firstPage.section(), _firstPage.segment(), _firstPage.shelf(),
	                      _firstPage.book() + new_page / _pagesPerBook,
	                      new_page % _pagesPerBook);
}

int AfdNotebook::getPageNumber(const AfdPageAddress &addr) const
{
	if (addr.section() == _firstPage.section()
	        && addr.segment() == _firstPage.segment()
	        && addr.shelf() == _firstPage.shelf()) {
		long firstPage = (_firstPage.book() * _pagesPerBook) + _firstPage.page();
		long page = (addr.book() * _pagesPerBook) + addr.page() - firstPage;
		if (page >= 0 && page < _pages.size()) {
			return page;
		}
	}

	qWarning() << "Invalid address for notebook" << _title;
	return -1;
}

QString AfdNotebook::getPageBackgroundName(int page) const
{
	const Page& p = _pages.at(page);
	return p.gfx->basename;
}

QPixmap AfdNotebook::getPageBackground(int page)
{
	const Page& p = _pages.at(page);
	QPixmap pix;
	if (QPixmapCache::find(p.gfx->basename, &pix)) {
		return pix;
	}

	const QString file = QString("userdata/lsac_data/%1.png").arg(p.gfx->basename);
	QImage img;

	qDebug() << "Loading page background " << file;

	if (!img.load(_dir.filePath(file), "PNG")) {
		qWarning() << "Could not load background file:" << _dir.absoluteFilePath(file);
		return pix;
	}

	QRect cropRect = img.rect();
	QRect trim = getPageTrim(page);
	QPointF scale(cropRect.width() / double(p.size.width()),
	              cropRect.height() / double(p.size.height()));

	cropRect.adjust(lround(trim.x() * scale.x()), lround(trim.y() * scale.y()),
	                lround(-(p.size.width() - trim.bottomRight().x()) * scale.x()),
	                lround(-(p.size.height() - trim.bottomRight().y()) * scale.y()));

	qDebug() << "Cropping image from" << img.rect() << "to" << cropRect;

	pix = QPixmap::fromImage(img.copy(cropRect));
	QPixmapCache::insert(p.gfx->basename, pix);

	return pix;
}

QSize AfdNotebook::getPageSize(int page) const
{
	const Page &p = _pages.at(page);
	return p.size;
}

QRect AfdNotebook::getPageTrim(int page) const
{
	const Page &p = _pages.at(page);
	QRect trim(QPoint(0, 0), p.size);
	if (p.size.width() > SMARTPEN_BLEED_X * 2 && p.size.height() > SMARTPEN_BLEED_Y * 2) {
		trim.adjust(SMARTPEN_BLEED_X, SMARTPEN_BLEED_Y, -SMARTPEN_BLEED_X, -SMARTPEN_BLEED_Y);
	}
	return trim;
}

QStringList AfdNotebook::penSerials() const
{
	return _penData.keys();
}

QList<int> AfdNotebook::pagesWithStrokes(const QString &penSerial) const
{
	if (_penData.contains(penSerial)) {
		const PenData &data = _penData[penSerial];
		return data.strokes.uniqueKeys();
	} else {
		return QList<int>();
	}
}

QStringList AfdNotebook::strokeFiles(const QString &penSerial, int page) const
{
	QStringList l;
	if (!_penData.contains(penSerial)) return l;

	const PenData &data = _penData[penSerial];
	QMultiMap<int, StrokeData>::const_iterator it = data.strokes.find(page);
	while (it != data.strokes.end() && it.key() == page) {
		const StrokeData &stroke = it.value();
		l.append(_dir.filePath(stroke.file));
		++it;
	}

	return l;
}

bool AfdNotebook::readStrokes(const QString &penSerial, int page, StfReader::StrokeHandler *handler)
{
	if (!_penData.contains(penSerial)) return true;

	StfReader stf;
	stf.setStrokeHandler(handler);

	const PenData &data = _penData[penSerial];
	QMultiMap<int, StrokeData>::const_iterator it = data.strokes.find(page);
	while (it != data.strokes.end() && it.key() == page) {
		const StrokeData &stroke = it.value();
		qDebug() << "Reading strokes from" << stroke.file;
		if (!stf.parse(_dir.filePath(stroke.file))) {
			qWarning() << "Could not parse stroke file" << stroke.file;
			return false;
		}
		++it;
	}

	return true;
}

QMap<QString, QString> AfdNotebook::parsePropertyList(QIODevice *dev)
{
	QMap<QString, QString> result;
	QByteArray line;

	while (!(line = dev->readLine()).isEmpty()) {
		int sep = line.indexOf(':');
		QString key = QString::fromLatin1(line.constData(), sep);
		result[key] = QString::fromUtf8(line.constData() + sep + 1).trimmed();
	}

	return result;
}

QMap<QString, QString> AfdNotebook::parsePropertyList(const QString &relativePath) const
{
	QFile f(_dir.filePath(relativePath));
	if (!f.open(QIODevice::ReadOnly | QIODevice::Text)) {
		return QMap<QString, QString>();
	}
	return parsePropertyList(&f);
}

bool AfdNotebook::parseMainInfo()
{
	QMap<QString, QString> info = parsePropertyList("main.info");

	if (info.isEmpty()) {
		qWarning() << "Empty main.info";
		return false;
	}

	_title = info["title"];
	_guid = info["guid"].mid(2).toULongLong(0, 16);
	_firstPage = AfdPageAddress(info["pagestart"]);
	_lastPage = AfdPageAddress(info["pagestop"]);
	_pagesPerBook = info.value("segment-pages-per-book", "108").toUInt();

	return true;
}

bool AfdNotebook::parseMainDocument()
{
	QFile f(_dir.filePath("main.document"));
	if (!f.open(QIODevice::ReadOnly | QIODevice::Text)) {
		return false;
	}

	QXmlStreamReader r(&f);

	Q_ASSERT(_pages.isEmpty());
	Q_ASSERT(_gfx.isEmpty());

	advanceToFirstChildElement(r, "document");
	while (r.readNextStartElement()) {
		if (r.name() == "page") {
			QXmlStreamAttributes attrs = r.attributes();
			QString gfxfile;
			gfxfile += attrs.value("basepath");
			gfxfile += '/';
			gfxfile += attrs.value("gfxfile_ref");

			Page p;
			p.gfx = &_gfx[gfxfile];
			p.size.setWidth(attrs.value("width").toString().toInt());
			p.size.setHeight(attrs.value("height").toString().toInt());
			_pages.append(p);

			r.skipCurrentElement();
		} else {
			qWarning() << "Ignoring unknown element" << r.name() << "in main.document";
		}
	}

	if (_pages.isEmpty()) {
		qWarning() << "Notebook has no pages";
		return false;
	}

	foreach (const QString &gfxfile, _gfx.keys()) {
		if (!parseGfx(gfxfile)) {
			return false;
		}
	}

	return true;
}

bool AfdNotebook::parseGfx(const QString &file)
{
	QFile f(_dir.filePath(file));
	if (!f.open(QIODevice::ReadOnly | QIODevice::Text)) {
		return false;
	}

	QXmlStreamReader r(&f);

	Gfx &gfx = _gfx[file];
	Q_ASSERT(gfx.basename.isEmpty());

	advanceToFirstChildElement(r, "graphics");
	advanceToFirstChildElement(r, "setbase");
	advanceToFirstChildElement(r, "image");
	if (!r.atEnd()) {
		QXmlStreamAttributes attrs = r.attributes();
		QString imageSrc = attrs.value("src").toString();
		qDebug() << " image src" << imageSrc;
		int lastSlash = imageSrc.lastIndexOf('/');
		int lastDot = imageSrc.lastIndexOf('.');
		if (lastSlash >= 0 && lastDot > lastSlash) {
			gfx.basename = imageSrc.mid(lastSlash + 1, lastDot - lastSlash - 1);
			qDebug() << "  gfx" << gfx.basename;
		}
	}

	return true;
}

bool AfdNotebook::findPenData()
{
	QDir dir(_dir.filePath("data"));
	if (!dir.exists()) {
		return false;
	}

	QStringList pageDirs = dir.entryList(QDir::Dirs | QDir::NoDotAndDotDot);
	foreach (QString pageName, pageDirs) {
		pageName.remove('/');
		qDebug() << " page data" << pageName;
		int pageNum = getPageNumber(AfdPageAddress(pageName));
		if (pageNum < 0) continue;

		QDir pageDir(dir.filePath(pageName));
		if (!pageDir.exists()) continue;
		QStringList penDirs = pageDir.entryList(QDir::Dirs | QDir::NoDotAndDotDot);
		foreach (QString penName, penDirs) {
			penName.remove('/');
			qDebug() << "  pen data" << penName;
			QDir penDir(pageDir.filePath(penName));
			if (!penDir.exists()) continue;

			QStringList strokeFiles = penDir.entryList(QStringList("*.stf"), QDir::Files);
			foreach (const QString &strokeFile, strokeFiles) {
				qDebug() << "   stroke data" << strokeFile;

				if (strokeFile.length() != 25) {
					qWarning() << "Invalid stroke filename format" << strokeFile;
					continue;
				}

				StrokeData stroke;
				stroke.file = penDir.filePath(strokeFile);
				bool ok = true;

				if (ok) stroke.begin = strokeFile.mid(2, 8).toLongLong(&ok, 16) * 1000ULL;
				if (ok) stroke.end = strokeFile.mid(13, 8).toLongLong(&ok, 16) * 1000ULL;

				if (!ok) {
					qWarning() << "Invalid stroke filename format" << strokeFile;
					continue;
				}

				qDebug() << "    from" << stroke.begin << "to" << stroke.end;

				_penData[penName].strokes.insert(pageNum, stroke);
			}
		}
	}

	return true;
}