You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
211 lines
7.0 KiB
211 lines
7.0 KiB
// program to test the new khtml implementation
|
|
|
|
#include <stdlib.h>
|
|
#include "decoder.h"
|
|
#include "kapplication.h"
|
|
#include "html_document.h"
|
|
#include "htmltokenizer.h"
|
|
// to be able to delete a static protected member pointer in kbrowser...
|
|
// just for memory debugging
|
|
#define protected public
|
|
#include "khtml_part.h"
|
|
#include "khtmlview.h"
|
|
#undef protected
|
|
#include "testkhtml.h"
|
|
#include "testkhtml.moc"
|
|
#include "misc/loader.h"
|
|
#include <tqcursor.h>
|
|
#include <dom_string.h>
|
|
#include "dom/dom2_range.h"
|
|
#include "dom/html_document.h"
|
|
#include "dom/dom_exception.h"
|
|
#include <stdio.h>
|
|
#define protected public
|
|
#include "khtml_factory.h"
|
|
#undef protected
|
|
#include "css/cssstyleselector.h"
|
|
#include "html/html_imageimpl.h"
|
|
#include "rendering/render_style.h"
|
|
#include <kmainwindow.h>
|
|
#include <kcmdlineargs.h>
|
|
#include <kaction.h>
|
|
#include "domtreeview.h"
|
|
#include <kfiledialog.h>
|
|
|
|
static KCmdLineOptions options[] = { { "+file", "url to open", 0 } , KCmdLineLastOption };
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
|
|
KCmdLineArgs::init(argc, argv, "testkhtml", "Testkhtml",
|
|
"a basic web browser using the KHTML library", "1.0");
|
|
KCmdLineArgs::addCmdLineOptions(options);
|
|
|
|
KApplication a;
|
|
KCmdLineArgs *args = KCmdLineArgs::parsedArgs( );
|
|
if ( args->count() == 0 ) {
|
|
KCmdLineArgs::usage();
|
|
::exit( 1 );
|
|
}
|
|
|
|
#ifndef __KDE_HAVE_GCC_VISIBILITY
|
|
KHTMLFactory *fac = new KHTMLFactory(true);
|
|
#endif
|
|
|
|
KMainWindow *toplevel = new KMainWindow();
|
|
KHTMLPart *doc = new KHTMLPart( toplevel, 0, toplevel, 0, KHTMLPart::BrowserViewGUI );
|
|
|
|
Dummy *dummy = new Dummy( doc );
|
|
TQObject::connect( doc->browserExtension(), TQT_SIGNAL( openURLRequest( const KURL &, const KParts::URLArgs & ) ),
|
|
dummy, TQT_SLOT( slotOpenURL( const KURL&, const KParts::URLArgs & ) ) );
|
|
|
|
TQObject::connect( doc, TQT_SIGNAL(completed()), dummy, TQT_SLOT(handleDone()) );
|
|
|
|
if (args->url(0).url().right(4).tqfind(".xml", 0, false) == 0) {
|
|
KParts::URLArgs ags(doc->browserExtension()->urlArgs());
|
|
ags.serviceType = "text/xml";
|
|
doc->browserExtension()->setURLArgs(ags);
|
|
}
|
|
|
|
doc->openURL( args->url(0) );
|
|
|
|
// DOMTreeView * dtv = new DOMTreeView(0, doc, "DomTreeView");
|
|
// dtv->show();
|
|
|
|
toplevel->setCentralWidget( doc->widget() );
|
|
toplevel->resize( 800, 600);
|
|
|
|
// dtv->resize(toplevel->width()/2, toplevel->height());
|
|
|
|
TQDomDocument d = doc->domDocument();
|
|
TQDomElement viewMenu = d.documentElement().firstChild().childNodes().item( 2 ).toElement();
|
|
TQDomElement e = d.createElement( "action" );
|
|
e.setAttribute( "name", "debugRenderTree" );
|
|
viewMenu.appendChild( e );
|
|
e = d.createElement( "action" );
|
|
e.setAttribute( "name", "debugDOMTree" );
|
|
viewMenu.appendChild( e );
|
|
|
|
|
|
e = d.createElement( "action" );
|
|
e.setAttribute( "name", "debugDoBenchmark" );
|
|
viewMenu.appendChild( e );
|
|
|
|
TQDomElement toolBar = d.documentElement().firstChild().nextSibling().toElement();
|
|
e = d.createElement( "action" );
|
|
e.setAttribute( "name", "editable" );
|
|
toolBar.insertBefore( e, toolBar.firstChild() );
|
|
e = d.createElement( "action" );
|
|
e.setAttribute( "name", "navigable" );
|
|
toolBar.insertBefore( e, toolBar.firstChild() );
|
|
e = d.createElement( "action" );
|
|
e.setAttribute( "name", "reload" );
|
|
toolBar.insertBefore( e, toolBar.firstChild() );
|
|
e = d.createElement( "action" );
|
|
e.setAttribute( "name", "print" );
|
|
toolBar.insertBefore( e, toolBar.firstChild() );
|
|
|
|
(void)new KAction( "Reload", "reload", Qt::Key_F5, dummy, TQT_SLOT( reload() ), doc->actionCollection(), "reload" );
|
|
(void)new KAction( "Benchmark...", 0, 0, dummy, TQT_SLOT( doBenchmark() ), doc->actionCollection(), "debugDoBenchmark" );
|
|
KAction* kprint = new KAction( "Print", "print", 0, doc->browserExtension(), TQT_SLOT( print() ), doc->actionCollection(), "print" );
|
|
kprint->setEnabled(true);
|
|
KToggleAction *ta = new KToggleAction( "Navigable", "editclear", 0, doc->actionCollection(), "navigable" );
|
|
ta->setChecked(doc->isCaretMode());
|
|
TQWidget::connect(ta, TQT_SIGNAL(toggled(bool)), dummy, TQT_SLOT( toggleNavigable(bool) ));
|
|
ta = new KToggleAction( "Editable", "edit", 0, doc->actionCollection(), "editable" );
|
|
ta->setChecked(doc->isEditable());
|
|
TQWidget::connect(ta, TQT_SIGNAL(toggled(bool)), dummy, TQT_SLOT( toggleEditable(bool) ));
|
|
toplevel->guiFactory()->addClient( doc );
|
|
|
|
doc->setJScriptEnabled(true);
|
|
doc->setJavaEnabled(true);
|
|
doc->setPluginsEnabled( true );
|
|
doc->setURLCursor(TQCursor(Qt::PointingHandCursor));
|
|
a.setTopWidget(doc->widget());
|
|
TQWidget::connect(doc, TQT_SIGNAL(setWindowCaption(const TQString &)),
|
|
doc->widget()->tqtopLevelWidget(), TQT_SLOT(setCaption(const TQString &)));
|
|
doc->widget()->show();
|
|
toplevel->show();
|
|
((TQScrollView *)doc->widget())->viewport()->show();
|
|
|
|
|
|
int ret = a.exec();
|
|
#ifndef __KDE_HAVE_GCC_VISIBILITY
|
|
fac->deref();
|
|
#endif
|
|
return ret;
|
|
}
|
|
|
|
void Dummy::doBenchmark()
|
|
{
|
|
KConfigGroup settings(KGlobal::config(), "bench");
|
|
results.clear();
|
|
|
|
TQString directory = KFileDialog::getExistingDirectory(settings.readPathEntry("path"), m_part->view(),
|
|
TQString::tqfromLatin1("Please select directory with tests"));
|
|
|
|
if (!directory.isEmpty()) {
|
|
settings.writePathEntry("path", directory);
|
|
|
|
TQDir dirListing(directory, "*.html");
|
|
for (int i = 0; i < dirListing.count(); ++i) {
|
|
filesToBenchmark.append(dirListing.absFilePath(dirListing[i]));
|
|
}
|
|
}
|
|
|
|
benchmarkRun = 0;
|
|
|
|
if (!filesToBenchmark.isEmpty())
|
|
nextRun();
|
|
}
|
|
|
|
const int COLD_RUNS = 2;
|
|
const int HOT_RUNS = 5;
|
|
|
|
void Dummy::nextRun()
|
|
{
|
|
if (benchmarkRun == (COLD_RUNS + HOT_RUNS)) {
|
|
filesToBenchmark.remove(filesToBenchmark.begin());
|
|
benchmarkRun = 0;
|
|
}
|
|
|
|
if (!filesToBenchmark.isEmpty()) {
|
|
loadTimer.start();
|
|
m_part->openURL(filesToBenchmark[0]);
|
|
} else {
|
|
//Generate HTML for report.
|
|
m_part->begin();
|
|
m_part->write("<table border=1>");
|
|
|
|
for (TQMap<TQString, TQValueList<int> >::iterator i = results.begin(); i != results.end(); ++i) {
|
|
m_part->write("<tr><td>" + i.key() + "</td>");
|
|
TQValueList<int> timings = i.data();
|
|
int total = 0;
|
|
for (int pos = 0; pos < timings.size(); ++pos) {
|
|
int t = timings[pos];
|
|
if (pos < COLD_RUNS)
|
|
m_part->write(TQString::tqfromLatin1("<td>(Cold):") + TQString::number(t) + "</td>");
|
|
else {
|
|
total += t;
|
|
m_part->write(TQString::tqfromLatin1("<td><i>") + TQString::number(t) + "</i></td>");
|
|
}
|
|
}
|
|
|
|
m_part->write(TQString::tqfromLatin1("<td>Average:<b>") + TQString::number(double(total) / HOT_RUNS) + "</b></td>");
|
|
|
|
m_part->write("</tr>");
|
|
}
|
|
|
|
m_part->end();
|
|
}
|
|
}
|
|
|
|
void Dummy::handleDone()
|
|
{
|
|
if (filesToBenchmark.isEmpty()) return;
|
|
|
|
results[filesToBenchmark[0]].append(loadTimer.elapsed());
|
|
++benchmarkRun;
|
|
nextRun();
|
|
}
|