phantomjs/src/config.cpp

428 lines
10 KiB
C++
Raw Normal View History

/*
This file is part of the PhantomJS project from Ofi Labs.
Copyright (C) 2011 Ariya Hidayat <ariya.hidayat@gmail.com>
Copyright (C) 2011 execjosh, http://execjosh.blogspot.com
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* 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.
* Neither the name of the <organization> nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 <COPYRIGHT HOLDER> 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.
*/
2011-08-28 16:05:34 +04:00
#include "config.h"
2011-08-26 22:03:06 +04:00
#include <QDir>
#include <QSettings>
// public:
2011-08-29 18:23:01 +04:00
Config::Config(QObject *parent)
: QObject(parent)
{
resetToDefaults();
}
void Config::init(const QStringList *const args)
{
resetToDefaults();
2011-08-26 22:03:06 +04:00
// TODO Should there be a system-wide config file?
//loadConfigFile(getSystemConfigFilePath());
// Load global config
loadIniFile(getGlobalConfigFilePath());
2011-08-26 22:03:06 +04:00
// Load local config (allows for overrides)
loadIniFile(getLocalConfigFilePath());
processArgs(*args);
}
void Config::processArgs(const QStringList &args)
{
QStringListIterator it(args);
while (it.hasNext()) {
const QString &arg = it.next();
if (arg == "--version") {
setVersionFlag(true);
return;
}
if (arg == "--load-images=yes") {
setAutoLoadImages(true);
continue;
}
if (arg == "--load-images=no") {
setAutoLoadImages(false);
continue;
}
if (arg == "--load-plugins=yes") {
setPluginsEnabled(true);
continue;
}
if (arg == "--load-plugins=no") {
setPluginsEnabled(false);
continue;
}
if (arg == "--disk-cache=yes") {
setDiskCacheEnabled(true);
continue;
}
if (arg == "--disk-cache=no") {
setDiskCacheEnabled(false);
continue;
}
if (arg == "--ignore-ssl-errors=yes") {
setIgnoreSslErrors(true);
continue;
}
if (arg == "--ignore-ssl-errors=no") {
setIgnoreSslErrors(false);
continue;
}
if (arg == "--local-access-remote=no") {
setLocalAccessRemote(false);
continue;
}
if (arg == "--local-access-remote=yes") {
setLocalAccessRemote(true);
continue;
}
if (arg.startsWith("--proxy=")) {
setProxy(arg.mid(8).trimmed());
continue;
}
if (arg.startsWith("--cookies=")) {
setCookieFile(arg.mid(10).trimmed());
continue;
}
if (arg.startsWith("--output-encoding=")) {
setOutputEncoding(arg.mid(18).trimmed());
continue;
}
if (arg.startsWith("--script-encoding=")) {
setScriptEncoding(arg.mid(18).trimmed());
continue;
}
if (arg.startsWith("--")) {
setUnknownOption(QString("Unknown option '%1'").arg(arg));
return;
}
// There are no more options at this point.
// The remaining arguments are available for the script.
m_scriptFile = arg;
while (it.hasNext()) {
m_scriptArgs += it.next();
}
}
2011-08-26 22:03:06 +04:00
}
void Config::loadIniFile(const QString &filePath)
2011-08-26 22:03:06 +04:00
{
QSettings settings(filePath, QSettings::IniFormat);
QStringList keys = settings.allKeys();
QStringListIterator it(keys);
while (it.hasNext()) {
QString key = it.next().trimmed();
QVariant value = settings.value(key);
if (key == "phantomjs/loadImages") {
setAutoLoadImages(asBool(value));
continue;
}
if (key == "phantomjs/loadPlugins") {
setPluginsEnabled(asBool(value));
continue;
}
if (key == "phantomjs/proxy") {
setProxy(asString(value));
continue;
}
if (key == "phantomjs/diskCache") {
setDiskCacheEnabled(asBool(value));
continue;
}
if (key == "phantomjs/ignoreSslErrors") {
setIgnoreSslErrors(asBool(value));
continue;
}
if (key == "phantomjs/localAccessRemote") {
setLocalAccessRemote(asBool(value));
continue;
}
if (key == "phantomjs/cookies") {
setCookieFile(asString(value));
continue;
}
if (key == "phantomjs/outputEncoding") {
setOutputEncoding(asString(value));
continue;
}
if (key == "phantomjs/scriptEncoding") {
setScriptEncoding(asString(value));
continue;
}
}
}
2011-08-28 16:05:34 +04:00
bool Config::autoLoadImages() const
2011-08-26 22:02:59 +04:00
{
return m_autoLoadImages;
}
2011-08-28 16:05:34 +04:00
void Config::setAutoLoadImages(const bool value)
2011-08-26 22:02:59 +04:00
{
m_autoLoadImages = value;
}
2011-08-28 16:05:34 +04:00
QString Config::cookieFile() const
{
return m_cookieFile;
}
2011-08-28 16:05:34 +04:00
void Config::setCookieFile(const QString &value)
{
m_cookieFile = value;
}
2011-08-28 16:05:34 +04:00
bool Config::diskCacheEnabled() const
{
return m_diskCacheEnabled;
}
2011-08-28 16:05:34 +04:00
void Config::setDiskCacheEnabled(const bool value)
{
m_diskCacheEnabled = value;
}
2011-08-28 16:05:34 +04:00
bool Config::ignoreSslErrors() const
{
return m_ignoreSslErrors;
}
2011-08-28 16:05:34 +04:00
void Config::setIgnoreSslErrors(const bool value)
{
m_ignoreSslErrors = value;
}
2011-08-28 16:05:34 +04:00
bool Config::localAccessRemote() const
2011-08-26 22:02:59 +04:00
{
return m_localAccessRemote;
}
2011-08-28 16:05:34 +04:00
void Config::setLocalAccessRemote(const bool value)
2011-08-26 22:02:59 +04:00
{
m_localAccessRemote = value;
}
2011-08-28 16:05:34 +04:00
QString Config::outputEncoding() const
{
return m_outputEncoding;
}
2011-08-28 16:05:34 +04:00
void Config::setOutputEncoding(const QString &value)
{
if (value.isEmpty()) {
return;
}
m_outputEncoding = value;
}
2011-08-28 16:05:34 +04:00
bool Config::pluginsEnabled() const
2011-08-26 22:02:59 +04:00
{
return m_pluginsEnabled;
}
2011-08-28 16:05:34 +04:00
void Config::setPluginsEnabled(const bool value)
2011-08-26 22:02:59 +04:00
{
m_pluginsEnabled = value;
}
2011-08-29 18:23:01 +04:00
QString Config::proxy() const
{
return proxyHost() + ":" + proxyPort();
}
2011-08-28 16:05:34 +04:00
void Config::setProxy(const QString &value)
{
QString proxyHost = value;
int proxyPort = 1080;
if (proxyHost.lastIndexOf(':') > 0) {
bool ok = true;
int port = proxyHost.mid(proxyHost.lastIndexOf(':') + 1).toInt(&ok);
if (ok) {
proxyHost = proxyHost.left(proxyHost.lastIndexOf(':')).trimmed();
proxyPort = port;
}
}
setProxyHost(proxyHost);
setProxyPort(proxyPort);
}
2011-08-28 16:05:34 +04:00
QString Config::proxyHost() const
{
return m_proxyHost;
}
2011-08-28 16:05:34 +04:00
int Config::proxyPort() const
{
return m_proxyPort;
}
QStringList Config::scriptArgs() const
{
return m_scriptArgs;
}
void Config::setScriptArgs(const QStringList &value)
{
m_scriptArgs.clear();
QStringListIterator it(value);
while (it.hasNext()) {
m_scriptArgs.append(it.next());
}
}
2011-08-28 16:05:34 +04:00
QString Config::scriptEncoding() const
{
return m_scriptEncoding;
}
2011-08-28 16:05:34 +04:00
void Config::setScriptEncoding(const QString &value)
{
if (value.isEmpty()) {
return;
}
m_scriptEncoding = value;
}
QString Config::scriptFile() const
{
return m_scriptFile;
}
void Config::setScriptFile(const QString &value)
{
m_scriptFile = value;
}
QString Config::unknownOption() const
{
return m_unknownOption;
}
void Config::setUnknownOption(const QString &value)
{
m_unknownOption = value;
}
bool Config::versionFlag() const
{
return m_versionFlag;
}
void Config::setVersionFlag(const bool value)
{
m_versionFlag = value;
}
// private:
2011-08-28 16:05:34 +04:00
void Config::resetToDefaults()
{
2011-08-26 22:02:59 +04:00
m_autoLoadImages = true;
m_cookieFile.clear();
m_diskCacheEnabled = false;
m_ignoreSslErrors = false;
2011-08-26 22:02:59 +04:00
m_localAccessRemote = false;
m_outputEncoding = "UTF-8";
2011-08-26 22:02:59 +04:00
m_pluginsEnabled = false;
m_proxyHost.clear();
m_proxyPort = 1080;
m_scriptArgs.clear();
m_scriptEncoding = "UTF-8";
m_scriptFile.clear();
m_unknownOption.clear();
m_versionFlag = false;
}
2011-08-28 16:05:34 +04:00
void Config::setProxyHost(const QString &value)
{
m_proxyHost = value;
}
2011-08-28 16:05:34 +04:00
void Config::setProxyPort(const int value)
{
m_proxyPort = value;
}
2011-08-26 22:03:06 +04:00
2011-08-28 16:05:34 +04:00
QString Config::getGlobalConfigFilePath() const
2011-08-26 22:03:06 +04:00
{
return joinPaths(QDir::homePath(), CONFIG_FILE_NAME);
}
2011-08-28 16:05:34 +04:00
QString Config::getLocalConfigFilePath() const
2011-08-26 22:03:06 +04:00
{
return joinPaths(QDir::currentPath(), CONFIG_FILE_NAME);
}
// private: (static)
2011-08-28 16:05:34 +04:00
bool Config::asBool(const QVariant &value)
2011-08-26 22:03:06 +04:00
{
QString strVal = asString(value).toLower();
return strVal == "true" || strVal == "1" || strVal == "yes";
}
2011-08-28 16:05:34 +04:00
QString Config::asString(const QVariant &value)
2011-08-26 22:03:06 +04:00
{
return value.toString().trimmed();
}
2011-08-28 16:05:34 +04:00
QString Config::joinPaths(const QString &path1, const QString &path2)
2011-08-26 22:03:06 +04:00
{
QString joinedPath;
if (path1.isEmpty()) {
joinedPath = path2;
} else if (path2.isEmpty()) {
joinedPath = path1;
} else {
joinedPath = path1 + QDir::separator() + path2;
}
return normalisePath(joinedPath);
}
2011-08-28 16:05:34 +04:00
QString Config::normalisePath(const QString &path)
2011-08-26 22:03:06 +04:00
{
return path.isEmpty() ? path : QDir::fromNativeSeparators(path);
}
2011-08-28 16:05:34 +04:00
const QString Config::CONFIG_FILE_NAME = ".phantomjsrc";