1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
/*
* Copyright (C) 2012 Igalia S.L.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "WebKitPlugin.h"
#include "WebKitMimeInfoPrivate.h"
#include "WebKitPluginPrivate.h"
#include <wtf/text/CString.h>
using namespace WebKit;
/**
* SECTION: WebKitPlugin
* @Short_description: Represents a plugin, enabling fine-grained control
* @Title: WebKitPlugin
*
* This object represents a single plugin, found while scanning the
* various platform plugin directories. This object can be used to get
* more information about a plugin, and enable/disable it, allowing
* fine-grained control of plugins. The list of available plugins can
* be obtained from the #WebKitWebContext, with
* webkit_web_context_get_plugins().
*
*/
struct _WebKitPluginPrivate {
~_WebKitPluginPrivate()
{
g_list_free_full(mimeInfoList, reinterpret_cast<GDestroyNotify>(webkit_mime_info_unref));
}
PluginModuleInfo pluginInfo;
CString name;
CString description;
CString path;
GList* mimeInfoList;
};
WEBKIT_DEFINE_TYPE(WebKitPlugin, webkit_plugin, G_TYPE_OBJECT)
static void webkit_plugin_class_init(WebKitPluginClass* pluginClass)
{
}
WebKitPlugin* webkitPluginCreate(const PluginModuleInfo& pluginInfo)
{
WebKitPlugin* plugin = WEBKIT_PLUGIN(g_object_new(WEBKIT_TYPE_PLUGIN, NULL));
plugin->priv->pluginInfo = pluginInfo;
return plugin;
}
/**
* webkit_plugin_get_name:
* @plugin: a #WebKitPlugin
*
* Returns: the name of the plugin.
*/
const char* webkit_plugin_get_name(WebKitPlugin* plugin)
{
g_return_val_if_fail(WEBKIT_IS_PLUGIN(plugin), 0);
if (!plugin->priv->name.isNull())
return plugin->priv->name.data();
if (plugin->priv->pluginInfo.info.name.isEmpty())
return 0;
plugin->priv->name = plugin->priv->pluginInfo.info.name.utf8();
return plugin->priv->name.data();
}
/**
* webkit_plugin_get_description:
* @plugin: a #WebKitPlugin
*
* Returns: the description of the plugin.
*/
const char* webkit_plugin_get_description(WebKitPlugin* plugin)
{
g_return_val_if_fail(WEBKIT_IS_PLUGIN(plugin), 0);
if (!plugin->priv->description.isNull())
plugin->priv->description.data();
if (plugin->priv->pluginInfo.info.desc.isEmpty())
return 0;
plugin->priv->description = plugin->priv->pluginInfo.info.desc.utf8();
return plugin->priv->description.data();
}
/**
* webkit_plugin_get_path:
* @plugin: a #WebKitPlugin
*
* Returns: the absolute path where the plugin is installed.
*/
const char* webkit_plugin_get_path(WebKitPlugin* plugin)
{
g_return_val_if_fail(WEBKIT_IS_PLUGIN(plugin), 0);
if (!plugin->priv->path.isNull())
return plugin->priv->path.data();
if (plugin->priv->pluginInfo.path.isEmpty())
return 0;
plugin->priv->path = plugin->priv->pluginInfo.path.utf8();
return plugin->priv->path.data();
}
/**
* webkit_plugin_get_mime_info_list:
* @plugin: a #WebKitPlugin
*
* Get information about MIME types handled by the plugin,
* as a list of #WebKitMimeInfo.
*
* Returns: (element-type WebKitMimeInfo) (transfer none): a #GList of #WebKitMimeInfo.
*/
GList* webkit_plugin_get_mime_info_list(WebKitPlugin* plugin)
{
g_return_val_if_fail(WEBKIT_IS_PLUGIN(plugin), 0);
if (plugin->priv->mimeInfoList)
return plugin->priv->mimeInfoList;
if (plugin->priv->pluginInfo.info.mimes.isEmpty())
return 0;
for (size_t i = 0; i < plugin->priv->pluginInfo.info.mimes.size(); ++i)
plugin->priv->mimeInfoList = g_list_prepend(plugin->priv->mimeInfoList, webkitMimeInfoCreate(plugin->priv->pluginInfo.info.mimes[i]));
return plugin->priv->mimeInfoList;
}
|