1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846
|
/**
*
* This file is part of Tulip (www.tulip-software.org)
*
* Authors: David Auber and the Tulip development Team
* from LaBRI, University of Bordeaux
*
* Tulip is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* Tulip 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 General Public License for more details.
*
*/
#include <iostream>
#include <qapplication.h>
#include <qtimer.h>
#include <tulip/TulipPluginHeaders.h>
#include <tulip/DownloadManager.h>
#include "WebImport.h"
using namespace std;
using namespace tlp;
class UrlElement {
public:
bool is_http;
std::string data;
std::string server;
std::string url;
std::string clean_url;
UrlElement();
UrlElement(const UrlElement &c);
bool load();
void clear();
bool isHtmlPage();
UrlElement parseUrl(const std::string &href);
void setUrl(const std::string&);
std::string getUrl() const {
return clean_url.size() ? clean_url : url;
}
private:
void fill(std::string &result);
bool siteconnect(const std::string &server, const std::string &url,
bool headonly);
private:
HttpContext *context;
public:
bool isValid() {
return !server.empty();
}
bool isRedirected() {
return context && context->redirected;
}
UrlElement getRedirection() {
return parseUrl(context->data);
}
int getCode() {
return context->code;
}
};
namespace std {
template <>
struct less<UrlElement> {
bool operator()(const UrlElement &lhs, const UrlElement &rhs) const {
if (lhs.server.compare(rhs.server) < 0 ) return true;
if (lhs.server.compare(rhs.server) > 0 ) return false;
return lhs.getUrl().compare(rhs.getUrl()) < 0;
}
};
}
HttpContext::HttpContext():
status(false), code(-1), reply(NULL),
processed(false), redirected(false), isHtml(false) {
}
HttpContext::~HttpContext() {
if (reply) {
reply->close();
reply->deleteLater();
reply = NULL;
}
}
void HttpContext::request(const std::string& url, bool head) {
if (reply) {
reply->close();
reply->deleteLater();
reply = NULL;
}
processed = isHtml = redirected = false;
QNetworkRequest request(QUrl(url.c_str()));
if (head) {
reply = DownloadManager::getInstance()->head(request);
connect(reply, SIGNAL(finished()), this, SLOT(headerReceived()));
}
else {
reply = DownloadManager::getInstance()->get(request);
connect(reply, SIGNAL(finished()), this, SLOT(finished()));
}
}
void HttpContext::finished() {
// check to see if it is the request we made
if (reply != qobject_cast<QNetworkReply*>(sender()))
return;
// OK
processed = true;
// set status of the request
if ((status = (reply->error() == QNetworkReply::NoError)))
data = reply->readAll().data();
}
void HttpContext::headerReceived() {
// check to see if it is the request we made
if (reply != qobject_cast<QNetworkReply*>(sender()))
return;
processed = true;
if ((status = isHtml = (reply->error() == QNetworkReply::NoError))) {
QVariant value = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute);
if (value.canConvert<int>()) {
code = value.toInt();
if (code > 399) /* error codes */
isHtml = false;
else if ((code > 299) &&
(code < 305 || code == 307)) {
/* redirection codes */
redirected = true;
QVariant redirectionTarget = reply->attribute(QNetworkRequest::RedirectionTargetAttribute);
if (!redirectionTarget.isNull())
data = redirectionTarget.toUrl().toString().toStdString();
else
data = "";
}
return;
}
/* normal codes */
value = reply->header(QNetworkRequest::ContentTypeHeader);
status = isHtml = (value.canConvert<QString>() &&
value.toString().contains(QString("text/html")));
reply->close();
}
}
void HttpContext::timeout() {
if (!processed)
tlp::warning() << "time-out occurs" << endl;
// if timeout occurs
// just indicates the we failed during processing
processed = true;
}
void HttpContext::setTimer(QTimer *timer) {
connect(timer, SIGNAL(timeout()), SLOT(timeout()));
}
UrlElement::UrlElement():is_http(true),data(""),context(0) {
}
UrlElement::UrlElement(const UrlElement &c):
is_http(c.is_http),
data(""),server(c.server),url(c.url),clean_url(c.clean_url),context(NULL) {
}
void UrlElement::setUrl(const std::string& theUrl) {
url = theUrl;
size_t len = theUrl.find_first_of("?", 0);
if (len != string::npos)
clean_url = theUrl.substr(0, len);
else
clean_url.clear();
}
void UrlElement::fill(std::string &result) {
result += context->data;
}
void UrlElement::clear() {
if (context) {
delete context;
context = NULL;
}
data = "";
}
bool UrlElement::load() {
if (!siteconnect(server,url,false))
return false;
fill(data);
return true;
}
static const char* not_html_extensions[] = {
".bmp", ".css", ".doc", ".ico", ".exe", ".gif", ".gz", ".js", ".jpeg", ".jpg",
".pdf", ".png", ".ps", ".rss", ".tar", ".tgz", ".wav", ".zip", ".z",
0 /* must be the last */
};
bool UrlElement::isHtmlPage() {
string lowercase(url);
size_t len = lowercase.length();
for (size_t i = 0; i < len; ++i)
lowercase[i] = tolower(lowercase[i]);
for (unsigned int i = 0; not_html_extensions[i]; i++)
if (lowercase.rfind(not_html_extensions[i], len) != string::npos)
return false;
if(!siteconnect(server,url,true))
return false;
return context->isHtml;
}
bool UrlElement::siteconnect(const std::string &server, const std::string &path,
bool headonly) {
// check that we actually got data..
if (server.empty()) return false;
if (!context)
context = new HttpContext();
string thePath("/");
// prefix the path with / if it doesn't start with it..
if (path.c_str()[0] != '/')
thePath += url;
else
thePath = url;
string url("http://");
url += server.c_str() + thePath;
// start the request
context->request(url, headonly);
// block until the request is finished
// or there is timeout
QTimer timer;
timer.setSingleShot(true);
context->setTimer(&timer);
timer.start(20000);
while(!context->processed) {
QCoreApplication::processEvents();
}
timer.stop();
return context->status && context->code < 400;
} /* end, siteconnect */
static const char * rejected_protocols[] = {
"https:", "ftp:", "gopher:", "sftp:", "javascript:", "mms:", "mailto:",
0 /* must be the last */
};
UrlElement UrlElement::parseUrl (const std::string &href) {
UrlElement newUrl;
string lowercase(href);
size_t i, len = lowercase.length();
for (i = 0; i < len; ++i)
lowercase[i] = tolower(lowercase[i]);
for (i = 0; rejected_protocols[i] != 0; i++) {
if (lowercase.find(rejected_protocols[i]) != string::npos)
break;
}
if (rejected_protocols[i]) {
newUrl.is_http = false;
if (i != 3 /* no javascript */)
newUrl.server = href;
return newUrl;
}
size_t pos=0;
bool host = false;
pos = lowercase.rfind("http://", len);
if (pos == string::npos)
pos=0;
else {
host=true;
pos+=7;
}
if (host) {
size_t endhost = lowercase.find_first_of("/ ",pos);
if (endhost == string::npos)
endhost=len;
string hostname = href.substr(pos,endhost-pos);
newUrl.server = hostname;
newUrl.setUrl(href.substr(endhost));
}
else {
size_t querystart = lowercase.find_first_of("#",pos); /* previously ?# instead of # */
if (querystart != string::npos)
len = querystart;
string theUrl = href.substr(pos,len-pos);
if (theUrl.empty())
return newUrl;
//Manage relative urls
if (theUrl[0]!='/') {
string urlreference(this->url);
size_t findUp = urlreference.rfind("/", urlreference.length());
if (findUp==string::npos) {
urlreference.clear();
urlreference.append(1, '/');
}
else
urlreference = urlreference.substr(0, findUp + 1);
size_t pos;
// remove space chars at the beginning
for (pos = 0; pos < theUrl.size(); ++pos) {
char c = theUrl[pos];
if (c != ' ' && c != '\t')
break;
}
if (pos > 0)
theUrl = theUrl.substr(pos);
while ((pos = theUrl.find("./")) != string::npos) {
if (pos == 0) {
theUrl = theUrl.substr(2);
continue;
}
if (theUrl[pos - 1] == '.') {
theUrl = theUrl.substr(3);
findUp = urlreference.rfind('/', findUp - 1);
if (findUp==string::npos) {
tlp::warning() << "bad url reference, to much ../" << endl;
return newUrl;
}
urlreference = urlreference.substr(0, findUp + 1);
}
else {
tlp::warning() << "bad url reference, to much ../" << endl;
return newUrl;
}
}
theUrl = urlreference + theUrl;
}
if (theUrl != "/") {
newUrl.setUrl(theUrl);
newUrl.server = this->server;
}
}
return newUrl;
}
namespace {
const char * paramHelp[] = {
// server
HTML_HELP_OPEN() \
HTML_HELP_DEF( "type", "string" ) \
HTML_HELP_DEF( "default", "www.labri.fr" ) \
HTML_HELP_BODY() \
"This parameter defines the web server that you want to inspect. No need for http:// at the beginning; http protocol is always assumed. No need for / at the end." \
HTML_HELP_CLOSE(),
// initial page
HTML_HELP_OPEN() \
HTML_HELP_DEF( "type", "string" ) \
HTML_HELP_DEF( "default", "" ) \
HTML_HELP_BODY() \
"This parameter defines the first web page to visit. No need for / at the beginning."\
HTML_HELP_CLOSE(),
// max number of links
HTML_HELP_OPEN() \
HTML_HELP_DEF( "type", "unsigned int" ) \
HTML_HELP_DEF( "default", "1000" ) \
HTML_HELP_BODY() \
"This parameter defines the maximum number of nodes (different pages) allowed in the extracted graph." \
HTML_HELP_CLOSE(),
// non http links
HTML_HELP_OPEN() \
HTML_HELP_DEF( "type", "boolean" ) \
HTML_HELP_DEF( "default", "true" ) \
HTML_HELP_BODY() \
"This parameter indicates if non http links (https, ftp, mailto...) have to be extracted." \
HTML_HELP_CLOSE(),
// other server
HTML_HELP_OPEN() \
HTML_HELP_DEF( "type", "boolean" ) \
HTML_HELP_DEF( "default", "false" ) \
HTML_HELP_BODY() \
"This parameter indicates if links or redirection to other server pages have to be followed." \
HTML_HELP_CLOSE(),
// compute layout
HTML_HELP_OPEN() \
HTML_HELP_DEF( "type", "boolean" ) \
HTML_HELP_DEF( "default", "true" ) \
HTML_HELP_BODY() \
"This parameter indicates if a layout of the extracted graph has to be computed." \
HTML_HELP_CLOSE(),
// page color
HTML_HELP_OPEN() \
HTML_HELP_DEF( "type", "color" ) \
HTML_HELP_DEF( "default", "red" ) \
HTML_HELP_BODY() \
"This parameter indicated the color used to display nodes." \
HTML_HELP_CLOSE(),
// link color
HTML_HELP_OPEN() \
HTML_HELP_DEF( "type", "color" ) \
HTML_HELP_DEF( "default", "blue" ) \
HTML_HELP_BODY() \
"This parameter indicated the color used to display links." \
HTML_HELP_CLOSE(),
// link color
HTML_HELP_OPEN() \
HTML_HELP_DEF( "type", "color" ) \
HTML_HELP_DEF( "default", "yellow" ) \
HTML_HELP_BODY() \
"This parameter indicated the color used to display redirections." \
HTML_HELP_CLOSE()
};
}
struct WebImport:public ImportModule {
PLUGININFORMATION("Web Site","Auber","15/11/2004","Imports a new graph from Web site structure (one node per page).","1.0","Misc")
std::deque<UrlElement> toVisit;
std::set<UrlElement> visited;
std::map<UrlElement, tlp::node> nodes;
tlp::StringProperty *labels;
tlp::StringProperty *urls;
tlp::ColorProperty *colors;
tlp::Color *redirectionColor;
unsigned int maxSize, nbNodes;
bool visitOther;
bool extractNonHttp;
WebImport(tlp::PluginContext* context):ImportModule(context),labels(NULL), urls(NULL), colors(NULL), redirectionColor(NULL), maxSize(1000), nbNodes(0), visitOther(false), extractNonHttp(true) {
addInParameter<string>("server",paramHelp[0],"www.labri.fr");
addInParameter<string>("web page",paramHelp[1], "");
addInParameter<int>("max size",paramHelp[2], "1000");
addInParameter<bool>("non http links",paramHelp[3], "false");
addInParameter<bool>("other server",paramHelp[4], "false");
addInParameter<bool>("compute layout",paramHelp[5], "true");
addInParameter<Color>("page color",paramHelp[6],"(240, 0, 120, 128)");
addInParameter<Color>("link color",paramHelp[7],"(96,96,191,128)");
addInParameter<Color>("redirection color",paramHelp[8],"(191,175,96,128)");
addDependency("FM^3 (OGDF)", "1.2");
}
string urlDecode(const string& url) {
string buffer = "";
int len = url.length();
for (int i = 0; i < len; ++i) {
char ch = url.at(i);
if (ch == '%') {
int chnum = 0;
ch = url.at(++i);
chnum = ch - '0';
if (chnum > 9) {
if (ch >= 'A')
chnum = 10 + (ch - 'A');
else
chnum = 10 + (ch - 'a');
}
chnum *= 16;
ch = url.at(++i);
if (ch - '0' > 9) {
if (ch >= 'A')
chnum += ch - 'A';
else
chnum += ch - 'a';
}
else
chnum += ch - '0';
buffer += chnum;
}
else {
buffer += ch;
}
}
return buffer;
}
//========================================================
bool addNode(const UrlElement &url, node& n) {
if (nodes.find(url)==nodes.end()) {
// no more added node after maxSize
if (nbNodes == maxSize) {
n = node();
return false;
}
n=graph->addNode();
++nbNodes;
stringstream str;
str << url.server;
if (url.url[0] != '/')
str << "/";
str << url.getUrl();
labels->setNodeValue(n, urlDecode(str.str()));
ostringstream oss;
if(url.is_http) {
oss<<"http://";
}
oss << str.str();
urls->setNodeValue(n,oss.str());
nodes[url] = n;
return true;
}
n = nodes[url];
return false;
}
//========================================================
bool addEdge(const UrlElement &source, const UrlElement &target,
const char* type, const Color *color) {
node sNode,tNode;
bool sAdded = addNode(source, sNode);
bool tAdded = addNode(target, tNode);
// if new nodes can node be added (nbNodes > maxSize)
// stop adding edge
if (!sNode.isValid() || !tNode.isValid())
return false;
if (sAdded || tAdded || ((sNode != tNode) && !graph->existEdge(sNode, tNode).isValid())) {
edge e = graph->addEdge(sNode, tNode);
if (type)
labels->setEdgeValue(e, type);
if (color)
colors->setEdgeValue(e, *color);
}
return true;
}
//========================================================
bool nextUrl(UrlElement & url) {
//tlp::warning() << __PRETTY_FUNCTION__ << endl;
while(!toVisit.empty()) {
url = toVisit.front();
toVisit.pop_front();
if (visited.find(url)==visited.end()) {
visited.insert(url);
return true;
}
}
return false;
}
//========================================================
void findAndTreatUrls(const string&lowercase,
const string&balise, UrlElement &url) {
size_t llen = lowercase.length();
size_t len = llen;
while ( len != string::npos ) {
len = lowercase.rfind(balise, len);
if( len != string::npos ) {
bool urlFound = true;
// find the next '=' then the first '"'
size_t start = len + balise.length();
len--;
char c = '=';
for (; start < llen; start++) {
if (lowercase[start] == c) {
// found =
if (c == '=') {
// now looking for "
c = '"';
continue;
}
else
break;
}
// only space chars allowed between balise and '='
// and between '=' and the first '"' too
if (lowercase[start] != ' ') {
urlFound = false;
break;
}
}
if (urlFound) {
++start;
size_t end = start;
// find the end of the string
for (; end < llen; end++) {
if (lowercase[end] == '"')
break;
}
if (end != start) {
string newurl = url.data.substr(start, end - start);
parseUrl(newurl, url);
}
}
}
}
}
//========================================================
// parsehtml - parse the given html and add to queue
void parseHtml (UrlElement &url) {
//tlp::warning() << __PRETTY_FUNCTION__ << endl << flush;
if (url.data.empty()) return;
string lowercase(url.data);
for (size_t i = 0; i< lowercase.length(); ++i)
lowercase[i] = tolower(lowercase[i]);
findAndTreatUrls(lowercase," href",url);
findAndTreatUrls(lowercase," src",url);
}
//========================================================
void addUrl (const UrlElement &url, bool _toVisit) {
if (visited.find(url)!=visited.end())
return;
if (_toVisit && url.is_http)
toVisit.push_back(url);
}
//========================================================
void parseUrl (const string &href, UrlElement &starturl) {
UrlElement newUrl = starturl.parseUrl(href);
if (newUrl.isValid() && (extractNonHttp || newUrl.is_http) &&
addEdge(starturl, newUrl, 0, 0))
addUrl(newUrl, visitOther || (newUrl.server == starturl.server));
}
//========================================================
bool start() {
UrlElement url;
unsigned step = 20;
while (nextUrl(url)) {
if (url.isHtmlPage()) {
if (pluginProgress && ((nbNodes % step) == 0)) {
pluginProgress->setComment(string("Visiting ") +
urlDecode(url.server + url.url));
if (pluginProgress->progress(nbNodes, maxSize) !=TLP_CONTINUE)
return pluginProgress->state()!= TLP_CANCEL;
}
#ifndef NDEBUG
tlp::warning() << "Visiting: " << url.server << url.url << " ..." << std::endl << flush;
#endif
if (url.isRedirected()) {
UrlElement redirection = url.getRedirection();
if (redirection.isValid()) {
#ifndef NDEBUG
tlp::warning() << endl << "redirected to " << redirection.server << redirection.url << endl;
#endif
if (addEdge(url, redirection, "redirection", redirectionColor))
addUrl(redirection,
visitOther || redirection.server == url.server);
}
else
tlp::warning() << endl << "invalid redirection" << endl;
}
else {
url.load();
parseHtml(url);
url.clear();
#ifndef NDEBUG
tlp::warning() << " done" << endl << flush;
#endif
}
}
#ifndef NDEBUG
else
tlp::warning() << "Omitting : " << url.server << url.url << " ==> [not html]"<< endl;
#endif
}
return true;
}
bool importGraph() {
string server = "www.labri.fr";
string url;
bool computelayout = true;
Color pColor(255,0,0);
Color lColor(0,0,255,128);
Color rColor(255,255,0,128);
maxSize = 1000;
nbNodes = 0;
visitOther = false;
extractNonHttp = true;
if (dataSet != NULL) {
dataSet->get("server", server);
dataSet->get("web page", url);
dataSet->get("max size", maxSize);
dataSet->get("non http links", extractNonHttp);
dataSet->get("other server", visitOther);
dataSet->get("compute layout", computelayout);
dataSet->get("page color", pColor);
dataSet->get("link color", lColor);
dataSet->get("redirection color", rColor);
}
UrlElement mySite;
size_t pos = server.find("http://");
if (pos == 0)
// remove http:// prefix
server = server.substr(7);
// remove / prefix
if (server[0] == '/')
server = server.substr(1);
if (server[server.size() - 1] == '/')
// remove / suffix
server = server.substr(0, server.size() - 1);
mySite.server = server;
if (url[0] == '/')
// remove / prefix
url = url.substr(1);
mySite.setUrl(string("/") + url);
mySite.data = "";
labels = graph->getProperty<StringProperty>("viewLabel");
labels->setAllEdgeValue(string("link"));
urls = graph->getProperty<StringProperty>("url");
colors = graph->getProperty<ColorProperty>("viewColor");
colors->setAllNodeValue(pColor);
colors->setAllEdgeValue(lColor);
redirectionColor = &rColor;
graph->getProperty<IntegerProperty>("viewShape")
->setAllNodeValue(14); // GlyphManager::getInst().glyphId("2D - Circle")
if (!mySite.load()) {
if (pluginProgress) {
stringstream sstr;
sstr << "Unable to access http://" << mySite.server << mySite.url << " (ERROR " << mySite.getCode() << ')';
pluginProgress->setError(sstr.str());
}
return false;
}
node n;
toVisit.push_back(mySite);
addNode(mySite, n);
if (pluginProgress) {
pluginProgress->showPreview(false);
pluginProgress->setComment(std::string("Visiting ") + mySite.server + mySite.url);
}
if (!start())
return false;
if (computelayout) {
pluginProgress->setComment("Layouting extracted graph using FM³...");
string errMsg;
// apply FM³
DataSet tmp;
LayoutProperty *layout = graph->getProperty<LayoutProperty>("viewLayout");
return graph->applyPropertyAlgorithm("FM^3 (OGDF)", layout, errMsg, pluginProgress, &tmp);
}
return true;
}
};
PLUGIN(WebImport)
|