2010-11-17 22:51:15 +01:00
|
|
|
/* See LICENSE file for license and copyright information */
|
|
|
|
|
2010-11-18 13:54:35 +01:00
|
|
|
#define _BSD_SOURCE
|
2011-04-19 00:36:56 +02:00
|
|
|
#define _XOPEN_SOURCE 700
|
2010-11-18 13:54:35 +01:00
|
|
|
// TODO: Implement realpath
|
|
|
|
|
2010-11-17 22:51:15 +01:00
|
|
|
#include <stdlib.h>
|
2010-11-17 23:15:08 +01:00
|
|
|
#include <stdio.h>
|
2010-11-18 03:15:32 +01:00
|
|
|
#include <string.h>
|
2010-11-18 13:54:35 +01:00
|
|
|
#include <limits.h>
|
2011-03-05 21:00:41 +01:00
|
|
|
#include <sys/types.h>
|
2011-03-19 15:26:13 +01:00
|
|
|
#include <sys/stat.h>
|
2011-03-05 21:00:41 +01:00
|
|
|
#include <dirent.h>
|
|
|
|
#include <dlfcn.h>
|
2011-04-19 00:36:56 +02:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
2010-11-17 22:51:15 +01:00
|
|
|
|
|
|
|
#include "document.h"
|
2011-03-05 19:46:05 +01:00
|
|
|
#include "utils.h"
|
|
|
|
#include "zathura.h"
|
2011-04-18 21:22:35 +02:00
|
|
|
#include "render.h"
|
2011-10-20 15:55:10 +02:00
|
|
|
#include "database.h"
|
2010-11-18 02:35:33 +01:00
|
|
|
|
2011-03-05 21:00:41 +01:00
|
|
|
void
|
2011-04-18 18:19:41 +02:00
|
|
|
zathura_document_plugins_load(zathura_t* zathura)
|
2011-03-05 21:00:41 +01:00
|
|
|
{
|
2011-04-19 00:36:56 +02:00
|
|
|
girara_list_iterator_t* iter = girara_list_iterator(zathura->plugins.path);
|
|
|
|
if (iter == NULL) {
|
2011-03-05 21:00:41 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-04-19 00:36:56 +02:00
|
|
|
do
|
|
|
|
{
|
|
|
|
char* plugindir = girara_list_iterator_data(iter);
|
2011-03-06 09:14:36 +01:00
|
|
|
|
2011-04-19 00:36:56 +02:00
|
|
|
/* read all files in the plugin directory */
|
|
|
|
DIR* dir = opendir(plugindir);
|
|
|
|
if (dir == NULL) {
|
|
|
|
girara_error("could not open plugin directory: %s", plugindir);
|
2011-03-19 15:26:13 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-04-19 00:36:56 +02:00
|
|
|
int fddir = dirfd(dir);
|
|
|
|
struct dirent* entry;
|
|
|
|
while ((entry = readdir(dir)) != NULL) {
|
|
|
|
struct stat statbuf;
|
|
|
|
if (fstatat(fddir, entry->d_name, &statbuf, 0) != 0) {
|
|
|
|
girara_error("failed to fstatat %s/%s; errno is %d.", plugindir, entry->d_name, errno);
|
|
|
|
continue;
|
|
|
|
}
|
2011-03-06 09:14:36 +01:00
|
|
|
|
2011-04-19 00:36:56 +02:00
|
|
|
/* check if entry is a file */
|
|
|
|
if (S_ISREG(statbuf.st_mode) == 0) {
|
|
|
|
girara_info("%s/%s is not a regular file. Skipping.", plugindir, entry->d_name);
|
|
|
|
continue;
|
|
|
|
}
|
2011-03-05 21:00:41 +01:00
|
|
|
|
2011-04-19 00:36:56 +02:00
|
|
|
void* handle = NULL;
|
|
|
|
zathura_document_plugin_t* plugin = NULL;
|
|
|
|
char* path = NULL;
|
2011-03-05 21:00:41 +01:00
|
|
|
|
2011-04-19 00:36:56 +02:00
|
|
|
/* get full path */
|
|
|
|
path = g_build_filename(plugindir, entry->d_name, NULL);
|
|
|
|
if (path == NULL) {
|
|
|
|
g_error("failed to allocate memory!");
|
|
|
|
break;
|
|
|
|
}
|
2011-03-05 21:00:41 +01:00
|
|
|
|
2011-04-19 00:36:56 +02:00
|
|
|
/* load plugin */
|
|
|
|
handle = dlopen(path, RTLD_NOW);
|
|
|
|
if (handle == NULL) {
|
|
|
|
girara_error("could not load plugin %s (%s)", path, dlerror());
|
|
|
|
g_free(path);
|
|
|
|
continue;
|
|
|
|
}
|
2011-03-05 21:00:41 +01:00
|
|
|
|
2011-04-19 00:36:56 +02:00
|
|
|
/* resolve symbol */
|
|
|
|
zathura_plugin_register_service_t register_plugin;
|
|
|
|
*(void**)(®ister_plugin) = dlsym(handle, PLUGIN_REGISTER_FUNCTION);
|
2011-03-05 21:00:41 +01:00
|
|
|
|
2011-04-19 00:36:56 +02:00
|
|
|
if (register_plugin == NULL) {
|
|
|
|
girara_error("could not find '%s' function in plugin %s", PLUGIN_REGISTER_FUNCTION, path);
|
|
|
|
g_free(path);
|
|
|
|
dlclose(handle);
|
|
|
|
continue;
|
|
|
|
}
|
2011-03-05 21:00:41 +01:00
|
|
|
|
2011-04-19 00:36:56 +02:00
|
|
|
plugin = malloc(sizeof(zathura_document_plugin_t));
|
2011-03-05 21:00:41 +01:00
|
|
|
|
2011-04-19 00:36:56 +02:00
|
|
|
if (plugin == NULL) {
|
|
|
|
g_error("failed to allocate memory!");
|
|
|
|
break;
|
|
|
|
}
|
2011-03-06 09:14:36 +01:00
|
|
|
|
2011-04-19 00:36:56 +02:00
|
|
|
plugin->open_function = NULL;
|
2011-09-29 15:23:13 +02:00
|
|
|
plugin->content_types = girara_list_new();
|
|
|
|
girara_list_set_free_function(plugin->content_types, g_free);
|
2011-03-06 09:14:36 +01:00
|
|
|
|
2011-04-19 00:36:56 +02:00
|
|
|
register_plugin(plugin);
|
2011-03-06 09:14:36 +01:00
|
|
|
|
2011-04-19 00:36:56 +02:00
|
|
|
bool r = zathura_document_plugin_register(zathura, plugin, handle);
|
2011-03-06 09:14:36 +01:00
|
|
|
|
2011-04-19 00:36:56 +02:00
|
|
|
if (r == false) {
|
|
|
|
girara_error("could not register plugin %s", path);
|
|
|
|
free(plugin);
|
|
|
|
dlclose(handle);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
girara_info("successfully loaded plugin %s", path);
|
|
|
|
}
|
2011-03-06 09:14:36 +01:00
|
|
|
|
2011-04-19 00:36:56 +02:00
|
|
|
g_free(path);
|
2011-03-06 09:14:36 +01:00
|
|
|
}
|
|
|
|
|
2011-04-19 00:36:56 +02:00
|
|
|
if (closedir(dir) == -1) {
|
|
|
|
girara_error("could not close plugin directory %s", plugindir);
|
2011-03-06 09:14:36 +01:00
|
|
|
}
|
2011-04-19 00:36:56 +02:00
|
|
|
} while (girara_list_iterator_next(iter));
|
|
|
|
girara_list_iterator_free(iter);
|
2011-03-05 21:00:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-09-29 15:23:13 +02:00
|
|
|
zathura_document_plugin_free(zathura_document_plugin_t* plugin)
|
2011-03-05 21:00:41 +01:00
|
|
|
{
|
2011-09-29 15:23:13 +02:00
|
|
|
if (plugin == NULL) {
|
2011-04-18 18:19:41 +02:00
|
|
|
return;
|
2011-03-05 21:00:41 +01:00
|
|
|
}
|
|
|
|
|
2011-09-29 15:23:13 +02:00
|
|
|
girara_list_free(plugin->content_types);
|
|
|
|
free(plugin);
|
2011-03-05 21:00:41 +01:00
|
|
|
}
|
|
|
|
|
2011-03-05 19:46:05 +01:00
|
|
|
bool
|
2011-04-18 18:19:41 +02:00
|
|
|
zathura_document_plugin_register(zathura_t* zathura, zathura_document_plugin_t* new_plugin, void* handle)
|
2011-03-05 19:46:05 +01:00
|
|
|
{
|
2011-09-29 15:23:13 +02:00
|
|
|
if( (new_plugin == NULL) || (new_plugin->content_types == NULL) || (new_plugin->open_function == NULL)
|
2011-03-06 09:14:36 +01:00
|
|
|
|| (handle == NULL) ) {
|
2011-04-18 18:19:41 +02:00
|
|
|
girara_error("plugin: could not register\n");
|
2011-03-05 19:46:05 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-09-29 15:23:13 +02:00
|
|
|
bool atleastone = false;
|
|
|
|
GIRARA_LIST_FOREACH(new_plugin->content_types, gchar*, iter, type)
|
|
|
|
if (!zathura_type_plugin_mapping_new(zathura, type, new_plugin)) {
|
|
|
|
girara_error("plugin: already registered for filetype %s\n", type);
|
|
|
|
}
|
|
|
|
atleastone = true;
|
2011-10-17 11:16:14 +02:00
|
|
|
GIRARA_LIST_FOREACH_END(new_plugin->content_types, gchar*, iter, type);
|
2011-03-05 19:46:05 +01:00
|
|
|
|
2011-09-29 15:23:13 +02:00
|
|
|
if (atleastone) {
|
|
|
|
girara_list_append(zathura->plugins.plugins, new_plugin);
|
|
|
|
}
|
|
|
|
return atleastone;
|
2011-03-05 19:46:05 +01:00
|
|
|
}
|
|
|
|
|
2010-11-17 23:15:08 +01:00
|
|
|
zathura_document_t*
|
2011-04-18 18:19:41 +02:00
|
|
|
zathura_document_open(zathura_t* zathura, const char* path, const char* password)
|
2010-11-17 22:51:15 +01:00
|
|
|
{
|
2011-09-21 00:25:41 +02:00
|
|
|
if (path == NULL) {
|
2011-09-29 15:23:13 +02:00
|
|
|
return NULL;
|
2010-11-18 02:35:33 +01:00
|
|
|
}
|
|
|
|
|
2011-09-21 00:25:41 +02:00
|
|
|
if (file_exists(path) == false) {
|
2011-04-02 23:40:57 +02:00
|
|
|
girara_error("File does not exist");
|
2011-09-29 15:23:13 +02:00
|
|
|
return NULL;
|
2010-11-18 02:35:33 +01:00
|
|
|
}
|
|
|
|
|
2011-09-29 15:23:13 +02:00
|
|
|
const gchar* content_type = g_content_type_guess(path, NULL, 0, NULL);
|
|
|
|
if (content_type == NULL) {
|
2011-04-02 23:40:57 +02:00
|
|
|
girara_error("Could not determine file type");
|
2011-09-29 15:23:13 +02:00
|
|
|
return NULL;
|
2010-11-18 02:35:33 +01:00
|
|
|
}
|
|
|
|
|
2010-11-18 13:54:35 +01:00
|
|
|
/* determine real path */
|
2011-10-05 14:20:59 +02:00
|
|
|
long path_max;
|
2010-11-18 13:54:35 +01:00
|
|
|
#ifdef PATH_MAX
|
|
|
|
path_max = PATH_MAX;
|
|
|
|
#else
|
|
|
|
path_max = pathconf(path,_PC_PATH_MAX);
|
2011-10-05 14:20:59 +02:00
|
|
|
if (path_max <= 0)
|
2010-11-18 13:54:35 +01:00
|
|
|
path_max = 4096;
|
|
|
|
#endif
|
|
|
|
|
2010-12-28 00:47:41 +01:00
|
|
|
char* real_path = NULL;
|
|
|
|
zathura_document_t* document = NULL;
|
|
|
|
|
|
|
|
real_path = malloc(sizeof(char) * path_max);
|
2011-09-21 00:25:41 +02:00
|
|
|
if (real_path == NULL) {
|
2011-09-29 15:23:13 +02:00
|
|
|
g_free((void*)content_type);
|
|
|
|
return NULL;
|
2010-11-18 13:54:35 +01:00
|
|
|
}
|
|
|
|
|
2011-09-21 00:25:41 +02:00
|
|
|
if (realpath(path, real_path) == NULL) {
|
2011-09-29 15:23:13 +02:00
|
|
|
g_free((void*)content_type);
|
|
|
|
free(real_path);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
zathura_document_plugin_t* plugin = NULL;
|
|
|
|
GIRARA_LIST_FOREACH(zathura->plugins.type_plugin_mapping, zathura_type_plugin_mapping_t*, iter, mapping)
|
|
|
|
if (g_content_type_equals(content_type, mapping->type)) {
|
|
|
|
plugin = mapping->plugin;
|
|
|
|
break;
|
|
|
|
}
|
2011-10-17 11:16:14 +02:00
|
|
|
GIRARA_LIST_FOREACH_END(zathura->plugins.type_plugin_mapping, zathura_type_plugin_mapping_t*, iter, mapping);
|
2011-09-29 15:23:13 +02:00
|
|
|
g_free((void*)content_type);
|
|
|
|
|
|
|
|
if (plugin == NULL) {
|
|
|
|
girara_error("unknown file type\n");
|
2011-09-30 12:32:29 +02:00
|
|
|
goto error_free;
|
2010-11-18 13:54:35 +01:00
|
|
|
}
|
|
|
|
|
2011-09-29 12:07:07 +02:00
|
|
|
document = g_malloc0(sizeof(zathura_document_t));
|
2010-11-18 02:35:33 +01:00
|
|
|
|
2010-11-18 13:54:35 +01:00
|
|
|
document->file_path = real_path;
|
2010-11-18 02:35:33 +01:00
|
|
|
document->password = password;
|
2010-12-26 20:35:26 +01:00
|
|
|
document->scale = 1.0;
|
2011-04-19 17:46:44 +02:00
|
|
|
document->zathura = zathura;
|
2010-11-18 02:35:33 +01:00
|
|
|
|
2011-10-20 15:55:10 +02:00
|
|
|
int offset = 0;
|
|
|
|
zathura_db_get_fileinfo(zathura->database, document->file_path,
|
|
|
|
&document->current_page_number, &offset, &document->scale);
|
|
|
|
|
2011-09-29 15:23:13 +02:00
|
|
|
if (plugin->open_function != NULL) {
|
|
|
|
if (plugin->open_function(document) == true) {
|
|
|
|
/* update statusbar */
|
|
|
|
girara_statusbar_item_set_text(zathura->ui.session, zathura->ui.statusbar.file, real_path);
|
2011-04-26 17:09:39 +02:00
|
|
|
|
2011-09-29 15:23:13 +02:00
|
|
|
/* read all pages */
|
|
|
|
document->pages = calloc(document->number_of_pages, sizeof(zathura_page_t*));
|
|
|
|
if (document->pages == NULL) {
|
|
|
|
goto error_free;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (unsigned int page_id = 0; page_id < document->number_of_pages; page_id++) {
|
|
|
|
zathura_page_t* page = zathura_page_get(document, page_id);
|
|
|
|
if (page == NULL) {
|
2010-12-28 00:47:41 +01:00
|
|
|
goto error_free;
|
2010-11-18 03:15:32 +01:00
|
|
|
}
|
2011-09-29 15:23:13 +02:00
|
|
|
|
|
|
|
document->pages[page_id] = page;
|
2010-11-18 03:15:32 +01:00
|
|
|
}
|
2011-09-29 15:23:13 +02:00
|
|
|
|
|
|
|
return document;
|
2010-11-18 03:15:32 +01:00
|
|
|
}
|
2011-09-29 15:23:13 +02:00
|
|
|
}
|
2011-03-05 19:46:05 +01:00
|
|
|
|
2011-09-29 15:23:13 +02:00
|
|
|
girara_error("could not open file\n");
|
2010-11-18 03:15:32 +01:00
|
|
|
|
2010-12-28 00:47:41 +01:00
|
|
|
error_free:
|
|
|
|
|
2010-11-18 13:54:35 +01:00
|
|
|
free(real_path);
|
2010-12-28 00:47:41 +01:00
|
|
|
|
2011-09-21 00:25:41 +02:00
|
|
|
if (document != NULL && document->pages != NULL) {
|
|
|
|
for (unsigned int page_id = 0; page_id < document->number_of_pages; page_id++) {
|
2010-12-28 00:47:41 +01:00
|
|
|
zathura_page_free(document->pages[page_id]);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(document->pages);
|
|
|
|
}
|
|
|
|
|
2011-09-29 12:07:07 +02:00
|
|
|
g_free(document);
|
2010-11-17 22:51:15 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-11-17 23:15:08 +01:00
|
|
|
bool
|
|
|
|
zathura_document_free(zathura_document_t* document)
|
2010-11-17 22:51:15 +01:00
|
|
|
{
|
2011-09-21 00:25:41 +02:00
|
|
|
if (document == NULL) {
|
2010-11-18 03:15:32 +01:00
|
|
|
return false;
|
2010-11-17 23:15:08 +01:00
|
|
|
}
|
|
|
|
|
2010-12-28 00:47:41 +01:00
|
|
|
/* free pages */
|
2011-09-21 00:25:41 +02:00
|
|
|
for (unsigned int page_id = 0; page_id < document->number_of_pages; page_id++) {
|
2010-12-28 00:47:41 +01:00
|
|
|
zathura_page_free(document->pages[page_id]);
|
2011-07-21 14:39:25 +02:00
|
|
|
document->pages[page_id] = NULL;
|
2010-12-28 00:47:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
free(document->pages);
|
|
|
|
|
|
|
|
/* free document */
|
2011-09-21 00:25:41 +02:00
|
|
|
if (document->functions.document_free == NULL) {
|
2011-04-02 23:40:57 +02:00
|
|
|
girara_error("%s not implemented", __FUNCTION__);
|
2010-11-18 13:54:35 +01:00
|
|
|
|
2011-09-21 00:25:41 +02:00
|
|
|
if (document->file_path != NULL) {
|
2010-11-18 13:54:35 +01:00
|
|
|
free(document->file_path);
|
|
|
|
}
|
|
|
|
|
2011-09-29 12:07:07 +02:00
|
|
|
g_free(document);
|
2010-11-18 03:15:32 +01:00
|
|
|
return true;
|
2010-11-17 23:15:08 +01:00
|
|
|
}
|
|
|
|
|
2010-11-18 02:35:33 +01:00
|
|
|
bool r = document->functions.document_free(document);
|
|
|
|
|
2011-09-21 00:25:41 +02:00
|
|
|
if (document->file_path != NULL) {
|
2010-11-18 13:54:35 +01:00
|
|
|
free(document->file_path);
|
|
|
|
}
|
|
|
|
|
2011-09-29 12:07:07 +02:00
|
|
|
g_free(document);
|
2010-11-18 02:35:33 +01:00
|
|
|
|
|
|
|
return r;
|
2010-11-17 23:15:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
zathura_document_save_as(zathura_document_t* document, const char* path)
|
|
|
|
{
|
2011-09-21 00:25:41 +02:00
|
|
|
if (document == NULL || path == NULL) {
|
2010-11-17 23:15:08 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-09-21 00:25:41 +02:00
|
|
|
if (document->functions.document_save_as == NULL) {
|
2011-04-02 23:40:57 +02:00
|
|
|
girara_error("%s not implemented", __FUNCTION__);
|
2010-11-17 23:15:08 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return document->functions.document_save_as(document, path);
|
2010-11-17 22:51:15 +01:00
|
|
|
}
|
|
|
|
|
2010-12-24 16:21:54 +01:00
|
|
|
girara_tree_node_t*
|
2010-11-17 23:15:08 +01:00
|
|
|
zathura_document_index_generate(zathura_document_t* document)
|
2010-11-17 22:51:15 +01:00
|
|
|
{
|
2011-09-21 00:25:41 +02:00
|
|
|
if (document == NULL) {
|
2010-11-17 23:15:08 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-09-21 00:25:41 +02:00
|
|
|
if (document->functions.document_index_generate == NULL) {
|
2011-04-02 23:40:57 +02:00
|
|
|
girara_error("%s not implemented", __FUNCTION__);
|
2010-11-17 23:15:08 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return document->functions.document_index_generate(document);
|
2010-11-17 22:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
zathura_list_t*
|
2010-11-17 23:15:08 +01:00
|
|
|
zathura_document_attachments_get(zathura_document_t* document)
|
2010-11-17 22:51:15 +01:00
|
|
|
{
|
2011-09-21 00:25:41 +02:00
|
|
|
if (document == NULL) {
|
2010-11-17 23:15:08 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-09-21 00:25:41 +02:00
|
|
|
if (document->functions.document_attachments_get == NULL) {
|
2011-04-02 23:40:57 +02:00
|
|
|
girara_error("%s not implemented", __FUNCTION__);
|
2010-11-17 23:15:08 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return document->functions.document_attachments_get(document);
|
2010-11-17 22:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2011-09-21 00:46:03 +02:00
|
|
|
zathura_document_attachments_free(zathura_list_t* UNUSED(list))
|
2010-11-17 22:51:15 +01:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-10-01 23:29:40 +02:00
|
|
|
char*
|
|
|
|
zathura_document_meta_get(zathura_document_t* document, zathura_document_meta_t meta)
|
|
|
|
{
|
|
|
|
if (document == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (document->functions.document_meta_get == NULL) {
|
|
|
|
girara_error("%s not implemented", __FUNCTION__);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return document->functions.document_meta_get(document, meta);
|
|
|
|
}
|
|
|
|
|
2010-11-17 23:15:08 +01:00
|
|
|
zathura_page_t*
|
2011-01-11 10:57:59 +01:00
|
|
|
zathura_page_get(zathura_document_t* document, unsigned int page_id)
|
2010-11-17 22:51:15 +01:00
|
|
|
{
|
2011-09-21 00:25:41 +02:00
|
|
|
if (document == NULL) {
|
2010-11-17 23:15:08 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-09-21 00:25:41 +02:00
|
|
|
if (document->functions.page_get == NULL) {
|
2011-04-02 23:40:57 +02:00
|
|
|
girara_error("%s not implemented", __FUNCTION__);
|
2010-11-17 23:15:08 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-01-11 10:57:59 +01:00
|
|
|
zathura_page_t* page = document->functions.page_get(document, page_id);
|
|
|
|
|
2011-09-21 00:25:41 +02:00
|
|
|
if (page != NULL) {
|
2011-03-20 02:53:24 +01:00
|
|
|
page->number = page_id;
|
2011-04-19 18:33:28 +02:00
|
|
|
page->visible = false;
|
2011-03-20 02:53:24 +01:00
|
|
|
page->event_box = gtk_event_box_new();
|
|
|
|
page->drawing_area = gtk_drawing_area_new();
|
2011-04-18 22:59:59 +02:00
|
|
|
page->surface = NULL;
|
2011-04-26 17:09:39 +02:00
|
|
|
page->document = document;
|
2011-04-18 21:22:35 +02:00
|
|
|
g_signal_connect(page->drawing_area, "expose-event", G_CALLBACK(page_expose_event), page);
|
2011-03-20 02:53:24 +01:00
|
|
|
|
2011-04-19 21:42:18 +02:00
|
|
|
gtk_widget_set_size_request(page->drawing_area, page->width * document->scale, page->height * document->scale);
|
2011-03-20 02:53:24 +01:00
|
|
|
gtk_container_add(GTK_CONTAINER(page->event_box), page->drawing_area);
|
|
|
|
|
2011-01-11 10:57:59 +01:00
|
|
|
g_static_mutex_init(&(page->lock));
|
|
|
|
}
|
|
|
|
|
|
|
|
return page;
|
2010-11-17 22:51:15 +01:00
|
|
|
}
|
|
|
|
|
2010-11-18 02:35:33 +01:00
|
|
|
bool
|
|
|
|
zathura_page_free(zathura_page_t* page)
|
|
|
|
{
|
2011-09-21 00:25:41 +02:00
|
|
|
if (page == NULL || page->document == NULL) {
|
2010-11-18 02:35:33 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-09-21 00:25:41 +02:00
|
|
|
if (page->document->functions.page_free == NULL) {
|
2011-04-02 23:40:57 +02:00
|
|
|
girara_error("%s not implemented", __FUNCTION__);
|
2010-11-18 02:35:33 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-07-21 14:39:25 +02:00
|
|
|
g_static_mutex_free(&(page->lock));
|
|
|
|
|
2010-11-18 02:35:33 +01:00
|
|
|
return page->document->functions.page_free(page);
|
|
|
|
}
|
|
|
|
|
2010-11-17 22:51:15 +01:00
|
|
|
zathura_list_t*
|
2010-11-17 23:15:08 +01:00
|
|
|
zathura_page_search_text(zathura_page_t* page, const char* text)
|
2010-11-17 22:51:15 +01:00
|
|
|
{
|
2011-09-21 00:25:41 +02:00
|
|
|
if (page == NULL || page->document == NULL || text == NULL) {
|
2010-11-17 23:15:08 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-09-21 00:25:41 +02:00
|
|
|
if (page->document->functions.page_search_text == NULL) {
|
2011-04-02 23:40:57 +02:00
|
|
|
girara_error("%s not implemented", __FUNCTION__);
|
2010-11-17 23:15:08 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return page->document->functions.page_search_text(page, text);
|
2010-11-17 22:51:15 +01:00
|
|
|
}
|
|
|
|
|
2010-11-17 23:15:08 +01:00
|
|
|
zathura_list_t*
|
|
|
|
zathura_page_links_get(zathura_page_t* page)
|
2010-11-17 22:51:15 +01:00
|
|
|
{
|
2011-09-21 00:25:41 +02:00
|
|
|
if (page == NULL || page->document == NULL) {
|
2010-11-17 23:15:08 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-09-21 00:25:41 +02:00
|
|
|
if (page->document->functions.page_links_get == NULL) {
|
2011-04-02 23:40:57 +02:00
|
|
|
girara_error("%s not implemented", __FUNCTION__);
|
2010-11-17 23:15:08 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return page->document->functions.page_links_get(page);
|
2010-11-17 22:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2011-09-21 00:46:03 +02:00
|
|
|
zathura_page_links_free(zathura_list_t* UNUSED(list))
|
2010-11-17 22:51:15 +01:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
zathura_list_t*
|
2010-11-17 23:15:08 +01:00
|
|
|
zathura_page_form_fields_get(zathura_page_t* page)
|
2010-11-17 22:51:15 +01:00
|
|
|
{
|
2011-09-21 00:25:41 +02:00
|
|
|
if (page == NULL || page->document == NULL) {
|
2010-11-17 23:15:08 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-09-21 00:25:41 +02:00
|
|
|
if (page->document->functions.page_form_fields_get == NULL) {
|
2011-04-02 23:40:57 +02:00
|
|
|
girara_error("%s not implemented", __FUNCTION__);
|
2010-11-17 23:15:08 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return page->document->functions.page_form_fields_get(page);
|
2010-11-17 22:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2011-09-21 00:46:03 +02:00
|
|
|
zathura_page_form_fields_free(zathura_list_t* UNUSED(list))
|
2010-11-17 22:51:15 +01:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2010-11-17 23:15:08 +01:00
|
|
|
|
2011-09-29 12:35:52 +02:00
|
|
|
bool
|
|
|
|
zathura_page_render(zathura_page_t* page, cairo_t* cairo)
|
2010-11-17 23:15:08 +01:00
|
|
|
{
|
2011-09-29 12:35:52 +02:00
|
|
|
if (page == NULL || page->document == NULL || cairo == NULL) {
|
2010-11-17 23:15:08 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-09-29 12:35:52 +02:00
|
|
|
if (page->document->functions.page_render_cairo == NULL) {
|
2011-04-02 23:40:57 +02:00
|
|
|
girara_error("%s not implemented", __FUNCTION__);
|
2010-11-17 23:15:08 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-09-29 12:35:52 +02:00
|
|
|
return page->document->functions.page_render_cairo(page, cairo);
|
2010-11-17 23:15:08 +01:00
|
|
|
}
|
2010-12-25 00:47:52 +01:00
|
|
|
|
|
|
|
zathura_index_element_t*
|
|
|
|
zathura_index_element_new(const char* title)
|
|
|
|
{
|
2011-09-21 00:25:41 +02:00
|
|
|
if (title == NULL) {
|
2010-12-25 00:47:52 +01:00
|
|
|
return NULL;
|
2010-12-26 01:12:20 +01:00
|
|
|
}
|
2010-12-25 00:47:52 +01:00
|
|
|
|
|
|
|
zathura_index_element_t* res = g_malloc0(sizeof(zathura_index_element_t));
|
2010-12-26 01:12:20 +01:00
|
|
|
|
2010-12-25 00:47:52 +01:00
|
|
|
res->title = g_strdup(title);
|
2010-12-26 01:12:20 +01:00
|
|
|
|
2010-12-25 00:47:52 +01:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
zathura_index_element_free(zathura_index_element_t* index)
|
|
|
|
{
|
2011-09-21 00:25:41 +02:00
|
|
|
if (index == NULL) {
|
2010-12-25 00:47:52 +01:00
|
|
|
return;
|
2010-12-26 01:12:20 +01:00
|
|
|
}
|
2010-12-25 00:47:52 +01:00
|
|
|
|
|
|
|
g_free(index->title);
|
2010-12-26 01:12:20 +01:00
|
|
|
|
2011-02-09 12:29:09 +01:00
|
|
|
if (index->type == ZATHURA_LINK_EXTERNAL) {
|
2010-12-25 00:47:52 +01:00
|
|
|
g_free(index->target.uri);
|
2010-12-26 01:12:20 +01:00
|
|
|
}
|
|
|
|
|
2010-12-25 00:47:52 +01:00
|
|
|
g_free(index);
|
|
|
|
}
|
2011-03-18 13:27:21 +01:00
|
|
|
|
|
|
|
zathura_image_buffer_t*
|
|
|
|
zathura_image_buffer_create(unsigned int width, unsigned int height)
|
|
|
|
{
|
|
|
|
zathura_image_buffer_t* image_buffer = malloc(sizeof(zathura_image_buffer_t));
|
|
|
|
|
|
|
|
if (image_buffer == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
image_buffer->data = calloc(width * height * 3, sizeof(unsigned char));
|
|
|
|
|
|
|
|
if (image_buffer->data == NULL) {
|
|
|
|
free(image_buffer);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-03-20 02:09:04 +01:00
|
|
|
image_buffer->width = width;
|
|
|
|
image_buffer->height = height;
|
|
|
|
image_buffer->rowstride = width * 3;
|
2011-03-18 13:27:21 +01:00
|
|
|
|
|
|
|
return image_buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
zathura_image_buffer_free(zathura_image_buffer_t* image_buffer)
|
|
|
|
{
|
|
|
|
if (image_buffer == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(image_buffer->data);
|
2011-04-19 16:02:54 +02:00
|
|
|
free(image_buffer);
|
2011-03-18 13:27:21 +01:00
|
|
|
}
|
2011-09-29 15:23:13 +02:00
|
|
|
|
|
|
|
bool
|
|
|
|
zathura_type_plugin_mapping_new(zathura_t* zathura, const gchar* type, zathura_document_plugin_t* plugin)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail(zathura && type && plugin, false);
|
|
|
|
|
|
|
|
GIRARA_LIST_FOREACH(zathura->plugins.type_plugin_mapping, zathura_type_plugin_mapping_t*, iter, mapping)
|
|
|
|
if (g_content_type_equals(type, mapping->type)) {
|
|
|
|
girara_list_iterator_free(iter);
|
|
|
|
return false;
|
|
|
|
}
|
2011-10-17 11:16:14 +02:00
|
|
|
GIRARA_LIST_FOREACH_END(zathura->plugins.type_plugin_mapping, zathura_type_plugin_mapping_t*, iter, mapping);
|
2011-09-29 15:23:13 +02:00
|
|
|
|
|
|
|
zathura_type_plugin_mapping_t* mapping = g_malloc(sizeof(zathura_type_plugin_mapping_t));
|
|
|
|
mapping->type = g_strdup(type);
|
|
|
|
mapping->plugin = plugin;
|
|
|
|
girara_list_append(zathura->plugins.type_plugin_mapping, mapping);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
zathura_type_plugin_mapping_free(zathura_type_plugin_mapping_t* mapping)
|
|
|
|
{
|
|
|
|
if (mapping == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free((void*)mapping->type);
|
|
|
|
g_free(mapping);
|
|
|
|
}
|