zathura/commands.c

542 lines
16 KiB
C
Raw Normal View History

2010-11-10 20:31:15 +01:00
/* See LICENSE file for license and copyright information */
2011-10-01 23:29:40 +02:00
#include <string.h>
#include <stdlib.h>
#include <glib/gi18n.h>
2011-10-01 23:29:40 +02:00
2010-11-10 20:31:15 +01:00
#include "commands.h"
2012-03-24 10:38:48 +01:00
#include "shortcuts.h"
2011-09-03 13:40:28 +02:00
#include "bookmarks.h"
#include "database.h"
2011-10-01 23:29:40 +02:00
#include "document.h"
2011-03-12 11:32:24 +01:00
#include "zathura.h"
2011-04-29 00:28:19 +02:00
#include "print.h"
2011-09-03 13:40:28 +02:00
#include "document.h"
2011-10-01 23:29:40 +02:00
#include "utils.h"
2012-03-16 14:37:54 +01:00
#include "page-widget.h"
2012-03-26 14:44:56 +02:00
#include "page.h"
2012-06-13 16:08:33 +02:00
#include "plugin.h"
2012-04-06 13:54:17 +02:00
#include "internal.h"
2012-04-22 19:12:45 +02:00
#include "render.h"
2010-11-10 20:31:15 +01:00
#include <girara/session.h>
2012-04-22 19:12:45 +02:00
#include <girara/settings.h>
#include <girara/datastructures.h>
2012-01-13 18:54:09 +01:00
#include <girara/utils.h>
2010-11-10 20:31:15 +01:00
bool
2011-10-06 18:07:02 +02:00
cmd_bookmark_create(girara_session_t* session, girara_list_t* argument_list)
2010-11-10 20:31:15 +01:00
{
2011-10-06 18:07:02 +02:00
g_return_val_if_fail(session != NULL, false);
g_return_val_if_fail(session->global.data != NULL, false);
zathura_t* zathura = session->global.data;
if (zathura->document == NULL) {
girara_notify(session, GIRARA_ERROR, _("No document opened."));
2011-10-06 18:07:02 +02:00
return false;
}
const unsigned int argc = girara_list_size(argument_list);
if (argc != 1) {
girara_notify(session, GIRARA_ERROR, _("Invalid number of arguments given."));
2011-10-06 18:07:02 +02:00
return false;
}
const char* bookmark_name = girara_list_nth(argument_list, 0);
zathura_bookmark_t* bookmark = zathura_bookmark_get(zathura, bookmark_name);
if (bookmark != NULL) {
bookmark->page = zathura_document_get_current_page_number(zathura->document) + 1;
girara_notify(session, GIRARA_INFO, _("Bookmark successfuly updated: %s"), bookmark_name);
2011-10-06 18:07:02 +02:00
return true;
}
bookmark = zathura_bookmark_add(zathura, bookmark_name, zathura_document_get_current_page_number(zathura->document) + 1);
2011-10-06 18:07:02 +02:00
if (bookmark == NULL) {
girara_notify(session, GIRARA_ERROR, _("Could not create bookmark: %s"), bookmark_name);
2011-10-06 18:07:02 +02:00
return false;
}
girara_notify(session, GIRARA_INFO, _("Bookmark successfuly created: %s"), bookmark_name);
2010-11-10 20:31:15 +01:00
return true;
}
bool
cmd_bookmark_delete(girara_session_t* session, girara_list_t* argument_list)
2010-11-10 20:31:15 +01:00
{
2011-09-03 13:40:28 +02:00
g_return_val_if_fail(session != NULL, false);
g_return_val_if_fail(session->global.data != NULL, false);
zathura_t* zathura = session->global.data;
if (zathura->document == NULL) {
girara_notify(session, GIRARA_ERROR, _("No document opened."));
2011-09-03 13:40:28 +02:00
return false;
}
const unsigned int argc = girara_list_size(argument_list);
if (argc != 1) {
girara_notify(session, GIRARA_ERROR, _("Invalid number of arguments given."));
2011-09-03 13:40:28 +02:00
return false;
}
const char* bookmark = girara_list_nth(argument_list, 0);
if (zathura_bookmark_remove(zathura, bookmark)) {
girara_notify(session, GIRARA_INFO, _("Removed bookmark: %s"), bookmark);
2011-09-03 13:40:28 +02:00
} else {
girara_notify(session, GIRARA_ERROR, _("Failed to remove bookmark: %s"), bookmark);
2011-09-03 13:40:28 +02:00
}
2010-11-10 20:31:15 +01:00
return true;
}
bool
2011-10-06 18:01:15 +02:00
cmd_bookmark_open(girara_session_t* session, girara_list_t* argument_list)
2010-11-10 20:31:15 +01:00
{
2011-10-06 18:01:15 +02:00
g_return_val_if_fail(session != NULL, false);
g_return_val_if_fail(session->global.data != NULL, false);
zathura_t* zathura = session->global.data;
if (zathura->document == NULL) {
girara_notify(session, GIRARA_ERROR, _("No document opened."));
2011-10-06 18:01:15 +02:00
return false;
}
const unsigned int argc = girara_list_size(argument_list);
if (argc != 1) {
girara_notify(session, GIRARA_ERROR, _("Invalid number of arguments given."));
2011-10-06 18:01:15 +02:00
return false;
}
const char* bookmark_name = girara_list_nth(argument_list, 0);
zathura_bookmark_t* bookmark = zathura_bookmark_get(zathura, bookmark_name);
if (bookmark == NULL) {
girara_notify(session, GIRARA_ERROR, _("No such bookmark: %s"), bookmark_name);
2011-10-06 18:01:15 +02:00
return false;
}
2011-10-06 18:33:54 +02:00
return page_set(zathura, bookmark->page - 1);
2010-11-10 20:31:15 +01:00
}
bool
2011-09-21 00:46:03 +02:00
cmd_close(girara_session_t* session, girara_list_t* UNUSED(argument_list))
2010-11-10 20:31:15 +01:00
{
g_return_val_if_fail(session != NULL, false);
g_return_val_if_fail(session->global.data != NULL, false);
zathura_t* zathura = session->global.data;
if (zathura->document == NULL) {
return true;
}
2012-02-20 20:07:24 +01:00
document_close(zathura, false);
2011-03-12 11:32:24 +01:00
2010-11-10 20:31:15 +01:00
return true;
}
bool
2011-10-01 23:29:40 +02:00
cmd_info(girara_session_t* session, girara_list_t* UNUSED(argument_list))
2010-11-10 20:31:15 +01:00
{
2011-10-01 23:29:40 +02:00
g_return_val_if_fail(session != NULL, false);
g_return_val_if_fail(session->global.data != NULL, false);
zathura_t* zathura = session->global.data;
if (zathura->document == NULL) {
girara_notify(session, GIRARA_ERROR, _("No document opened."));
2011-10-01 23:29:40 +02:00
return false;
}
struct meta_field {
char* name;
2012-03-30 18:24:00 +02:00
zathura_document_information_type_t field;
2011-10-01 23:29:40 +02:00
};
struct meta_field meta_fields[] = {
2012-03-30 18:24:00 +02:00
{ "Title", ZATHURA_DOCUMENT_INFORMATION_TITLE },
{ "Author", ZATHURA_DOCUMENT_INFORMATION_AUTHOR },
{ "Subject", ZATHURA_DOCUMENT_INFORMATION_SUBJECT },
{ "Keywords", ZATHURA_DOCUMENT_INFORMATION_KEYWORDS },
{ "Creator", ZATHURA_DOCUMENT_INFORMATION_CREATOR },
{ "Producer", ZATHURA_DOCUMENT_INFORMATION_PRODUCER },
{ "Creation date", ZATHURA_DOCUMENT_INFORMATION_CREATION_DATE },
{ "Modiciation date", ZATHURA_DOCUMENT_INFORMATION_MODIFICATION_DATE }
2011-10-01 23:29:40 +02:00
};
2012-03-30 18:24:00 +02:00
girara_list_t* information = zathura_document_get_information(zathura->document, NULL);
if (information == NULL) {
girara_notify(session, GIRARA_INFO, _("No information available."));
return false;
2011-10-01 23:29:40 +02:00
}
2012-03-30 18:24:00 +02:00
GString* string = g_string_new(NULL);
2011-10-01 23:29:40 +02:00
2012-03-30 18:24:00 +02:00
GIRARA_LIST_FOREACH(information, zathura_document_information_entry_t*, iter, entry)
if (entry != NULL) {
for (unsigned int i = 0; i < LENGTH(meta_fields); i++) {
if (meta_fields[i].field == entry->type) {
char* text = g_strdup_printf("<b>%s:</b> %s\n", meta_fields[i].name, entry->value);
g_string_append(string, text);
g_free(text);
}
2012-03-30 18:24:00 +02:00
}
2011-10-01 23:29:40 +02:00
}
2012-03-30 18:24:00 +02:00
GIRARA_LIST_FOREACH_END(information, zathura_document_information_entry_t*, iter, entry);
2011-10-01 23:29:40 +02:00
if (strlen(string->str) > 0) {
g_string_erase(string, strlen(string->str) - 1, 1);
girara_notify(session, GIRARA_INFO, "%s", string->str);
} else {
girara_notify(session, GIRARA_INFO, _("No information available."));
2011-10-01 23:29:40 +02:00
}
g_string_free(string, TRUE);
return false;
2010-11-10 20:31:15 +01:00
}
2011-09-01 13:15:27 +02:00
bool
2011-09-21 00:46:03 +02:00
cmd_help(girara_session_t* UNUSED(session), girara_list_t*
UNUSED(argument_list))
2011-09-01 13:15:27 +02:00
{
return true;
}
2012-04-22 19:12:45 +02:00
bool
cmd_hlsearch(girara_session_t* session, girara_list_t* UNUSED(argument_list))
{
g_return_val_if_fail(session != NULL, false);
g_return_val_if_fail(session->global.data != NULL, false);
zathura_t* zathura = session->global.data;
document_draw_search_results(zathura, true);
render_all(zathura);
return true;
}
2011-05-25 00:24:43 +02:00
bool
cmd_open(girara_session_t* session, girara_list_t* argument_list)
{
2011-08-31 00:08:33 +02:00
g_return_val_if_fail(session != NULL, false);
g_return_val_if_fail(session->global.data != NULL, false);
zathura_t* zathura = session->global.data;
const int argc = girara_list_size(argument_list);
if (argc > 2) {
girara_notify(session, GIRARA_ERROR, _("Too many arguments."));
2011-08-31 00:08:33 +02:00
return false;
2011-10-12 16:18:40 +02:00
} else if (argc >= 1) {
2012-02-20 20:07:24 +01:00
if (zathura->document != NULL) {
document_close(zathura, false);
2011-09-03 13:40:28 +02:00
}
2011-08-31 00:08:33 +02:00
document_open(zathura, girara_list_nth(argument_list, 0), (argc == 2) ? girara_list_nth(argument_list, 1) : NULL);
2011-10-12 16:18:40 +02:00
} else {
girara_notify(session, GIRARA_ERROR, _("No arguments given."));
2011-08-31 00:08:33 +02:00
return false;
}
2011-05-25 00:24:43 +02:00
return true;
}
2012-03-24 10:38:48 +01:00
bool
cmd_quit(girara_session_t* session, girara_list_t* UNUSED(argument_list))
{
sc_quit(session, NULL, NULL, 0);
return true;
}
2010-11-10 20:31:15 +01:00
bool
2011-09-21 00:46:03 +02:00
cmd_print(girara_session_t* session, girara_list_t* UNUSED(argument_list))
2010-11-10 20:31:15 +01:00
{
2011-04-29 00:28:19 +02:00
g_return_val_if_fail(session != NULL, false);
g_return_val_if_fail(session->global.data != NULL, false);
zathura_t* zathura = session->global.data;
if (zathura->document == NULL) {
2012-03-05 17:27:17 +01:00
girara_notify(session, GIRARA_ERROR, _("No document opened."));
return false;
}
2011-04-29 00:28:19 +02:00
2012-05-08 16:47:34 +02:00
print(zathura);
2011-04-29 00:28:19 +02:00
2010-11-10 20:31:15 +01:00
return true;
}
2012-04-22 19:12:45 +02:00
bool
cmd_nohlsearch(girara_session_t* session, girara_list_t* UNUSED(argument_list))
{
g_return_val_if_fail(session != NULL, false);
g_return_val_if_fail(session->global.data != NULL, false);
zathura_t* zathura = session->global.data;
document_draw_search_results(zathura, false);
render_all(zathura);
return true;
}
2010-11-10 20:31:15 +01:00
bool
cmd_save(girara_session_t* session, girara_list_t* argument_list)
2010-11-10 20:31:15 +01:00
{
2011-09-01 11:51:49 +02:00
g_return_val_if_fail(session != NULL, false);
g_return_val_if_fail(session->global.data != NULL, false);
zathura_t* zathura = session->global.data;
if (zathura->document == NULL) {
2012-03-05 17:27:17 +01:00
girara_notify(session, GIRARA_ERROR, _("No document opened."));
return false;
}
2011-09-01 11:51:49 +02:00
if (girara_list_size(argument_list) == 1) {
if (document_save(zathura, girara_list_nth(argument_list, 0), false) == true) {
girara_notify(session, GIRARA_INFO, _("Document saved."));
} else {
girara_notify(session, GIRARA_INFO, _("Failed to save document."));
}
2011-10-12 16:18:40 +02:00
} else {
girara_notify(session, GIRARA_ERROR, _("Invalid number of arguments."));
2011-09-01 11:51:49 +02:00
return false;
}
return true;
}
bool
cmd_savef(girara_session_t* session, girara_list_t* argument_list)
{
g_return_val_if_fail(session != NULL, false);
g_return_val_if_fail(session->global.data != NULL, false);
zathura_t* zathura = session->global.data;
if (zathura->document == NULL) {
2012-03-05 17:27:17 +01:00
girara_notify(session, GIRARA_ERROR, _("No document opened."));
2011-09-03 13:40:28 +02:00
return false;
}
2011-09-01 11:51:49 +02:00
if (girara_list_size(argument_list) == 1) {
if (document_save(zathura, girara_list_nth(argument_list, 0), true) == true) {
girara_notify(session, GIRARA_INFO, _("Document saved."));
} else {
girara_notify(session, GIRARA_INFO, _("Failed to save document."));
}
2011-10-12 16:18:40 +02:00
} else {
girara_notify(session, GIRARA_ERROR, _("Invalid number of arguments."));
2011-09-01 11:51:49 +02:00
return false;
}
2010-11-10 20:31:15 +01:00
return true;
}
2011-10-22 16:35:38 +02:00
bool
2011-12-09 14:48:16 +01:00
cmd_search(girara_session_t* session, const char* input, girara_argument_t* argument)
2011-10-22 16:35:38 +02:00
{
g_return_val_if_fail(session != NULL, false);
g_return_val_if_fail(input != NULL, false);
g_return_val_if_fail(argument != NULL, false);
g_return_val_if_fail(session->global.data != NULL, false);
zathura_t* zathura = session->global.data;
2012-02-07 12:08:00 +01:00
if (zathura->document == NULL || strlen(input) == 0) {
2011-10-22 16:35:38 +02:00
return false;
}
bool firsthit = true;
2012-03-27 13:30:04 +02:00
zathura_error_t error = ZATHURA_ERROR_OK;
unsigned int number_of_pages = zathura_document_get_number_of_pages(zathura->document);
unsigned int current_page_number = zathura_document_get_current_page_number(zathura->document);
2012-04-22 19:12:45 +02:00
/* reset search highlighting */
bool nohlsearch = false;
girara_setting_get(session, "nohlsearch", &nohlsearch);
if (nohlsearch == false) {
document_draw_search_results(zathura, true);
}
/* search pages */
for (unsigned int page_id = 0; page_id < number_of_pages; ++page_id) {
2012-03-30 18:24:00 +02:00
unsigned int index = (page_id + current_page_number) % number_of_pages;
zathura_page_t* page = zathura_document_get_page(zathura->document, index);
if (page == NULL) {
2012-02-07 12:08:00 +01:00
continue;
}
GtkWidget* page_widget = zathura_page_get_widget(zathura, page);
2012-03-26 14:44:56 +02:00
g_object_set(page_widget, "draw-links", FALSE, NULL);
2012-02-07 12:08:00 +01:00
girara_list_t* result = zathura_page_search_text(page, input, &error);
2012-02-07 12:08:00 +01:00
if (result == NULL || girara_list_size(result) == 0) {
girara_list_free(result);
2012-03-26 14:44:56 +02:00
g_object_set(page_widget, "search-results", NULL, NULL);
2012-03-27 13:30:04 +02:00
if (error == ZATHURA_ERROR_NOT_IMPLEMENTED) {
break;
} else {
continue;
}
2012-02-07 12:08:00 +01:00
}
2012-03-26 14:44:56 +02:00
g_object_set(page_widget, "search-results", result, NULL);
if (firsthit == true) {
if (page_id != 0) {
2012-03-26 15:30:58 +02:00
page_set_delayed(zathura, zathura_page_get_index(page));
}
2012-03-26 14:44:56 +02:00
g_object_set(page_widget, "search-current", 0, NULL);
firsthit = false;
}
2012-02-07 12:08:00 +01:00
}
2011-10-22 16:35:38 +02:00
return true;
}
2012-01-13 18:54:09 +01:00
bool
cmd_export(girara_session_t* session, girara_list_t* argument_list)
{
g_return_val_if_fail(session != NULL, false);
g_return_val_if_fail(session->global.data != NULL, false);
zathura_t* zathura = session->global.data;
if (zathura->document == NULL) {
girara_notify(session, GIRARA_ERROR, _("No document opened."));
2012-01-13 18:54:09 +01:00
return false;
}
if (girara_list_size(argument_list) != 2) {
girara_notify(session, GIRARA_ERROR, _("Invalid number of arguments given."));
2012-01-13 18:54:09 +01:00
return false;
}
2012-05-01 11:54:52 +02:00
const char* file_identifier = girara_list_nth(argument_list, 0);
const char* file_name = girara_list_nth(argument_list, 1);
2012-05-01 11:54:52 +02:00
if (file_name == NULL || file_identifier == NULL) {
return false;
}
2012-05-01 11:54:52 +02:00
char* export_path = girara_fix_path(file_name);
if (export_path == NULL) {
return false;
}
/* attachment */
if (strncmp(file_identifier, "attachment-", strlen("attachment-")) == 0) {
if (zathura_document_attachment_save(zathura->document, file_identifier + strlen("attachment-"), export_path) == false) {
girara_notify(session, GIRARA_ERROR, _("Couldn't write attachment '%s' to '%s'."), file_identifier, file_name);
} else {
girara_notify(session, GIRARA_INFO, _("Wrote attachment '%s' to '%s'."), file_identifier, export_path);
}
/* image */
} else if (strncmp(file_identifier, "image-p", strlen("image-p")) == 0 && strlen(file_identifier) >= 10) {
/* parse page id */
const char* input = file_identifier + strlen("image-p");
int page_id = atoi(input);
if (page_id == 0) {
goto image_error;
}
/* parse image id */
input = strstr(input, "-");
if (input == NULL) {
goto image_error;
}
int image_id = atoi(input + 1);
if (image_id == 0) {
goto image_error;
}
/* get image */
zathura_page_t* page = zathura_document_get_page(zathura->document, page_id - 1);
if (page == NULL) {
goto image_error;
}
girara_list_t* images = zathura_page_images_get(page, NULL);
if (images == NULL) {
goto image_error;
}
zathura_image_t* image = girara_list_nth(images, image_id - 1);
if (image == NULL) {
goto image_error;
}
cairo_surface_t* surface = zathura_page_image_get_cairo(page, image, NULL);
if (surface == NULL) {
goto image_error;
}
if (cairo_surface_write_to_png(surface, export_path) == CAIRO_STATUS_SUCCESS) {
girara_notify(session, GIRARA_INFO, _("Wrote image '%s' to '%s'."), file_identifier, export_path);
} else {
girara_notify(session, GIRARA_ERROR, _("Couldn't write image '%s' to '%s'."), file_identifier, file_name);
}
goto error_ret;
image_error:
girara_notify(session, GIRARA_ERROR, _("Unknown image '%s'."), file_identifier);
goto error_ret;
/* unknown */
2012-01-13 18:54:09 +01:00
} else {
2012-05-01 11:54:52 +02:00
girara_notify(session, GIRARA_ERROR, _("Unknown attachment or image '%s'."), file_identifier);
2012-01-13 18:54:09 +01:00
}
2012-05-01 11:54:52 +02:00
error_ret:
g_free(export_path);
2012-01-13 18:54:09 +01:00
return true;
}
bool
cmd_offset(girara_session_t* session, girara_list_t* argument_list)
{
g_return_val_if_fail(session != NULL, false);
g_return_val_if_fail(session->global.data != NULL, false);
zathura_t* zathura = session->global.data;
if (zathura->document == NULL) {
girara_notify(session, GIRARA_ERROR, _("No document opened."));
return false;
}
/* no argument: take current page as offset */
unsigned int page_offset = zathura_document_get_current_page_number(zathura->document);
/* retrieve offset from argument */
if (girara_list_size(argument_list) == 1) {
const char* value = girara_list_nth(argument_list, 0);
if (value != NULL) {
page_offset = atoi(value);
if (page_offset == 0 && strcmp(value, "0") != 0) {
girara_notify(session, GIRARA_WARNING, _("Argument must be a number."));
return false;
}
}
}
if (page_offset < zathura_document_get_number_of_pages(zathura->document)) {
zathura_document_set_page_offset(zathura->document, page_offset);
}
return true;
}
2012-06-13 16:08:33 +02:00
bool
cmd_version(girara_session_t* session, girara_list_t* UNUSED(argument_list))
{
g_return_val_if_fail(session != NULL, false);
g_return_val_if_fail(session->global.data != NULL, false);
zathura_t* zathura = session->global.data;
2012-07-12 10:37:58 +02:00
char* string = zathura_get_version_string(zathura, true);
if (string == NULL) {
return false;
}
2012-06-13 16:08:33 +02:00
/* display information */
2012-07-12 10:37:58 +02:00
girara_notify(session, GIRARA_INFO, "%s", string);
2012-06-13 16:08:33 +02:00
2012-07-12 10:37:58 +02:00
g_free(string);
2012-06-13 16:08:33 +02:00
return true;
}