phantomjs/src/phantom.cpp

233 lines
6.9 KiB
C++
Raw Normal View History

2011-04-09 21:34:04 +04:00
/*
This file is part of the PhantomJS project from Ofi Labs.
Copyright (C) 2011 Ariya Hidayat <ariya.hidayat@gmail.com>
2011-04-10 09:37:06 +04:00
Copyright (C) 2010 Ariya Hidayat <ariya.hidayat@gmail.com>
2011-04-09 21:34:04 +04:00
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.
*/
#include "phantom.h"
#include <iostream>
#include <QtGui>
#include <QtWebKit>
2010-12-27 07:04:53 +03:00
2011-02-20 09:07:22 +03:00
#include <gifwriter.h>
#include "consts.h"
#include "utils.h"
#include "webpage.h"
2010-12-27 07:04:53 +03:00
Phantom::Phantom(QObject *parent)
: QObject(parent)
, m_returnValue(0)
, m_converter(0)
, m_netAccessMan(0)
2010-12-27 07:04:53 +03:00
{
m_page = new WebPage(this);
2010-12-27 07:04:53 +03:00
QString proxyHost;
int proxyPort = 1080;
bool autoLoadImages = true;
bool pluginsEnabled = false;
2011-04-12 18:21:09 +04:00
bool diskCacheEnabled = false;
bool ignoreSslErrors = false;
2010-12-27 07:04:53 +03:00
// second argument: script name
QStringList args = QApplication::arguments();
2011-02-13 22:38:09 +03:00
// Skip the first argument, i.e. the application executable (phantomjs).
args.removeFirst();
// Handle all command-line options.
QStringListIterator argIterator(args);
while (argIterator.hasNext()) {
const QString &arg = argIterator.next();
if (arg == "--load-images=yes") {
autoLoadImages = true;
continue;
}
if (arg == "--load-images=no") {
autoLoadImages = false;
continue;
}
if (arg == "--load-plugins=yes") {
pluginsEnabled = true;
continue;
}
if (arg == "--load-plugins=no") {
pluginsEnabled = false;
continue;
}
2011-04-12 18:21:09 +04:00
if (arg == "--disk-cache=yes") {
diskCacheEnabled = true;
continue;
}
if (arg == "--disk-cache=no") {
diskCacheEnabled = false;
continue;
}
if (arg == "--ignore-ssl-errors=yes") {
ignoreSslErrors = true;
continue;
}
if (arg == "--ignore-ssl-errors=no") {
ignoreSslErrors = false;
continue;
}
if (arg.startsWith("--proxy=")) {
proxyHost = arg.mid(8).trimmed();
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;
}
}
continue;
}
if (arg.startsWith("--")) {
2011-04-08 18:49:20 +04:00
qFatal("Unknown option '%s'", qPrintable(arg));
exit(-1);
return;
} else {
m_scriptFile = arg;
break;
}
}
if (m_scriptFile.isEmpty()) {
Utils::showUsage();
return;
}
if (proxyHost.isEmpty()) {
#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0)
QNetworkProxyFactory::setUseSystemConfiguration(true);
#endif
} else {
QNetworkProxy proxy(QNetworkProxy::HttpProxy, proxyHost, proxyPort);
QNetworkProxy::setApplicationProxy(proxy);
}
// The remaining arguments are available for the script.
while (argIterator.hasNext()) {
const QString &arg = argIterator.next();
m_args += arg;
}
2010-12-27 07:04:53 +03:00
// Provide WebPage with a non-standard Network Access Manager
m_netAccessMan = new NetworkAccessManager(this, diskCacheEnabled, ignoreSslErrors);
m_page->setNetworkAccessManager(m_netAccessMan);
m_defaultPageSettings["loadImages"] = QVariant::fromValue(autoLoadImages);
m_defaultPageSettings["loadPlugins"] = QVariant::fromValue(pluginsEnabled);
m_defaultPageSettings["userAgent"] = QVariant::fromValue(m_page->userAgent());
2011-05-28 09:36:34 +04:00
m_page->applySettings(m_defaultPageSettings);
m_page->mainFrame()->addToJavaScriptWindowObject("phantom", this);
2011-05-26 13:18:09 +04:00
QFile file(":/bootstrap.js");
if (!file.open(QFile::ReadOnly)) {
qCritical() << "Can not bootstrap!";
exit(1);
}
QString bootstrapper = QString::fromUtf8(file.readAll());
file.close();
if (bootstrapper.isEmpty()) {
qCritical() << "Can not bootstrap!";
exit(1);
}
m_page->mainFrame()->evaluateJavaScript(bootstrapper);
2010-12-27 07:04:53 +03:00
}
QStringList Phantom::args() const
2010-12-27 07:04:53 +03:00
{
return m_args;
2010-12-27 07:04:53 +03:00
}
2011-05-28 09:36:34 +04:00
QVariantMap Phantom::defaultPageSettings() const
{
return m_defaultPageSettings;
}
bool Phantom::execute()
2010-12-27 07:04:53 +03:00
{
if (m_scriptFile.isEmpty())
return false;
2010-12-27 07:04:53 +03:00
QFile file;
file.setFileName(m_scriptFile);
2010-12-27 07:04:53 +03:00
if (!file.open(QFile::ReadOnly)) {
std::cerr << "Can't open '" << qPrintable(m_scriptFile) << "'" << std::endl << std::endl;
exit(1);
return false;
2010-12-27 07:04:53 +03:00
}
m_script = QString::fromUtf8(file.readAll());
2010-12-27 07:04:53 +03:00
file.close();
2011-02-13 22:38:09 +03:00
2011-02-06 15:53:30 +03:00
if (m_script.startsWith("#!")) {
m_script.prepend("//");
}
2010-12-27 07:04:53 +03:00
if (m_scriptFile.endsWith(".coffee")) {
if (!m_converter)
m_converter = new CSConverter(this);
m_script = m_converter->convert(m_script);
}
m_page->mainFrame()->evaluateJavaScript(m_script);
return true;
2010-12-27 07:04:53 +03:00
}
int Phantom::returnValue() const
2010-12-27 07:04:53 +03:00
{
return m_returnValue;
2010-12-27 07:04:53 +03:00
}
QVariantMap Phantom::version() const
{
QVariantMap result;
result["major"] = PHANTOMJS_VERSION_MAJOR;
result["minor"] = PHANTOMJS_VERSION_MINOR;
result["patch"] = PHANTOMJS_VERSION_PATCH;
return result;
}
QObject *Phantom::createWebPage()
{
WebPage *page = new WebPage(this);
2011-05-28 09:36:34 +04:00
page->applySettings(m_defaultPageSettings);
page->setNetworkAccessManager(m_netAccessMan);
return page;
}
void Phantom::exit(int code)
{
m_returnValue = code;
QTimer::singleShot(0, qApp, SLOT(quit()));
2010-12-27 07:04:53 +03:00
}