]> www.fi.muni.cz Git - evince.git/blob - shell/ev-page-cache.c
Hungarian translation updated.
[evince.git] / shell / ev-page-cache.c
1 #include "ev-page-cache.h"
2 #include "ev-job-queue.h"
3 #include <stdlib.h>
4 #include <string.h>
5
6 typedef struct _EvPageCacheInfo
7 {
8         double width;
9         double height;
10 }
11 EvPageCacheInfo;
12
13
14 struct _EvPageCache
15 {
16         GObject parent;
17
18         gint current_page;
19         int n_pages;
20         char *title;
21         char **page_labels;
22         
23         gint max_label_chars;
24         gboolean has_labels;
25         gboolean uniform;
26         
27         double uniform_width;
28         double uniform_height;
29
30         double  max_width;
31         double  max_height;
32
33         double* height_to_page;
34         double* dual_height_to_page;
35
36         int rotation;
37
38         EvPageCacheInfo *size_cache;
39         EvDocumentInfo *page_info;
40 };
41
42 struct _EvPageCacheClass
43 {
44         GObjectClass parent_class;
45
46         void (* page_changed) (EvPageCache *page_cache, gint page);
47 };
48
49 enum
50 {
51         PAGE_CHANGED,
52         N_SIGNALS,
53 };
54
55 static guint signals[N_SIGNALS] = {0, };
56
57 static void ev_page_cache_init       (EvPageCache      *page_cache);
58 static void ev_page_cache_class_init (EvPageCacheClass *page_cache);
59 static void ev_page_cache_finalize   (GObject *object);
60
61 G_DEFINE_TYPE (EvPageCache, ev_page_cache, G_TYPE_OBJECT)
62
63 static void
64 ev_page_cache_init (EvPageCache *page_cache)
65 {
66         page_cache->current_page = -1;
67         page_cache->max_label_chars = 0;
68 }
69
70 static void
71 ev_page_cache_class_init (EvPageCacheClass *class)
72 {
73         GObjectClass *object_class;
74
75         object_class = G_OBJECT_CLASS (class);
76
77         object_class->finalize = ev_page_cache_finalize;
78
79         signals [PAGE_CHANGED] =
80                 g_signal_new ("page-changed",
81                               EV_TYPE_PAGE_CACHE,
82                               G_SIGNAL_RUN_LAST,
83                               G_STRUCT_OFFSET (EvPageCacheClass, page_changed),
84                               NULL, NULL,
85                               g_cclosure_marshal_VOID__INT,
86                               G_TYPE_NONE, 1,
87                               G_TYPE_INT);
88
89 }
90
91 static void
92 ev_page_cache_finalize (GObject *object)
93 {
94         EvPageCache *page_cache;
95
96         page_cache = EV_PAGE_CACHE (object);
97
98         g_free (page_cache->title);
99         g_free (page_cache->size_cache);
100         g_free (page_cache->height_to_page);
101         g_free (page_cache->dual_height_to_page);
102
103         ev_document_info_free (page_cache->page_info);
104 }
105
106 static void
107 build_height_to_page (EvPageCache *page_cache)
108 {
109         gboolean swap;
110         int i;
111         double uniform_height, page_height, next_page_height;
112         double saved_height;
113
114         swap = (page_cache->rotation == 90 ||
115                 page_cache->rotation == 270);
116
117         g_free (page_cache->height_to_page);
118         g_free (page_cache->dual_height_to_page);
119
120         page_cache->height_to_page = g_new0(double, page_cache->n_pages);
121         page_cache->dual_height_to_page = g_new0(double, page_cache->n_pages / 2 + 1);
122         
123         saved_height = 0;
124         for (i = 0; i < page_cache->n_pages; i++) {
125                 if (page_cache->uniform) {
126                         if (!swap) {
127                                 uniform_height = page_cache->uniform_height;
128                         } else {
129                                 uniform_height = page_cache->uniform_width;
130                         }
131                         page_cache->height_to_page [i] = (i + 1) * uniform_height;
132                 } else {
133                         if (!swap) {
134                                 page_height = page_cache->size_cache [i].height;
135                         } else {
136                                 page_height = page_cache->size_cache [i].width;
137                         }
138                         page_cache->height_to_page [i] = saved_height + page_height;
139                         saved_height = page_cache->height_to_page [i];
140                 }
141         }
142         
143         saved_height = 0;
144         for (i = 0; i < page_cache->n_pages; i += 2) {
145                 if (page_cache->uniform) {
146                         if (!swap) {
147                                 uniform_height = page_cache->uniform_height;
148                         } else {
149                                 uniform_height = page_cache->uniform_width;
150                         }
151                         page_cache->dual_height_to_page [i / 2] = (i / 2 + 1) * uniform_height;
152                 } else {
153                         if (!swap) {
154                                 page_height = page_cache->size_cache [i].height;
155                                 next_page_height = page_cache->size_cache [i + 1].height;
156                         } else {
157                                 page_height = page_cache->size_cache [i].width;
158                                 next_page_height = page_cache->size_cache [i + 1].width;
159                         }
160                         if (i == page_cache->n_pages - 1) {
161                                 page_cache->dual_height_to_page [i / 2] =
162                                         saved_height + page_height;
163                         }
164                         else {
165                                 page_cache->dual_height_to_page [i / 2] = saved_height +
166                                        MAX(page_height, next_page_height);                                  
167                                 saved_height = page_cache->dual_height_to_page [i / 2];
168                         }
169                 }
170         }
171 }
172
173 EvPageCache *
174 ev_page_cache_new (EvDocument *document)
175 {
176         EvPageCache *page_cache;
177         EvPageCacheInfo *info;
178         gint i;
179
180         page_cache = (EvPageCache *) g_object_new (EV_TYPE_PAGE_CACHE, NULL);
181
182         ev_document_doc_mutex_lock ();
183
184         /* We read page information out of the document */
185
186         /* Assume all pages are the same size until proven otherwise */
187         page_cache->uniform = TRUE;
188         page_cache->has_labels = FALSE;
189         page_cache->n_pages = ev_document_get_n_pages (document);
190         page_cache->page_labels = g_new0 (char *, page_cache->n_pages);
191         page_cache->max_width = 0;
192         page_cache->max_height = 0;
193         page_cache->page_info = ev_document_get_info (document);
194
195         if (page_cache->page_info->fields_mask & EV_DOCUMENT_INFO_TITLE) {
196                 page_cache->title = g_strdup (page_cache->page_info->title);
197         } else {
198                 page_cache->title = NULL;
199         }
200
201         for (i = 0; i < page_cache->n_pages; i++) {
202                 double page_width = 0;
203                 double page_height = 0;
204                 
205                 ev_document_get_page_size (document, i, &page_width, &page_height);
206
207                 page_cache->page_labels[i] = ev_document_get_page_label (document, i);
208                 
209                 if (page_cache->page_labels[i] != NULL) {
210                 
211                         page_cache->max_label_chars = MAX(page_cache->max_label_chars, 
212                                                             g_utf8_strlen (page_cache->page_labels[i], 256));
213                         if (!page_cache->has_labels) {
214                                 gchar *expected_label;
215                         
216                                 expected_label = g_strdup_printf ("%d", i + 1);
217                                 if (strcmp (expected_label, page_cache->page_labels[i]))  
218                                         page_cache->has_labels = TRUE;
219                                 g_free (expected_label);
220                         }
221                 }
222
223                 if (page_width > page_cache->max_width) {
224                         page_cache->max_width = page_width;
225                 }
226
227                 if (page_height > page_cache->max_height) {
228                         page_cache->max_height = page_height;
229                 }
230                         
231                 if (i == 0) {
232                         page_cache->uniform_width = page_width;
233                         page_cache->uniform_height = page_height;
234                 } else if (page_cache->uniform &&
235                            (page_cache->uniform_width != page_width ||
236                             page_cache->uniform_height != page_height)) {
237                         /* It's a different page size.  Backfill the array. */
238                         int j;
239
240                         page_cache->size_cache = g_new0 (EvPageCacheInfo, page_cache->n_pages);
241
242                         for (j = 0; j < i; j++) {
243                                 info = &(page_cache->size_cache [j]);
244                                 info->width = page_cache->uniform_width;
245                                 info->height = page_cache->uniform_height;
246                         }
247                         page_cache->uniform = FALSE;
248
249                 }
250
251                 if (! page_cache->uniform) {
252                         info = &(page_cache->size_cache [i]);
253
254                         info->width = page_width;
255                         info->height = page_height;
256                 }
257         }
258
259         build_height_to_page (page_cache);
260
261         /* make some sanity check assertions */
262         if (! page_cache->uniform)
263                 g_assert (page_cache->size_cache != NULL);
264         if (page_cache->uniform && page_cache->n_pages > 0)
265                 g_assert (page_cache->uniform_width > 0 && page_cache->uniform_height > 0);
266
267         ev_document_doc_mutex_unlock ();
268
269         if (page_cache->n_pages > 0)
270                 ev_page_cache_set_current_page (page_cache, 0);
271
272         return page_cache;
273 }
274
275 gint
276 ev_page_cache_get_n_pages (EvPageCache *page_cache)
277 {
278         g_return_val_if_fail (EV_IS_PAGE_CACHE (page_cache), 0);
279
280         return page_cache->n_pages;
281 }
282
283 gint
284 ev_page_cache_get_current_page (EvPageCache *page_cache)
285 {
286         g_return_val_if_fail (EV_IS_PAGE_CACHE (page_cache), 0);
287
288         return page_cache->current_page;
289 }
290
291 void
292 ev_page_cache_set_current_page (EvPageCache *page_cache,
293                                 int          page)
294 {
295         g_return_if_fail (EV_IS_PAGE_CACHE (page_cache));
296         g_return_if_fail (page >= 0 || page < page_cache->n_pages);
297
298         if (page == page_cache->current_page)
299                 return;
300
301         page_cache->current_page = page;
302         g_signal_emit (page_cache, signals[PAGE_CHANGED], 0, page);
303 }
304
305 gboolean
306 ev_page_cache_set_page_label (EvPageCache *page_cache,
307                               const char  *page_label)
308 {
309         gint i, page;
310         long value;
311         char *endptr = NULL;
312         
313         g_return_val_if_fail (EV_IS_PAGE_CACHE (page_cache), FALSE);
314         g_return_val_if_fail (page_label != NULL, FALSE);
315
316         /* First, look for a literal label match */
317         for (i = 0; i < page_cache->n_pages; i ++) {
318                 if (page_cache->page_labels[i] != NULL &&
319                     ! strcmp (page_label, page_cache->page_labels[i])) {
320                         ev_page_cache_set_current_page (page_cache, i);
321                         return TRUE;
322                 }
323         }
324
325         /* Next, parse the label, and see if the number fits */
326         value = strtol (page_label, &endptr, 10);
327         if (endptr[0] == '\0') {
328                 /* Page number is an integer */
329                 page = MIN (G_MAXINT, value);
330
331                 /* convert from a page label to a page offset */
332                 page --;
333                 if (page >= 0 &&
334                     page < page_cache->n_pages &&
335                     page_cache->page_labels[page] == NULL) {
336                         ev_page_cache_set_current_page (page_cache, page);
337                         return TRUE;
338                 }
339         }
340
341         return FALSE;
342 }
343
344 void
345 ev_page_cache_set_link (EvPageCache *page_cache,
346                         EvLink      *link)
347 {
348         g_return_if_fail (EV_IS_PAGE_CACHE (page_cache));
349         g_return_if_fail (EV_IS_LINK (link));
350
351         ev_page_cache_set_current_page (page_cache, ev_link_get_page (link));
352 }
353
354 const char *
355 ev_page_cache_get_title (EvPageCache *page_cache)
356 {
357         g_return_val_if_fail (EV_IS_PAGE_CACHE (page_cache), NULL);
358
359         return page_cache->title;
360 }
361
362 void
363 ev_page_cache_get_size (EvPageCache  *page_cache,
364                         gint          page,
365                         gint          rotation,
366                         gfloat        scale,
367                         gint         *width,
368                         gint         *height)
369 {
370         int w, h;
371
372         g_return_if_fail (EV_IS_PAGE_CACHE (page_cache));
373         g_return_if_fail (page >= 0 && page < page_cache->n_pages);
374
375         if (page_cache->uniform) {
376                 w = page_cache->uniform_width;
377                 h = page_cache->uniform_height;
378         } else {
379                 EvPageCacheInfo *info;
380
381                 info = &(page_cache->size_cache [page]);
382                 
383                 w = info->width;
384                 h = info->height;
385         }
386
387         w = (int) (w * scale + 0.5);
388         h = (int) (h * scale + 0.5);
389
390         if (rotation == 0 || rotation == 180) {
391                 if (width) *width = w;
392                 if (height) *height = h;
393         } else {
394                 if (width) *width = h;
395                 if (height) *height = w;
396         }
397 }
398
399 void
400 ev_page_cache_get_max_width (EvPageCache   *page_cache,
401                              gint           rotation,
402                              gfloat         scale,
403                              gint          *width)
404 {
405         g_return_if_fail (EV_IS_PAGE_CACHE (page_cache));
406
407         if (width) {
408                 if (rotation == 0 || rotation == 180) {
409                         *width = page_cache->max_width * scale;
410                 } else {
411                         *width = page_cache->max_height * scale;
412                 }
413         }
414 }
415
416 void
417 ev_page_cache_get_max_height (EvPageCache   *page_cache,
418                               gint           rotation,
419                               gfloat         scale,
420                               gint          *height)
421 {
422         g_return_if_fail (EV_IS_PAGE_CACHE (page_cache));
423
424         if (height) {
425                 if (rotation == 0 || rotation == 180) {
426                         *height = page_cache->max_height * scale;
427                 } else {
428                         *height = page_cache->max_width * scale;
429                 }
430         }
431 }
432
433 void    
434 ev_page_cache_get_height_to_page (EvPageCache   *page_cache,
435                                   gint           page,
436                                   gint           rotation,
437                                   gfloat         scale,
438                                   gint          *height,
439                                   gint          *dual_height)
440 {
441         double result = 0.0;
442         double dual_result = 0.0;
443         
444         g_return_if_fail (EV_IS_PAGE_CACHE (page_cache));
445
446         if (page_cache->rotation != rotation) {
447                 page_cache->rotation = rotation;
448                 build_height_to_page (page_cache);
449         }
450
451         if (page > 0)
452                 result = page_cache->height_to_page [page - 1]; 
453         
454         if (height)
455                 *height = result * scale;
456
457         if (page > 1)
458                 dual_result = page_cache->dual_height_to_page [page / 2 - 1];   
459         
460         if (dual_height)
461                 *dual_height = dual_result * scale;
462 }
463
464 gint
465 ev_page_cache_get_max_label_chars (EvPageCache *page_cache)
466 {
467         g_return_val_if_fail (EV_IS_PAGE_CACHE (page_cache), 0);
468         
469         return page_cache->max_label_chars;
470 }
471
472 gchar *
473 ev_page_cache_get_page_label (EvPageCache *page_cache,
474                               gint         page)
475 {
476         g_return_val_if_fail (EV_IS_PAGE_CACHE (page_cache), NULL);
477         g_return_val_if_fail (page >= 0 && page < page_cache->n_pages, NULL);
478
479         if (page_cache->page_labels[page] == NULL)
480                 return g_strdup_printf ("%d", page + 1);
481
482         return g_strdup (page_cache->page_labels[page]);
483 }
484
485 gboolean
486 ev_page_cache_has_nonnumeric_page_labels (EvPageCache *page_cache)
487 {
488         g_return_val_if_fail (EV_IS_PAGE_CACHE (page_cache), FALSE);
489         return page_cache->has_labels;
490 }
491
492 const EvDocumentInfo *
493 ev_page_cache_get_info (EvPageCache *page_cache)
494 {
495         g_return_val_if_fail (EV_IS_PAGE_CACHE (page_cache), NULL);
496
497         return page_cache->page_info;
498 }
499
500
501 gboolean
502 ev_page_cache_next_page (EvPageCache *page_cache)
503 {
504         g_return_val_if_fail (EV_IS_PAGE_CACHE (page_cache), FALSE);
505
506         if (page_cache->current_page >= page_cache->n_pages - 1)
507                 return FALSE;
508
509         ev_page_cache_set_current_page (page_cache, page_cache->current_page + 1);
510         return TRUE;
511
512 }
513
514 gboolean
515 ev_page_cache_prev_page (EvPageCache *page_cache)
516 {
517         g_return_val_if_fail (EV_IS_PAGE_CACHE (page_cache), FALSE);
518
519         if (page_cache->current_page <= 0)
520                 return FALSE;
521
522         ev_page_cache_set_current_page (page_cache, page_cache->current_page - 1);
523         return TRUE;
524 }
525
526 #define PAGE_CACHE_STRING "ev-page-cache"
527
528 EvPageCache *
529 ev_page_cache_get (EvDocument *document)
530 {
531         EvPageCache *page_cache;
532
533         g_return_val_if_fail (EV_IS_DOCUMENT (document), NULL);
534
535         page_cache = g_object_get_data (G_OBJECT (document), PAGE_CACHE_STRING);
536         if (page_cache == NULL) {
537                 page_cache = ev_page_cache_new (document);
538                 g_object_set_data_full (G_OBJECT (document), PAGE_CACHE_STRING, page_cache, g_object_unref);
539         }
540
541         return page_cache;
542 }