mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-11 00:33:48 +01:00
558 lines
12 KiB
C
558 lines
12 KiB
C
/* See LICENSE file for license and copyright information */
|
|
|
|
#define _BSD_SOURCE
|
|
#define _XOPEN_SOURCE 500
|
|
// TODO: Implement realpath
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <limits.h>
|
|
#include <sys/types.h>
|
|
#include <dirent.h>
|
|
#include <dlfcn.h>
|
|
|
|
#include "document.h"
|
|
#include "utils.h"
|
|
#include "zathura.h"
|
|
|
|
#define LENGTH(x) (sizeof(x)/sizeof((x)[0]))
|
|
|
|
zathura_document_plugin_t* zathura_document_plugins = NULL;
|
|
|
|
void
|
|
zathura_document_plugins_load(void)
|
|
{
|
|
/* read all files in the plugin directory */
|
|
DIR* dir = opendir(PLUGIN_DIR);
|
|
if (dir == NULL) {
|
|
fprintf(stderr, "error: could not open plugin directory: %s\n", PLUGIN_DIR);
|
|
return;
|
|
}
|
|
|
|
struct dirent* entry;
|
|
while ((entry = readdir(dir)) != NULL) {
|
|
/* check if entry is a file */
|
|
if (entry->d_type != 0x8) {
|
|
continue;
|
|
}
|
|
|
|
void* handle = NULL;
|
|
zathura_document_plugin_t* plugin = NULL;
|
|
char* path = NULL;
|
|
|
|
/* get full path */
|
|
path = string_concat(PLUGIN_DIR, "/", entry->d_name, NULL);
|
|
|
|
if (path == NULL) {
|
|
goto error_continue;
|
|
}
|
|
|
|
/* load plugin */
|
|
handle = dlopen(path, RTLD_NOW);
|
|
|
|
if (handle == NULL) {
|
|
fprintf(stderr, "error: could not load plugin (%s)\n", dlerror());
|
|
goto error_free;
|
|
}
|
|
|
|
/* resolve symbol */
|
|
zathura_plugin_register_service_t register_plugin;
|
|
*(void**)(®ister_plugin) = dlsym(handle, PLUGIN_REGISTER_FUNCTION);
|
|
|
|
if (register_plugin == NULL) {
|
|
fprintf(stderr, "error: could not find '%s' function in the plugin\n", PLUGIN_REGISTER_FUNCTION);
|
|
goto error_free;
|
|
}
|
|
|
|
plugin = malloc(sizeof(zathura_document_plugin_t));
|
|
|
|
if (plugin == NULL) {
|
|
goto error_free;
|
|
}
|
|
|
|
plugin->file_extension = NULL;
|
|
plugin->open_function = NULL;
|
|
|
|
register_plugin(plugin);
|
|
|
|
bool r = zathura_document_plugin_register(plugin, handle);
|
|
|
|
if (r == false) {
|
|
fprintf(stderr, "error: could not register plugin (%s)\n", path);
|
|
goto error_free;
|
|
}
|
|
|
|
free(path);
|
|
|
|
continue;
|
|
|
|
error_free:
|
|
|
|
free(path);
|
|
free(plugin);
|
|
|
|
if (handle) {
|
|
dlclose(handle);
|
|
}
|
|
|
|
error_continue:
|
|
|
|
continue;
|
|
}
|
|
|
|
if (closedir(dir) == -1) {
|
|
fprintf(stderr, "error: could not close plugin directory: %s\n", PLUGIN_DIR);
|
|
}
|
|
}
|
|
|
|
void
|
|
zathura_document_plugins_free(void)
|
|
{
|
|
/* free registered plugins */
|
|
zathura_document_plugin_t* plugin = zathura_document_plugins;
|
|
while (plugin) {
|
|
zathura_document_plugin_t* tmp = plugin->next;
|
|
free(plugin->file_extension);
|
|
free(plugin);
|
|
plugin = tmp;
|
|
}
|
|
|
|
zathura_document_plugins = NULL;
|
|
}
|
|
|
|
bool
|
|
zathura_document_plugin_register(zathura_document_plugin_t* new_plugin, void* handle)
|
|
{
|
|
if( (new_plugin == NULL) || (new_plugin->file_extension == NULL) || (new_plugin->open_function == NULL)
|
|
|| (handle == NULL) ) {
|
|
fprintf(stderr, "plugin: could not register\n");
|
|
return false;
|
|
}
|
|
|
|
/* search existing plugins */
|
|
zathura_document_plugin_t* plugin = zathura_document_plugins;
|
|
while (plugin) {
|
|
if (!strcmp(plugin->file_extension, new_plugin->file_extension)) {
|
|
fprintf(stderr, "plugin: already registered for filetype %s\n", plugin->file_extension);
|
|
return false;
|
|
}
|
|
|
|
if (plugin->next == NULL) {
|
|
break;
|
|
}
|
|
|
|
plugin = plugin->next;
|
|
}
|
|
|
|
/* create new plugin */
|
|
new_plugin->handle = handle;
|
|
new_plugin->next = NULL;
|
|
|
|
/* append to list */
|
|
if (plugin == NULL) {
|
|
zathura_document_plugins = new_plugin;
|
|
} else {
|
|
plugin->next = new_plugin;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
zathura_document_t*
|
|
zathura_document_open(const char* path, const char* password)
|
|
{
|
|
if (!path) {
|
|
goto error_out;
|
|
}
|
|
|
|
if (!file_exists(path)) {
|
|
fprintf(stderr, "error: file does not exist\n");
|
|
goto error_out;
|
|
}
|
|
|
|
const char* file_extension = file_get_extension(path);
|
|
if (!file_extension) {
|
|
fprintf(stderr, "error: could not determine file type\n");
|
|
goto error_out;
|
|
}
|
|
|
|
/* determine real path */
|
|
size_t path_max;
|
|
#ifdef PATH_MAX
|
|
path_max = PATH_MAX;
|
|
#else
|
|
path_max = pathconf(path,_PC_PATH_MAX);
|
|
if (path_max <= 0)
|
|
path_max = 4096;
|
|
#endif
|
|
|
|
char* real_path = NULL;
|
|
zathura_document_t* document = NULL;
|
|
|
|
real_path = malloc(sizeof(char) * path_max);
|
|
if (!real_path) {
|
|
goto error_out;
|
|
}
|
|
|
|
if (!realpath(path, real_path)) {
|
|
goto error_free;
|
|
}
|
|
|
|
document = malloc(sizeof(zathura_document_t));
|
|
if (!document) {
|
|
goto error_free;
|
|
}
|
|
|
|
document->file_path = real_path;
|
|
document->password = password;
|
|
document->current_page_number = 0;
|
|
document->number_of_pages = 0;
|
|
document->scale = 1.0;
|
|
document->rotate = 0;
|
|
document->data = NULL;
|
|
document->pages = NULL;
|
|
|
|
document->functions.document_free = NULL;
|
|
document->functions.document_index_generate = NULL;
|
|
document->functions.document_save_as = NULL;
|
|
document->functions.document_attachments_get = NULL;
|
|
document->functions.page_get = NULL;
|
|
document->functions.page_free = NULL;
|
|
document->functions.page_search_text = NULL;
|
|
document->functions.page_links_get = NULL;
|
|
document->functions.page_form_fields_get = NULL;
|
|
document->functions.page_render = NULL;
|
|
|
|
/* init plugin with associated file type */
|
|
zathura_document_plugin_t* plugin = zathura_document_plugins;
|
|
while (plugin) {
|
|
if (!strcmp(file_extension, plugin->file_extension)) {
|
|
if (plugin->open_function) {
|
|
if (plugin->open_function(document)) {
|
|
/* update statusbar */
|
|
girara_statusbar_item_set_text(Zathura.UI.session, Zathura.UI.statusbar.file, real_path);
|
|
|
|
/* read all pages */
|
|
document->pages = calloc(document->number_of_pages, sizeof(zathura_page_t*));
|
|
if (!document->pages) {
|
|
goto error_free;
|
|
}
|
|
|
|
double offset = 0;
|
|
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) {
|
|
goto error_free;
|
|
}
|
|
|
|
page->offset = offset;
|
|
offset += page->height;
|
|
|
|
document->pages[page_id] = page;
|
|
}
|
|
|
|
return document;
|
|
} else {
|
|
fprintf(stderr, "error: could not open file\n");
|
|
goto error_free;
|
|
}
|
|
}
|
|
}
|
|
|
|
plugin = plugin->next;
|
|
}
|
|
|
|
fprintf(stderr, "error: unknown file type\n");
|
|
|
|
error_free:
|
|
|
|
free(real_path);
|
|
|
|
if (document && document->pages) {
|
|
for (unsigned int page_id = 0; page_id < document->number_of_pages; page_id++)
|
|
{
|
|
zathura_page_free(document->pages[page_id]);
|
|
}
|
|
|
|
free(document->pages);
|
|
}
|
|
|
|
free(document);
|
|
|
|
error_out:
|
|
|
|
return NULL;
|
|
}
|
|
|
|
bool
|
|
zathura_document_free(zathura_document_t* document)
|
|
{
|
|
if (!document) {
|
|
return false;
|
|
}
|
|
|
|
/* free pages */
|
|
for (unsigned int page_id = 0; page_id < document->number_of_pages; page_id++)
|
|
{
|
|
zathura_page_free(document->pages[page_id]);
|
|
}
|
|
|
|
free(document->pages);
|
|
|
|
/* free document */
|
|
if (!document->functions.document_free) {
|
|
fprintf(stderr, "error: %s not implemented\n", __FUNCTION__);
|
|
|
|
if (document->file_path) {
|
|
free(document->file_path);
|
|
}
|
|
|
|
free(document);
|
|
return true;
|
|
}
|
|
|
|
bool r = document->functions.document_free(document);
|
|
|
|
if (document->file_path) {
|
|
free(document->file_path);
|
|
}
|
|
|
|
free(document);
|
|
|
|
return r;
|
|
}
|
|
|
|
bool
|
|
zathura_document_save_as(zathura_document_t* document, const char* path)
|
|
{
|
|
if (!document || !path) {
|
|
return false;
|
|
}
|
|
|
|
if (!document->functions.document_save_as) {
|
|
fprintf(stderr, "error: %s not implemented\n", __FUNCTION__);
|
|
return false;
|
|
}
|
|
|
|
return document->functions.document_save_as(document, path);
|
|
}
|
|
|
|
girara_tree_node_t*
|
|
zathura_document_index_generate(zathura_document_t* document)
|
|
{
|
|
if (!document) {
|
|
return NULL;
|
|
}
|
|
|
|
if (!document->functions.document_index_generate) {
|
|
fprintf(stderr, "error: %s not implemented\n", __FUNCTION__);
|
|
return NULL;
|
|
}
|
|
|
|
return document->functions.document_index_generate(document);
|
|
}
|
|
|
|
zathura_list_t*
|
|
zathura_document_attachments_get(zathura_document_t* document)
|
|
{
|
|
if (!document) {
|
|
return NULL;
|
|
}
|
|
|
|
if (!document->functions.document_attachments_get) {
|
|
fprintf(stderr, "error: %s not implemented\n", __FUNCTION__);
|
|
return NULL;
|
|
}
|
|
|
|
return document->functions.document_attachments_get(document);
|
|
}
|
|
|
|
bool
|
|
zathura_document_attachments_free(zathura_list_t* list)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
zathura_page_t*
|
|
zathura_page_get(zathura_document_t* document, unsigned int page_id)
|
|
{
|
|
if (!document) {
|
|
return NULL;
|
|
}
|
|
|
|
if (!document->functions.page_get) {
|
|
fprintf(stderr, "error: %s not implemented\n", __FUNCTION__);
|
|
return NULL;
|
|
}
|
|
|
|
zathura_page_t* page = document->functions.page_get(document, page_id);
|
|
|
|
if (page) {
|
|
page->number = page_id;
|
|
page->rendered = false;
|
|
g_static_mutex_init(&(page->lock));
|
|
}
|
|
|
|
return page;
|
|
}
|
|
|
|
bool
|
|
zathura_page_free(zathura_page_t* page)
|
|
{
|
|
if (!page || !page->document) {
|
|
return false;
|
|
}
|
|
|
|
if (!page->document->functions.page_free) {
|
|
fprintf(stderr, "error: %s not implemented\n", __FUNCTION__);
|
|
return false;
|
|
}
|
|
|
|
return page->document->functions.page_free(page);
|
|
}
|
|
|
|
zathura_list_t*
|
|
zathura_page_search_text(zathura_page_t* page, const char* text)
|
|
{
|
|
if (!page || !page->document || !text) {
|
|
return NULL;
|
|
}
|
|
|
|
if (!page->document->functions.page_search_text) {
|
|
fprintf(stderr, "error: %s not implemented\n", __FUNCTION__);
|
|
return NULL;
|
|
}
|
|
|
|
return page->document->functions.page_search_text(page, text);
|
|
}
|
|
|
|
zathura_list_t*
|
|
zathura_page_links_get(zathura_page_t* page)
|
|
{
|
|
if (!page || !page->document) {
|
|
return NULL;
|
|
}
|
|
|
|
if (!page->document->functions.page_links_get) {
|
|
fprintf(stderr, "error: %s not implemented\n", __FUNCTION__);
|
|
return NULL;
|
|
}
|
|
|
|
return page->document->functions.page_links_get(page);
|
|
}
|
|
|
|
bool
|
|
zathura_page_links_free(zathura_list_t* list)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
zathura_list_t*
|
|
zathura_page_form_fields_get(zathura_page_t* page)
|
|
{
|
|
if (!page || !page->document) {
|
|
return NULL;
|
|
}
|
|
|
|
if (!page->document->functions.page_form_fields_get) {
|
|
fprintf(stderr, "error: %s not implemented\n", __FUNCTION__);
|
|
return NULL;
|
|
}
|
|
|
|
return page->document->functions.page_form_fields_get(page);
|
|
}
|
|
|
|
bool
|
|
zathura_page_form_fields_free(zathura_list_t* list)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
zathura_image_buffer_t*
|
|
zathura_page_render(zathura_page_t* page)
|
|
{
|
|
if (!page || !page->document) {
|
|
return NULL;
|
|
}
|
|
|
|
if (!page->document->functions.page_render) {
|
|
fprintf(stderr, "error: %s not implemented\n", __FUNCTION__);
|
|
return NULL;
|
|
}
|
|
|
|
zathura_image_buffer_t* buffer = page->document->functions.page_render(page);
|
|
|
|
if (buffer) {
|
|
page->rendered = true;
|
|
}
|
|
|
|
return buffer;
|
|
}
|
|
|
|
zathura_index_element_t*
|
|
zathura_index_element_new(const char* title)
|
|
{
|
|
if (!title) {
|
|
return NULL;
|
|
}
|
|
|
|
zathura_index_element_t* res = g_malloc0(sizeof(zathura_index_element_t));
|
|
|
|
if (!res) {
|
|
return NULL;
|
|
}
|
|
|
|
res->title = g_strdup(title);
|
|
|
|
return res;
|
|
}
|
|
|
|
void
|
|
zathura_index_element_free(zathura_index_element_t* index)
|
|
{
|
|
if (!index) {
|
|
return;
|
|
}
|
|
|
|
g_free(index->title);
|
|
|
|
if (index->type == ZATHURA_LINK_EXTERNAL) {
|
|
g_free(index->target.uri);
|
|
}
|
|
|
|
g_free(index);
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
image_buffer->width = width;
|
|
image_buffer->height = height;
|
|
|
|
return image_buffer;
|
|
}
|
|
|
|
void
|
|
zathura_image_buffer_free(zathura_image_buffer_t* image_buffer)
|
|
{
|
|
if (image_buffer == NULL) {
|
|
return;
|
|
}
|
|
|
|
free(image_buffer->data);
|
|
}
|