summaryrefslogtreecommitdiff
path: root/Source/WebKit2/UIProcess/API/gtk/WebKitPlugin.cpp
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@nokia.com>2012-05-18 14:03:11 +0200
committerSimon Hausmann <simon.hausmann@nokia.com>2012-05-18 14:03:11 +0200
commit8d473cf9743f1d30a16a27114e93bd5af5648d23 (patch)
treecdca40d0353886b3ca52f33a2d7b8f1c0011aafc /Source/WebKit2/UIProcess/API/gtk/WebKitPlugin.cpp
parent1b914638db989aaa98631a1c1e02c7b2d44805d8 (diff)
downloadqtwebkit-8d473cf9743f1d30a16a27114e93bd5af5648d23.tar.gz
Imported WebKit commit 1350e72f7345ced9da2bd9980deeeb5a8d62fab4 (http://svn.webkit.org/repository/webkit/trunk@117578)
Weekly snapshot
Diffstat (limited to 'Source/WebKit2/UIProcess/API/gtk/WebKitPlugin.cpp')
-rw-r--r--Source/WebKit2/UIProcess/API/gtk/WebKitPlugin.cpp151
1 files changed, 151 insertions, 0 deletions
diff --git a/Source/WebKit2/UIProcess/API/gtk/WebKitPlugin.cpp b/Source/WebKit2/UIProcess/API/gtk/WebKitPlugin.cpp
new file mode 100644
index 000000000..aff651aed
--- /dev/null
+++ b/Source/WebKit2/UIProcess/API/gtk/WebKitPlugin.cpp
@@ -0,0 +1,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;
+
+struct _WebKitPluginPrivate {
+ PluginModuleInfo pluginInfo;
+ CString name;
+ CString description;
+ CString path;
+ GList* mimeInfoList;
+};
+
+G_DEFINE_TYPE(WebKitPlugin, webkit_plugin, G_TYPE_OBJECT)
+
+static void webkitPluginFinalize(GObject* object)
+{
+ WebKitPluginPrivate* priv = WEBKIT_PLUGIN(object)->priv;
+ g_list_free_full(priv->mimeInfoList, reinterpret_cast<GDestroyNotify>(webkit_mime_info_unref));
+ priv->~WebKitPluginPrivate();
+ G_OBJECT_CLASS(webkit_plugin_parent_class)->finalize(object);
+}
+
+static void webkit_plugin_init(WebKitPlugin* plugin)
+{
+ WebKitPluginPrivate* priv = G_TYPE_INSTANCE_GET_PRIVATE(plugin, WEBKIT_TYPE_PLUGIN, WebKitPluginPrivate);
+ plugin->priv = priv;
+ new (priv) WebKitPluginPrivate();
+}
+
+static void webkit_plugin_class_init(WebKitPluginClass* pluginClass)
+{
+ GObjectClass* gObjectClass = G_OBJECT_CLASS(pluginClass);
+ gObjectClass->finalize = webkitPluginFinalize;
+
+ g_type_class_add_private(pluginClass, sizeof(WebKitPluginPrivate));
+}
+
+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;
+}