mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-13 07:03:45 +01:00
implement content type support
This commit is contained in:
parent
ede8a7b236
commit
b34d21afaf
@ -94,4 +94,3 @@ zathura_bookmarks_load(zathura_t* zathura, const gchar* file) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
|
@ -28,7 +28,7 @@ LIBS = ${GIRARA_LIB} ${GTK_LIB} $(SQLITE_LIB) $(DL_LIB) -lpthread -lm
|
||||
CFLAGS += -std=c99 -pedantic -Wall -Wno-format-zero-length -Wextra $(INCS)
|
||||
|
||||
# debug
|
||||
DFLAGS = -g
|
||||
DFLAGS ?= -g
|
||||
|
||||
# ld
|
||||
LDFLAGS += -rdynamic
|
||||
|
122
document.c
122
document.c
@ -94,8 +94,9 @@ zathura_document_plugins_load(zathura_t* zathura)
|
||||
break;
|
||||
}
|
||||
|
||||
plugin->file_extension = NULL;
|
||||
plugin->open_function = NULL;
|
||||
plugin->content_types = girara_list_new();
|
||||
girara_list_set_free_function(plugin->content_types, g_free);
|
||||
|
||||
register_plugin(plugin);
|
||||
|
||||
@ -121,67 +122,55 @@ zathura_document_plugins_load(zathura_t* zathura)
|
||||
}
|
||||
|
||||
void
|
||||
zathura_document_plugins_free(zathura_t* zathura)
|
||||
zathura_document_plugin_free(zathura_document_plugin_t* plugin)
|
||||
{
|
||||
if (zathura == NULL) {
|
||||
if (plugin == NULL) {
|
||||
return;
|
||||
}
|
||||
|
||||
girara_list_iterator_t* iter = girara_list_iterator(zathura->plugins.plugins);
|
||||
if (iter == NULL) {
|
||||
return;
|
||||
}
|
||||
|
||||
do {
|
||||
zathura_document_plugin_t* plugin = (zathura_document_plugin_t*) girara_list_iterator_data(iter);
|
||||
girara_list_free(plugin->content_types);
|
||||
free(plugin);
|
||||
} while (girara_list_iterator_next(iter));
|
||||
girara_list_iterator_free(iter);
|
||||
}
|
||||
|
||||
bool
|
||||
zathura_document_plugin_register(zathura_t* zathura, zathura_document_plugin_t* new_plugin, void* handle)
|
||||
{
|
||||
if( (new_plugin == NULL) || (new_plugin->file_extension == NULL) || (new_plugin->open_function == NULL)
|
||||
if( (new_plugin == NULL) || (new_plugin->content_types == NULL) || (new_plugin->open_function == NULL)
|
||||
|| (handle == NULL) ) {
|
||||
girara_error("plugin: could not register\n");
|
||||
return false;
|
||||
}
|
||||
|
||||
/* search existing plugins */
|
||||
girara_list_iterator_t* iter = girara_list_iterator(zathura->plugins.plugins);
|
||||
if (iter) {
|
||||
do {
|
||||
zathura_document_plugin_t* plugin = (zathura_document_plugin_t*) girara_list_iterator_data(iter);
|
||||
if (strcmp(plugin->file_extension, new_plugin->file_extension) == 0) {
|
||||
girara_error("plugin: already registered for filetype %s\n", plugin->file_extension);
|
||||
girara_list_iterator_free(iter);
|
||||
return false;
|
||||
}
|
||||
} while (girara_list_iterator_next(iter));
|
||||
girara_list_iterator_free(iter);
|
||||
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;
|
||||
GIRARA_LIST_FOREACH_END(new_plugin->content_types, gchar*, iter, type)
|
||||
|
||||
if (atleastone) {
|
||||
girara_list_append(zathura->plugins.plugins, new_plugin);
|
||||
return true;
|
||||
}
|
||||
return atleastone;
|
||||
}
|
||||
|
||||
zathura_document_t*
|
||||
zathura_document_open(zathura_t* zathura, const char* path, const char* password)
|
||||
{
|
||||
if (path == NULL) {
|
||||
goto error_out;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (file_exists(path) == false) {
|
||||
girara_error("File does not exist");
|
||||
goto error_out;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
const char* file_extension = file_get_extension(path);
|
||||
if (file_extension == NULL) {
|
||||
const gchar* content_type = g_content_type_guess(path, NULL, 0, NULL);
|
||||
if (content_type == NULL) {
|
||||
girara_error("Could not determine file type");
|
||||
goto error_out;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* determine real path */
|
||||
@ -199,11 +188,28 @@ zathura_document_open(zathura_t* zathura, const char* path, const char* password
|
||||
|
||||
real_path = malloc(sizeof(char) * path_max);
|
||||
if (real_path == NULL) {
|
||||
goto error_out;
|
||||
g_free((void*)content_type);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (realpath(path, real_path) == NULL) {
|
||||
goto error_free;
|
||||
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;
|
||||
}
|
||||
GIRARA_LIST_FOREACH_END(zathura->plugins.type_plugin_mapping, zathura_type_plugin_mapping_t*, iter, mapping)
|
||||
g_free((void*)content_type);
|
||||
|
||||
if (plugin == NULL) {
|
||||
girara_error("unknown file type\n");
|
||||
free(real_path);
|
||||
}
|
||||
|
||||
document = g_malloc0(sizeof(zathura_document_t));
|
||||
@ -216,15 +222,6 @@ zathura_document_open(zathura_t* zathura, const char* path, const char* password
|
||||
document->scale = 1.0;
|
||||
document->zathura = zathura;
|
||||
|
||||
girara_list_iterator_t* iter = girara_list_iterator(zathura->plugins.plugins);
|
||||
if (iter == NULL) {
|
||||
goto error_free;
|
||||
}
|
||||
|
||||
do {
|
||||
zathura_document_plugin_t* plugin = (zathura_document_plugin_t*) girara_list_iterator_data(iter);
|
||||
if (strcmp(file_extension, plugin->file_extension) == 0) {
|
||||
girara_list_iterator_free(iter);
|
||||
if (plugin->open_function != NULL) {
|
||||
if (plugin->open_function(document) == true) {
|
||||
/* update statusbar */
|
||||
@ -246,16 +243,10 @@ zathura_document_open(zathura_t* zathura, const char* path, const char* password
|
||||
}
|
||||
|
||||
return document;
|
||||
} else {
|
||||
girara_error("could not open file\n");
|
||||
goto error_free;
|
||||
}
|
||||
}
|
||||
}
|
||||
} while (girara_list_iterator_next(iter));
|
||||
girara_list_iterator_free(iter);
|
||||
|
||||
girara_error("unknown file type\n");
|
||||
girara_error("could not open file\n");
|
||||
|
||||
error_free:
|
||||
|
||||
@ -270,9 +261,6 @@ error_free:
|
||||
}
|
||||
|
||||
g_free(document);
|
||||
|
||||
error_out:
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@ -553,3 +541,33 @@ zathura_image_buffer_free(zathura_image_buffer_t* image_buffer)
|
||||
free(image_buffer->data);
|
||||
free(image_buffer);
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
GIRARA_LIST_FOREACH_END(zathura->plugins.type_plugin_mapping, zathura_type_plugin_mapping_t*, iter, mapping)
|
||||
|
||||
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);
|
||||
}
|
||||
|
30
document.h
30
document.h
@ -22,11 +22,17 @@ typedef bool (*zathura_document_open_t)(zathura_document_t* document);
|
||||
*/
|
||||
typedef struct zathura_document_plugin_s
|
||||
{
|
||||
char* file_extension; /**> File extension */
|
||||
girara_list_t* content_types; /**> List of supported content types */
|
||||
zathura_document_open_t open_function; /**> Document open function */
|
||||
void* handle; /**> DLL handle */
|
||||
} zathura_document_plugin_t;
|
||||
|
||||
typedef struct zathura_type_plugin_mapping_s
|
||||
{
|
||||
const gchar* type;
|
||||
zathura_document_plugin_t* plugin;
|
||||
} zathura_type_plugin_mapping_t;
|
||||
|
||||
/**
|
||||
* Function prototype that is called to register a document plugin
|
||||
*
|
||||
@ -239,11 +245,11 @@ struct zathura_document_s
|
||||
void zathura_document_plugins_load(zathura_t* zathura);
|
||||
|
||||
/**
|
||||
* Free all document plugins
|
||||
* Free a document plugin
|
||||
*
|
||||
* @param zathura the zathura session
|
||||
* @param plugin The plugin
|
||||
*/
|
||||
void zathura_document_plugins_free(zathura_t* zathura);
|
||||
void zathura_document_plugin_free(zathura_document_plugin_t* plugin);
|
||||
|
||||
/**
|
||||
* Register document plugin
|
||||
@ -383,4 +389,20 @@ zathura_index_element_t* zathura_index_element_new(const char* title);
|
||||
*/
|
||||
void zathura_index_element_free(zathura_index_element_t* index);
|
||||
|
||||
/**
|
||||
* Add type -> plugin mapping
|
||||
* @param zathura zathura instance
|
||||
* @param type content type
|
||||
* @param plugin plugin instance
|
||||
* @return true on success, false if another plugin is already registered for
|
||||
* that type
|
||||
*/
|
||||
bool zathura_type_plugin_mapping_new(zathura_t* zathura, const gchar* type, zathura_document_plugin_t* plugin);
|
||||
|
||||
/**
|
||||
* Free type -> plugin mapping
|
||||
* @param mapping To be freed
|
||||
*/
|
||||
void zathura_type_plugin_mapping_free(zathura_type_plugin_mapping_t* mapping);
|
||||
|
||||
#endif // DOCUMENT_H
|
||||
|
25
utils.c
25
utils.c
@ -55,26 +55,21 @@ file_valid_extension(zathura_t* zathura, const char* path)
|
||||
return false;
|
||||
}
|
||||
|
||||
const char* file_extension = file_get_extension(path);
|
||||
|
||||
if (file_extension == NULL) {
|
||||
const gchar* content_type = g_content_type_guess(path, NULL, 0, NULL);
|
||||
if (content_type == NULL) {
|
||||
return false;
|
||||
}
|
||||
|
||||
girara_list_iterator_t* iter = girara_list_iterator(zathura->plugins.plugins);
|
||||
if (iter == NULL) {
|
||||
return false;
|
||||
bool result = false;
|
||||
GIRARA_LIST_FOREACH(zathura->plugins.type_plugin_mapping, zathura_type_plugin_mapping_t*, iter, mapping)
|
||||
if (g_content_type_equals(content_type, mapping->type)) {
|
||||
result = true;
|
||||
break;
|
||||
}
|
||||
GIRARA_LIST_FOREACH_END(zathura->plugins.type_plugin_mapping, zathura_type_plugin_mapping_t*, iter, mapping)
|
||||
|
||||
do {
|
||||
zathura_document_plugin_t* plugin = (zathura_document_plugin_t*) girara_list_iterator_data(iter);
|
||||
if (!strcmp(file_extension, plugin->file_extension)) {
|
||||
return true;
|
||||
}
|
||||
} while (girara_list_iterator_next(iter));
|
||||
girara_list_iterator_free(iter);
|
||||
|
||||
return false;
|
||||
g_free(content_type);
|
||||
return result;
|
||||
}
|
||||
|
||||
bool
|
||||
|
@ -63,8 +63,11 @@ zathura_init(int argc, char* argv[])
|
||||
|
||||
/* plugins */
|
||||
zathura->plugins.plugins = girara_list_new();
|
||||
girara_list_set_free_function(zathura->plugins.plugins, zathura_document_plugin_free);
|
||||
zathura->plugins.path = girara_list_new();
|
||||
girara_list_set_free_function(zathura->plugins.path, g_free);
|
||||
zathura->plugins.type_plugin_mapping = girara_list_new();
|
||||
girara_list_set_free_function(zathura->plugins.type_plugin_mapping, zathura_type_plugin_mapping_free);
|
||||
|
||||
if (config_dir) {
|
||||
zathura->config.config_dir = g_strdup(config_dir);
|
||||
@ -263,7 +266,6 @@ zathura_free(zathura_t* zathura)
|
||||
}
|
||||
|
||||
/* free registered plugins */
|
||||
zathura_document_plugins_free(zathura);
|
||||
girara_list_free(zathura->plugins.plugins);
|
||||
girara_list_free(zathura->plugins.path);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user