forked from vain/pdfPres
-
Notifications
You must be signed in to change notification settings - Fork 1
/
notes.c
374 lines (318 loc) · 8.61 KB
/
notes.c
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
/*
Copyright 2009, 2010 Peter Hofmann
This file is part of pdfPres.
pdfPres 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.
pdfPres 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 pdfPres. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <sys/stat.h>
#include <gtk/gtk.h>
#include <libxml/xmlwriter.h>
#include "notes.h"
#include "pdfPres.h"
struct noteItem
{
int number;
gchar *text;
};
static GList *notesList = NULL;
static void clearNotes(void)
{
GList *it = notesList;
struct noteItem *ni = NULL;
while (it)
{
ni = (struct noteItem *)(it->data);
/* Free text if any. */
if (ni->text != NULL)
g_free(ni->text);
/* Free space alloc'd for the struct. */
free(ni);
it = g_list_next(it);
}
/* Free the whole list. */
g_list_free(notesList);
notesList = NULL;
}
static void setNote_strdup(int slideNum, char *text)
{
GList *it = notesList;
struct noteItem *ni = NULL;
/* See if there's already an element for this slideNum. */
while (it)
{
ni = (struct noteItem *)(it->data);
if (ni->number == slideNum)
{
/* Replace note. */
if (ni->text != NULL)
g_free(ni->text);
ni->text = g_strdup(text);
return;
}
it = g_list_next(it);
}
/* slideNum not found. Create a new one. */
ni = (struct noteItem *)malloc(sizeof(struct noteItem));
ni->number = slideNum;
ni->text = g_strdup(text);
notesList = g_list_append(notesList, ni);
}
void printNote(int slideNum)
{
GList *it = notesList;
struct noteItem *ni = NULL;
/* Search for this slideNum. */
while (it)
{
ni = (struct noteItem *)(it->data);
if (ni->number == slideNum && ni->text != NULL)
{
gtk_text_buffer_set_text(noteBuffer, ni->text,
strlen(ni->text));
return;
}
it = g_list_next(it);
}
/* Not found. */
gtk_text_buffer_set_text(noteBuffer, "", 0);
}
gboolean readNotes(char *filename)
{
GtkWidget *dialog = NULL;
xmlDoc *doc = NULL;
xmlNode *root_element = NULL;
xmlNode *cur_node = NULL;
xmlChar *tmp = NULL;
int slideNum = 0;
/* Clear notes list. */
clearNotes();
/* Try to read the file. */
doc = xmlReadFile(filename, NULL, 0);
if (doc == NULL)
{
dialog = gtk_message_dialog_new(GTK_WINDOW(win_preview),
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
"xml: Could not read file.");
gtk_dialog_run(GTK_DIALOG(dialog));
gtk_widget_destroy(dialog);
xmlCleanupParser();
return FALSE;
}
/* Get the root element. */
root_element = xmlDocGetRootElement(doc);
if (root_element == NULL)
{
dialog = gtk_message_dialog_new(GTK_WINDOW(win_preview),
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
"xml: Could not get root element.");
gtk_dialog_run(GTK_DIALOG(dialog));
gtk_widget_destroy(dialog);
xmlFreeDoc(doc);
xmlCleanupParser();
return FALSE;
}
/* Traverse slide-elements. */
for (cur_node = root_element->children; cur_node;
cur_node = cur_node->next)
{
if (cur_node->type == XML_ELEMENT_NODE
&& !xmlStrcmp(cur_node->name, BAD_CAST "slide"))
{
/* Get slide number and content. */
tmp = xmlGetProp(cur_node, BAD_CAST "number");
if (tmp == NULL)
continue;
slideNum = atoi((char *)tmp);
xmlFree(tmp);
if (slideNum <= 0)
continue;
tmp = xmlNodeGetContent(cur_node);
if (tmp == NULL)
continue;
/* Replace note text. */
setNote_strdup(slideNum, (char *)tmp);
xmlFree(tmp);
}
}
xmlFreeDoc(doc);
xmlCleanupParser();
return TRUE;
}
gboolean saveNotes(char *uri)
{
GList *it = notesList;
struct noteItem *ni = NULL;
int rc;
GtkWidget *dialog = NULL;
xmlTextWriterPtr writer;
/* Create a new XmlWriter for uri, with no compression. */
writer = xmlNewTextWriterFilename(uri, 0);
if (writer == NULL)
{
dialog = gtk_message_dialog_new(GTK_WINDOW(win_preview),
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
"xml: Error creating the xml writer.");
gtk_dialog_run(GTK_DIALOG(dialog));
gtk_widget_destroy(dialog);
xmlCleanupParser();
return FALSE;
}
/* Start the document with the xml default for the version, encoding
* UTF-8 and the default for the standalone declaration. */
rc = xmlTextWriterStartDocument(writer, NULL, "UTF-8", NULL);
if (rc < 0)
{
dialog = gtk_message_dialog_new(GTK_WINDOW(win_preview),
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
"xml: Could not start document. %d.", rc);
gtk_dialog_run(GTK_DIALOG(dialog));
gtk_widget_destroy(dialog);
xmlFreeTextWriter(writer);
xmlCleanupParser();
return FALSE;
}
/* Start root element. It's okay to use "BAD_CAST" since there
* are no non-ascii letters. */
rc = xmlTextWriterStartElement(writer, BAD_CAST "notes");
if (rc < 0)
{
dialog = gtk_message_dialog_new(GTK_WINDOW(win_preview),
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
"xml: Could not start element \"notes\". %d.", rc);
gtk_dialog_run(GTK_DIALOG(dialog));
gtk_widget_destroy(dialog);
xmlFreeTextWriter(writer);
xmlCleanupParser();
return FALSE;
}
/* Save all notes which do exist. Leave out empty slides. */
while (it)
{
ni = (struct noteItem *)(it->data);
if (ni->text != NULL && g_strcmp0("", ni->text) != 0)
{
/* Start of "slide" element. */
rc = xmlTextWriterStartElement(writer, BAD_CAST "slide");
if (rc < 0)
{
dialog = gtk_message_dialog_new(GTK_WINDOW(win_preview),
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
"xml: Could not start element \"slide\". %d.",
rc);
gtk_dialog_run(GTK_DIALOG(dialog));
gtk_widget_destroy(dialog);
xmlFreeTextWriter(writer);
xmlCleanupParser();
return FALSE;
}
/* Write page number as attribute. */
rc = xmlTextWriterWriteFormatAttribute(writer,
BAD_CAST "number", "%d", ni->number);
if (rc < 0)
{
dialog = gtk_message_dialog_new(GTK_WINDOW(win_preview),
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
"xml: Could not write attribute \"number\""
" for slide %d. %d.", ni->number, rc);
gtk_dialog_run(GTK_DIALOG(dialog));
gtk_widget_destroy(dialog);
xmlFreeTextWriter(writer);
xmlCleanupParser();
return FALSE;
}
/* Write note as element content. */
rc = xmlTextWriterWriteFormatString(writer,
"%s", ni->text);
if (rc < 0)
{
dialog = gtk_message_dialog_new(GTK_WINDOW(win_preview),
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
"xml: Could not write string"
" for slide %d. %d.", ni->number, rc);
gtk_dialog_run(GTK_DIALOG(dialog));
gtk_widget_destroy(dialog);
xmlFreeTextWriter(writer);
xmlCleanupParser();
return FALSE;
}
/* End of "slide" element. */
rc = xmlTextWriterEndElement(writer);
if (rc < 0)
{
dialog = gtk_message_dialog_new(GTK_WINDOW(win_preview),
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
"xml: Could not end element \"slide\". %d.",
rc);
gtk_dialog_run(GTK_DIALOG(dialog));
gtk_widget_destroy(dialog);
xmlFreeTextWriter(writer);
xmlCleanupParser();
return FALSE;
}
}
it = g_list_next(it);
}
/* Here we could close open elements using the function
* xmlTextWriterEndElement, but since we do not want to write any
* other elements, we simply call xmlTextWriterEndDocument, which
* will do all the work. */
rc = xmlTextWriterEndDocument(writer);
if (rc < 0)
{
dialog = gtk_message_dialog_new(GTK_WINDOW(win_preview),
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
"xml: Could not end document. %d.", rc);
gtk_dialog_run(GTK_DIALOG(dialog));
gtk_widget_destroy(dialog);
xmlFreeTextWriter(writer);
xmlCleanupParser();
return FALSE;
}
xmlFreeTextWriter(writer);
xmlCleanupParser();
/* Report success. */
return TRUE;
}
void saveCurrentNote(void)
{
GtkTextIter start, end;
gchar *content = NULL;
/* get text from the buffer */
gtk_text_buffer_get_bounds(noteBuffer, &start, &end);
content = gtk_text_buffer_get_text(noteBuffer, &start, &end, FALSE);
/* replace previous content */
setNote_strdup(doc_page + 1, content);
g_free(content);
}