blob: c7367df9c13e858557d006a66b65df9dde22abbe [file] [log] [blame]
/*
* Copyright (C) 2006, 2007 Apple Inc.
* Copyright (C) 2007 Alp Toker <alp@atoker.com>
* Copyright (C) 2011 Igalia S.L.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "BrowserWindow.h"
#include <errno.h>
#include <gtk/gtk.h>
#include <string.h>
#include <webkit2/webkit2.h>
static const gchar **uriArguments = NULL;
static gchar *argumentToURL(const char *filename)
{
GFile *gfile = g_file_new_for_commandline_arg(filename);
gchar *fileURL = g_file_get_uri(gfile);
g_object_unref(gfile);
return fileURL;
}
static void createBrowserWindow(const gchar *uri, WebKitSettings *webkitSettings)
{
GtkWidget *webView = webkit_web_view_new();
GtkWidget *mainWindow = browser_window_new(WEBKIT_WEB_VIEW(webView), NULL);
gchar *url = argumentToURL(uri);
if (webkitSettings) {
webkit_web_view_set_settings(WEBKIT_WEB_VIEW(webView), webkitSettings);
g_object_unref(webkitSettings);
}
browser_window_load_uri(BROWSER_WINDOW(mainWindow), url);
g_free(url);
gtk_widget_grab_focus(webView);
gtk_widget_show(mainWindow);
}
static const GOptionEntry commandLineOptions[] =
{
{ G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &uriArguments, 0, "[URL…]" },
{ 0, 0, 0, 0, 0, 0, 0 }
};
static gboolean parseOptionEntryCallback(const gchar *optionNameFull, const gchar *value, WebKitSettings *webSettings, GError **error)
{
if (strlen(optionNameFull) <= 2) {
g_set_error(error, G_OPTION_ERROR, G_OPTION_ERROR_FAILED, "Invalid option %s", optionNameFull);
return FALSE;
}
/* We have two -- in option name so remove them. */
const gchar *optionName = optionNameFull + 2;
GParamSpec *spec = g_object_class_find_property(G_OBJECT_GET_CLASS(webSettings), optionName);
if (!spec) {
g_set_error(error, G_OPTION_ERROR, G_OPTION_ERROR_FAILED, "Cannot find web settings for option %s", optionNameFull);
return FALSE;
}
switch (G_PARAM_SPEC_VALUE_TYPE(spec)) {
case G_TYPE_BOOLEAN: {
gboolean propertyValue = !(value && g_ascii_strcasecmp(value, "true") && strcmp(value, "1"));
g_object_set(G_OBJECT(webSettings), optionName, propertyValue, NULL);
break;
}
case G_TYPE_STRING:
g_object_set(G_OBJECT(webSettings), optionName, value, NULL);
break;
case G_TYPE_INT: {
glong propertyValue;
gchar *end;
errno = 0;
propertyValue = g_ascii_strtoll(value, &end, 0);
if (errno == ERANGE || propertyValue > G_MAXINT || propertyValue < G_MININT) {
g_set_error(error, G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE, "Integer value '%s' for %s out of range", value, optionNameFull);
return FALSE;
}
if (errno || value == end) {
g_set_error(error, G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE, "Cannot parse integer value '%s' for %s", value, optionNameFull);
return FALSE;
}
g_object_set(G_OBJECT(webSettings), optionName, propertyValue, NULL);
break;
}
case G_TYPE_FLOAT: {
gdouble propertyValue;
gchar *end;
errno = 0;
propertyValue = g_ascii_strtod(value, &end);
if (errno == ERANGE || propertyValue > G_MAXFLOAT || propertyValue < G_MINFLOAT) {
g_set_error(error, G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE, "Float value '%s' for %s out of range", value, optionNameFull);
return FALSE;
}
if (errno || value == end) {
g_set_error(error, G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE, "Cannot parse float value '%s' for %s", value, optionNameFull);
return FALSE;
}
g_object_set(G_OBJECT(webSettings), optionName, propertyValue, NULL);
break;
}
default:
g_assert_not_reached();
}
return TRUE;
}
static gboolean isValidParameterType(GType gParamType)
{
return (gParamType == G_TYPE_BOOLEAN || gParamType == G_TYPE_STRING || gParamType == G_TYPE_INT
|| gParamType == G_TYPE_FLOAT);
}
static GOptionEntry* getOptionEntriesFromWebKitSettings(WebKitSettings *webSettings)
{
GParamSpec **propertySpecs;
GOptionEntry *optionEntries;
guint numProperties, numEntries, i;
propertySpecs = g_object_class_list_properties(G_OBJECT_GET_CLASS(webSettings), &numProperties);
if (!propertySpecs)
return NULL;
optionEntries = g_new0(GOptionEntry, numProperties + 1);
numEntries = 0;
for (i = 0; i < numProperties; i++) {
GParamSpec *param = propertySpecs[i];
/* Fill in structures only for writable and not construct-only properties. */
if (!param || !(param->flags & G_PARAM_WRITABLE) || (param->flags & G_PARAM_CONSTRUCT_ONLY))
continue;
GType gParamType = G_PARAM_SPEC_VALUE_TYPE(param);
if (!isValidParameterType(gParamType))
continue;
GOptionEntry *optionEntry = &optionEntries[numEntries++];
optionEntry->long_name = g_param_spec_get_name(param);
/* There is no easy way to figure our short name for generated option entries.
optionEntry.short_name=*/
/* For bool arguments "enable" type make option argument not required. */
if (gParamType == G_TYPE_BOOLEAN && (strstr(optionEntry->long_name, "enable")))
optionEntry->flags = G_OPTION_FLAG_OPTIONAL_ARG;
optionEntry->arg = G_OPTION_ARG_CALLBACK;
optionEntry->arg_data = parseOptionEntryCallback;
optionEntry->description = g_param_spec_get_blurb(param);
optionEntry->arg_description = g_type_name(gParamType);
}
g_free(propertySpecs);
return optionEntries;
}
static gboolean addSettingsGroupToContext(GOptionContext *context, WebKitSettings* webkitSettings)
{
GOptionEntry *optionEntries = getOptionEntriesFromWebKitSettings(webkitSettings);
if (!optionEntries)
return FALSE;
GOptionGroup *webSettingsGroup = g_option_group_new("websettings",
"WebKitSettings writable properties for default WebKitWebView",
"WebKitSettings properties",
webkitSettings,
NULL);
g_option_group_add_entries(webSettingsGroup, optionEntries);
g_free(optionEntries);
/* Option context takes ownership of the group. */
g_option_context_add_group(context, webSettingsGroup);
return TRUE;
}
int main(int argc, char *argv[])
{
gtk_init(&argc, &argv);
GOptionContext *context = g_option_context_new(NULL);
g_option_context_add_main_entries(context, commandLineOptions, 0);
g_option_context_add_group(context, gtk_get_option_group(TRUE));
WebKitSettings *webkitSettings = webkit_settings_new();
webkit_settings_set_enable_developer_extras(webkitSettings, TRUE);
if (!addSettingsGroupToContext(context, webkitSettings)) {
g_object_unref(webkitSettings);
webkitSettings = 0;
}
GError *error = 0;
if (!g_option_context_parse(context, &argc, &argv, &error)) {
g_printerr("Cannot parse arguments: %s\n", error->message);
g_error_free(error);
g_option_context_free(context);
return 1;
}
g_option_context_free (context);
#ifdef WEBKIT_EXEC_PATH
g_setenv("WEBKIT_INSPECTOR_PATH", WEBKIT_EXEC_PATH "resources/inspector", FALSE);
#endif /* WEBKIT_EXEC_PATH */
// Enable the favicon database, by specifying the default directory.
webkit_web_context_set_favicon_database_directory(webkit_web_context_get_default(), NULL);
if (uriArguments) {
int i;
for (i = 0; uriArguments[i]; i++)
createBrowserWindow(uriArguments[i], webkitSettings);
} else
createBrowserWindow("http://www.webkitgtk.org/", webkitSettings);
gtk_main();
return 0;
}