UBCFFSubsetAdaptor.cpp 48.1 KB
Newer Older
1 2 3
/*
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
Claudio Valerio's avatar
Claudio Valerio committed
4
 * the Free Software Foundation, either version 2 of the License, or
5 6 7 8 9 10 11 12 13 14
 * (at your option) any later version.
 *
 * This program 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.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
15 16 17
#include <QRegExp>
#include <QSvgGenerator>
#include <QSvgRenderer>
18
#include <QPixmap>
19 20

#include "core/UBPersistenceManager.h"
21

22
#include "document/UBDocumentProxy.h"
23

24 25 26
#include "domain/UBItem.h"
#include "domain/UBGraphicsPolygonItem.h"
#include "domain/UBGraphicsStroke.h"
27 28
#include "domain/UBGraphicsTextItem.h"
#include "domain/UBGraphicsSvgItem.h"
29
#include "domain/UBGraphicsPixmapItem.h"
Anatoly Mihalchenko's avatar
Anatoly Mihalchenko committed
30
#include "domain/UBGraphicsMediaItem.h"
Ivan Ilin's avatar
Ivan Ilin committed
31
#include "domain/UBGraphicsWidgetItem.h"
32
#include "domain/UBGraphicsTextItem.h"
33
#include "domain/UBGraphicsTextItemDelegate.h"
Ivan Ilin's avatar
Ivan Ilin committed
34 35 36
#include "domain/UBW3CWidget.h"

#include "frameworks/UBFileSystemUtils.h"
37

38
#include "UBCFFSubsetAdaptor.h"
39 40 41 42
#include "UBMetadataDcSubsetAdaptor.h"
#include "UBThumbnailAdaptor.h"
#include "UBSvgSubsetAdaptor.h"

43 44 45
#include "core/UBApplication.h"
#include "QFile"

46
#include "core/memcheck.h"
Ivan Ilin's avatar
Ivan Ilin committed
47
//#include "qtlogger.h"
48

49
//tag names definition. Use them everiwhere!
50
static QString tElement         = "element";
51
static QString tGroup           = "group";
52 53 54 55 56
static QString tEllipse         = "ellipse";
static QString tIwb             = "iwb";
static QString tMeta            = "meta";
static QString tPage            = "page";
static QString tPageset         = "pageset";
Ivan Ilin's avatar
Ivan Ilin committed
57 58
static QString tG               = "g";
static QString tSwitch          = "switch";
59
static QString tPolygon         = "polygon";
60
static QString tPolyline        = "polyline";
61 62 63 64 65 66
static QString tRect            = "rect";
static QString tSvg             = "svg";
static QString tText            = "text";
static QString tTextarea        = "textarea";
static QString tTspan           = "tspan";
static QString tBreak           = "tbreak";
67
static QString tImage           = "image";
Ivan Ilin's avatar
Ivan Ilin committed
68
static QString tFlash           = "flash";
Ivan Ilin's avatar
Ivan Ilin committed
69
static QString tAudio           = "a";
Ivan Ilin's avatar
Ivan Ilin committed
70 71
static QString tVideo           = "video";

72
//attribute names definition
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
static QString aFill            = "fill";
static QString aFillopacity     = "fill-opacity";
static QString aX               = "x";
static QString aY               = "y";
static QString aWidth           = "width";
static QString aHeight          = "height";
static QString aStroke          = "stroke";
static QString aStrokewidth     = "stroke-width";
static QString aCx              = "cx";
static QString aCy              = "cy";
static QString aRx              = "rx";
static QString aRy              = "ry";
static QString aTransform       = "transform";
static QString aViewbox         = "viewbox";
static QString aFontSize        = "font-size";
static QString aFontfamily      = "font-family";
static QString aFontstretch     = "font-stretch";
static QString aFontstyle       = "font-style";
static QString aFontweight      = "font-weight";
static QString aTextalign       = "text-align";
93
static QString aPoints          = "points";
Ivan Ilin's avatar
Ivan Ilin committed
94
static QString svgNS            = "http://www.w3.org/2000/svg";
95 96
static QString iwbNS            = "http://www.becta.org.uk/iwb";
static QString aId              = "id";
97 98
static QString aRef             = "ref";
static QString aHref            = "href";
Ivan Ilin's avatar
Ivan Ilin committed
99 100
static QString aBackground      = "background";
static QString aLocked          = "locked";
101
static QString aEditable        = "editable";
102 103 104 105

//attributes part names
static QString apRotate         = "rotate";
static QString apTranslate      = "translate";
106

107 108

UBCFFSubsetAdaptor::UBCFFSubsetAdaptor()
Ivan Ilin's avatar
Ivan Ilin committed
109
{}
110

111
bool UBCFFSubsetAdaptor::ConvertCFFFileToUbz(QString &cffSourceFile, UBDocumentProxy* pDocument)
112
{
113
    //TODO
114 115 116
    // fill document proxy metadata
    // create persistance manager to save data using proxy
    // create UBCFFSubsetReader and make it parse cffSourceFolder
117 118 119 120 121 122 123 124
    QFile file(cffSourceFile);

    if (!file.open(QIODevice::ReadOnly))
    {
        qWarning() << "Cannot open file " << cffSourceFile << " for reading ...";
        return false;
    }

125
    UBCFFSubsetReader cffReader(pDocument, &file);
126 127 128 129
    bool result =  cffReader.parse();
    file.close();

    return result;
130
}
131
UBCFFSubsetAdaptor::UBCFFSubsetReader::UBCFFSubsetReader(UBDocumentProxy *proxy, QFile *content):
Ivan Ilin's avatar
Ivan Ilin committed
132
    mProxy(proxy)
133
{
Ivan Ilin's avatar
Ivan Ilin committed
134 135 136 137 138 139 140
    int errorLine, errorColumn;
    QString errorStr;
    if(!mDOMdoc.setContent(content, true, &errorStr, &errorLine, &errorColumn)){
        qWarning() << "Error:Parseerroratline" << errorLine << ","
                  << "column" << errorColumn << ":" << errorStr;
    } else {
        qDebug() << "well parsed to DOM";
141
        pwdContent = QFileInfo(content->fileName()).dir().absolutePath();
Ivan Ilin's avatar
Ivan Ilin committed
142
    }
143
    qDebug() << "tmp path is" << pwdContent;
144
}
145 146 147 148 149
bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parse()
{
    UBMetadataDcSubsetAdaptor::persist(mProxy);

    mIndent = "";
Ivan Ilin's avatar
Ivan Ilin committed
150
    if (!getTempFileName() || !createTempFlashPath())
151 152
        return false;

Ivan Ilin's avatar
Ivan Ilin committed
153 154 155
    if (mDOMdoc.isNull())
        return false;

156 157 158 159 160 161 162
    bool result = parseDoc();
    if (result)
        result = mProxy->pageCount() != 0;

    if (QFile::exists(mTempFilePath))
        QFile::remove(mTempFilePath);

Ivan Ilin's avatar
Ivan Ilin committed
163 164
//    if (mTmpFlashDir.exists())
//        UBFileSystemUtils::deleteDir(mTmpFlashDir.path());
165

Ivan Ilin's avatar
Ivan Ilin committed
166
    return result;
167
}
Ivan Ilin's avatar
Ivan Ilin committed
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

bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseGSection(const QDomElement &element)
{
    QDomElement currentSvgElement = element.firstChildElement();
    while (!currentSvgElement.isNull()) {
        if (!parseSvgElement(currentSvgElement))
            return false;

        currentSvgElement = currentSvgElement.nextSiblingElement();
    }

    return true;
}
bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseSvgSwitchSection(const QDomElement &element)
{

    QDomElement currentSvgElement = element.firstChildElement();
    while (!currentSvgElement.isNull()) {
        if (parseSvgElement(currentSvgElement))
            return true;
    }

    return false;
}

193 194 195 196 197 198 199 200 201 202 203 204 205 206
bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseSvgRect(const QDomElement &element)
{
    qreal x1 = element.attribute(aX).toDouble();
    qreal y1 = element.attribute(aY).toDouble();
    //rect dimensions
    qreal width = element.attribute(aWidth).toDouble();
    qreal height = element.attribute(aHeight).toDouble();

    QString textFillColor = element.attribute(aFill);
    QString textStrokeColor = element.attribute(aStroke);
    QString textStrokeWidth = element.attribute(aStrokewidth);

    QColor fillColor = !textFillColor.isNull() ? colorFromString(textFillColor) : QColor();
    QColor strokeColor = !textStrokeColor.isNull() ? colorFromString(textStrokeColor) : QColor();
Ivan Ilin's avatar
Ivan Ilin committed
207 208 209 210 211 212
    int strokeWidth = textStrokeWidth.toInt();

    x1 -= strokeWidth/2;
    y1 -= strokeWidth/2;
    width += strokeWidth;
    height += strokeWidth;
213 214

    //init svg generator with temp file
215
    QSvgGenerator *generator = createSvgGenerator(width, height);
216 217 218 219 220 221 222 223 224

    //init painter to paint to svg
    QPainter painter;

    painter.begin(generator);

    //fill rect
    if (fillColor.isValid()) {
        painter.setBrush(QBrush(fillColor));
225
        painter.fillRect(0, 0, width, height, fillColor);
226 227 228 229 230 231 232 233
    }
    QPen pen;
    if (strokeColor.isValid()) {
        pen.setColor(strokeColor);
    }
    if (strokeWidth)
        pen.setWidth(strokeWidth);
    painter.setPen(pen);
234
    painter.drawRect(0, 0, width, height);
235 236 237 238 239 240

    painter.end();

    UBGraphicsSvgItem *svgItem = mCurrentScene->addSvg(QUrl::fromLocalFile(generator->fileName()));
    QTransform transform;
    QString textTransform = element.attribute(aTransform);
Ivan Ilin's avatar
Ivan Ilin committed
241 242

    svgItem->resetTransform();
243
    if (!textTransform.isNull()) {
Ivan Ilin's avatar
Ivan Ilin committed
244
        transform = transformFromString(textTransform, svgItem);
245
    }
246

Ivan Ilin's avatar
Ivan Ilin committed
247
    repositionSvgItem(svgItem, width, height, x1, y1, transform);
248 249
    hashSceneItem(element, svgItem);

250 251 252 253 254 255 256 257 258
    delete generator;

    return true;
}
bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseSvgEllipse(const QDomElement &element)
{
    //ellipse horisontal and vertical radius
    qreal rx = element.attribute(aRx).toDouble();
    qreal ry = element.attribute(aRy).toDouble();
Ivan Ilin's avatar
Ivan Ilin committed
259
    QSvgGenerator *generator = createSvgGenerator(rx * 2, ry * 2);
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278

    //fill and stroke color
    QColor fillColor = colorFromString(element.attribute(aFill));
    QColor strokeColor = colorFromString(element.attribute(aStroke));
    int strokeWidth = element.attribute(aStrokewidth).toInt();

    //ellipse center coordinates
    qreal cx = element.attribute(aCx).toDouble();
    qreal cy = element.attribute(aCy).toDouble();

    //init painter to paint to svg
    QPainter painter;
    painter.begin(generator);

    QPen pen(strokeColor);
    pen.setWidth(strokeWidth);
    painter.setPen(pen);
    painter.setBrush(QBrush(fillColor));

Ivan Ilin's avatar
Ivan Ilin committed
279
    painter.drawEllipse(0, 0, rx * 2, ry * 2);
280 281 282 283 284 285

    painter.end();

    UBGraphicsSvgItem *svgItem = mCurrentScene->addSvg(QUrl::fromLocalFile(generator->fileName()));
    QTransform transform;
    QString textTransform = element.attribute(aTransform);
Ivan Ilin's avatar
Ivan Ilin committed
286 287

    svgItem->resetTransform();
288
    if (!textTransform.isNull()) {
Ivan Ilin's avatar
Ivan Ilin committed
289
        transform = transformFromString(textTransform, svgItem);
290
    }
291

Ivan Ilin's avatar
Ivan Ilin committed
292 293

    repositionSvgItem(svgItem, rx * 2, ry * 2, cx - 2*rx, cy+ry, transform);
294 295
    hashSceneItem(element, svgItem);

296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
    delete generator;

    return true;
}
bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseSvgPolygon(const QDomElement &element)
{
    QString svgPoints = element.attribute(aPoints);
    QPolygonF polygon;

    if (!svgPoints.isNull()) {
        QStringList ts = svgPoints.split(QLatin1Char(' '), QString::SkipEmptyParts);

        foreach(const QString sPoint, ts) {
            QStringList sCoord = sPoint.split(QLatin1Char(','), QString::SkipEmptyParts);
            if (sCoord.size() == 2) {
                QPointF point;
                point.setX(sCoord.at(0).toFloat());
                point.setY(sCoord.at(1).toFloat());
                polygon << point;
            }
316 317 318 319 320 321 322 323 324
            else if (sCoord.size() == 4){
                //This is the case on system were the "," is used to seperate decimal
                QPointF point;
                QString x = sCoord.at(0) + "." + sCoord.at(1);
                QString y = sCoord.at(2) + "." + sCoord.at(3);
                point.setX(x.toFloat());
                point.setY(y.toFloat());
                polygon << point;
            }
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
            else {
                qWarning() << "cannot make sense of a 'point' value" << sCoord;
            }
        }
    }

    //bounding rect lef top corner coordinates
    qreal x1 = polygon.boundingRect().topLeft().x();
    qreal y1 = polygon.boundingRect().topLeft().y();
    //bounding rect dimensions
    qreal width = polygon.boundingRect().width();
    qreal height = polygon.boundingRect().height();

    QString strokeColorText = element.attribute(aStroke);
    QString fillColorText = element.attribute(aFill);
    QString strokeWidthText = element.attribute(aStrokewidth);

    QColor strokeColor = !strokeColorText.isEmpty() ? colorFromString(strokeColorText) : QColor();
    QColor fillColor = !fillColorText.isEmpty() ? colorFromString(fillColorText) : QColor();
Ivan Ilin's avatar
Ivan Ilin committed
344
    int strokeWidth = strokeWidthText.toDouble();
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

    QPen pen;
    pen.setColor(strokeColor);
    pen.setWidth(strokeWidth);

    QBrush brush;
    brush.setColor(fillColor);
    brush.setStyle(Qt::SolidPattern);

    QSvgGenerator *generator = createSvgGenerator(width + pen.width(), height + pen.width());
    QPainter painter;

    painter.begin(generator); //drawing to svg tmp file

    painter.translate(pen.widthF() / 2 - x1, pen.widthF() / 2 - y1);
    painter.setBrush(brush);
    painter.setPen(pen);
    painter.drawPolygon(polygon);

    painter.end();

    //add resulting svg file to scene
    UBGraphicsSvgItem *svgItem = mCurrentScene->addSvg(QUrl::fromLocalFile(generator->fileName()));
    QTransform transform;
    QString textTransform = element.attribute(aTransform);
Ivan Ilin's avatar
Ivan Ilin committed
370 371

    svgItem->resetTransform();
372
    if (!textTransform.isNull()) {
Ivan Ilin's avatar
Ivan Ilin committed
373
        transform = transformFromString(textTransform, svgItem);
374
    }
Ivan Ilin's avatar
Ivan Ilin committed
375
    repositionSvgItem(svgItem, width +strokeWidth, height + strokeWidth, x1 - strokeWidth/2 + transform.m31(), y1 + strokeWidth/2 + transform.m32(), transform);
376 377
    hashSceneItem(element, svgItem);

378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
    delete generator;

    return true;
}
bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseSvgPolyline(const QDomElement &element)
{
    QString svgPoints = element.attribute(aPoints);
    QPolygonF polygon;

    if (!svgPoints.isNull()) {
        QStringList ts = svgPoints.split(QLatin1Char(' '),
                                                    QString::SkipEmptyParts);

        foreach(const QString sPoint, ts) {
            QStringList sCoord = sPoint.split(QLatin1Char(','), QString::SkipEmptyParts);
            if (sCoord.size() == 2) {
                QPointF point;
                point.setX(sCoord.at(0).toFloat());
                point.setY(sCoord.at(1).toFloat());
                polygon << point;
            }
399 400 401 402 403 404 405 406 407
            else if (sCoord.size() == 4){
                //This is the case on system were the "," is used to seperate decimal
                QPointF point;
                QString x = sCoord.at(0) + "." + sCoord.at(1);
                QString y = sCoord.at(2) + "." + sCoord.at(3);
                point.setX(x.toFloat());
                point.setY(y.toFloat());
                polygon << point;
            }
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
            else {
                qWarning() << "cannot make sense of a 'point' value" << sCoord;
            }
        }
    }

    //bounding rect lef top corner coordinates
    qreal x1 = polygon.boundingRect().topLeft().x();
    qreal y1 = polygon.boundingRect().topLeft().y();
    //bounding rect dimensions
    qreal width = polygon.boundingRect().width();
    qreal height = polygon.boundingRect().height();

    QString strokeColorText = element.attribute(aStroke);
    QString strokeWidthText = element.attribute(aStrokewidth);

    QColor strokeColor = !strokeColorText.isEmpty() ? colorFromString(strokeColorText) : QColor();
Ivan Ilin's avatar
Ivan Ilin committed
425 426 427 428
    int strokeWidth = strokeWidthText.toDouble();

    width += strokeWidth;
    height += strokeWidth;
429 430 431 432 433 434 435 436 437 438

    QPen pen;
    pen.setColor(strokeColor);
    pen.setWidth(strokeWidth);

    QSvgGenerator *generator = createSvgGenerator(width + pen.width(), height + pen.width());
    QPainter painter;

    painter.begin(generator); //drawing to svg tmp file

Ivan Ilin's avatar
Ivan Ilin committed
439
    painter.translate(pen.widthF()/2 - x1, pen.widthF()/2- y1);
440 441 442 443 444 445 446 447 448
    painter.setPen(pen);
    painter.drawPolyline(polygon);

    painter.end();

    //add resulting svg file to scene
    UBGraphicsSvgItem *svgItem = mCurrentScene->addSvg(QUrl::fromLocalFile(generator->fileName()));
    QTransform transform;
    QString textTransform = element.attribute(aTransform);
Ivan Ilin's avatar
Ivan Ilin committed
449 450

    svgItem->resetTransform();
451
    if (!textTransform.isNull()) {
Ivan Ilin's avatar
Ivan Ilin committed
452
        transform = transformFromString(textTransform, svgItem);
453
    }
Ivan Ilin's avatar
Ivan Ilin committed
454
    repositionSvgItem(svgItem, width +strokeWidth, height + strokeWidth, x1 + transform.m31() - strokeWidth/2, y1 + transform.m32() + strokeWidth/2, transform);
455 456
    hashSceneItem(element, svgItem);

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
    delete generator;

    return true;
}
void UBCFFSubsetAdaptor::UBCFFSubsetReader::parseTextAttributes(const QDomElement &element,
                                                                qreal &fontSize, QColor &fontColor, QString &fontFamily,
                                                                QString &fontStretch, bool &italic, int &fontWeight,
                                                                int &textAlign, QTransform &fontTransform)
{
    //consider inch has 72 liens
    //since svg font size is given in pixels, divide it by pixels per line
    QString fontSz = element.attribute(aFontSize);
    if (!fontSz.isNull()) fontSize = fontSz.toDouble() * 72 / QApplication::desktop()->physicalDpiY();

    QString fontColorText = element.attribute(aFill);
    if (!fontColorText.isNull()) fontColor = colorFromString(fontColorText);

    QString fontFamilyText = element.attribute(aFontfamily);
    if (!fontFamilyText.isNull()) fontFamily = fontFamilyText;

    QString fontStretchText = element.attribute(aFontstretch);
    if (!fontStretchText.isNull()) fontStretch = fontStretchText;

    if (!element.attribute(aFontstyle).isNull())
        italic = (element.attribute(aFontstyle) == "italic");

    QString weight = element.attribute(aFontweight);
    if (!weight.isNull()) {
        if      (weight == "normal")   fontWeight = QFont::Normal;
        else if (weight == "light")    fontWeight = QFont::Light;
        else if (weight == "demibold") fontWeight = QFont::DemiBold;
        else if (weight == "bold")     fontWeight = QFont::Bold;
        else if (weight == "black")    fontWeight = QFont::Black;
    }
    QString align = element.attribute(aTextalign);
    if (!align.isNull()) {
        if      (align == "middle" || align == "center") textAlign = Qt::AlignHCenter;
        else if (align == "start")                       textAlign = Qt::AlignLeft;
        else if (align == "end")                         textAlign = Qt::AlignRight;
    }

    if (!element.attribute(aTransform).isNull())
        fontTransform = transformFromString(element.attribute(aTransform));
}
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
void UBCFFSubsetAdaptor::UBCFFSubsetReader::readTextBlockAttr(const QDomElement &element, QTextBlockFormat &format)
{
    QString fontStretchText = element.attribute(aFontstretch);
    if (!fontStretchText.isNull()) format.setAlignment(Qt::AlignJustify);

    QString align = element.attribute(aTextalign);
    if (!align.isNull()) {
        if      (align == "middle" || align == "center") format.setAlignment(Qt::AlignHCenter);
        else if (align == "start")                       format.setAlignment(Qt::AlignLeft);
        else if (align == "end")                         format.setAlignment(Qt::AlignRight);
        else if (align == "justify")                     format.setAlignment(Qt::AlignJustify);
    }
}
void UBCFFSubsetAdaptor::UBCFFSubsetReader::readTextCharAttr(const QDomElement &element, QTextCharFormat &format)
{
    QString fontSz = element.attribute(aFontSize);
    if (!fontSz.isNull()) {
        qreal fontSize = fontSz.toDouble() * 72 / QApplication::desktop()->physicalDpiY();
        format.setFontPointSize(fontSize);
    }
    QString fontColorText = element.attribute(aFill);
    if (!fontColorText.isNull()) {
        QColor fontColor = colorFromString(fontColorText);
        if (fontColor.isValid()) format.setForeground(fontColor);
    }
    QString fontFamilyText = element.attribute(aFontfamily);
    if (!fontFamilyText.isNull()) {
        format.setFontFamily(fontFamilyText);
    }
    if (!element.attribute(aFontstyle).isNull()) {
        bool italic = (element.attribute(aFontstyle) == "italic");
        format.setFontItalic(italic);
    }
    QString weight = element.attribute(aFontweight);
    if (!weight.isNull())  {
        if      (weight == "normal")   format.setFontWeight(QFont::Normal);
        else if (weight == "light")    format.setFontWeight(QFont::Light);
        else if (weight == "demibold") format.setFontWeight(QFont::DemiBold);
        else if (weight == "bold")     format.setFontWeight(QFont::Bold);
        else if (weight == "black")    format.setFontWeight(QFont::Black);
    }
}

544 545
bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseSvgText(const QDomElement &element)
{
Ivan Ilin's avatar
Ivan Ilin committed
546 547 548 549 550
    qreal x = element.attribute(aX).toDouble();
    qreal y = element.attribute(aY).toDouble();
    qreal width = element.attribute(aWidth).toDouble();
    qreal height = element.attribute(aHeight).toDouble();

551

Ivan Ilin's avatar
Ivan Ilin committed
552 553 554 555 556 557 558 559 560 561
    qreal fontSize = 12;
    QColor fontColor(qApp->palette().foreground().color());
    QString fontFamily = "Arial";
    QString fontStretch = "normal";
    bool italic = false;
    int fontWeight = QFont::Normal;
    int textAlign = Qt::AlignLeft;
    QTransform fontTransform;
    parseTextAttributes(element, fontSize, fontColor, fontFamily, fontStretch, italic, fontWeight, textAlign, fontTransform);

562 563 564 565
    QFont startFont(fontFamily, fontSize, fontWeight, italic);
    height = QFontMetrics(startFont).height();
    width = QFontMetrics(startFont).width(element.text()) + 5;

Ivan Ilin's avatar
Ivan Ilin committed
566 567 568
    QSvgGenerator *generator = createSvgGenerator(width, height);
    QPainter painter;
    painter.begin(generator);
569
    painter.setFont(startFont);
Ivan Ilin's avatar
Ivan Ilin committed
570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587

    qreal curY = 0.0;
    qreal curX = 0.0;
    qreal linespacing = QFontMetricsF(painter.font()).leading();

//    remember if text area has transform
//    QString transformString;
    QTransform transform = fontTransform;

    QRectF lastDrawnTextBoundingRect;
    //parse text area tags

    //recursive call any tspan in text svg element
    parseTSpan(element, painter
               , curX, curY, width, height, linespacing, lastDrawnTextBoundingRect
               , fontSize, fontColor, fontFamily, fontStretch, italic, fontWeight, textAlign, fontTransform);

    painter.end();
588

Ivan Ilin's avatar
Ivan Ilin committed
589 590
    //add resulting svg file to scene
    UBGraphicsSvgItem *svgItem = mCurrentScene->addSvg(QUrl::fromLocalFile(generator->fileName()));
591

Ivan Ilin's avatar
Ivan Ilin committed
592 593
    svgItem->resetTransform();
    repositionSvgItem(svgItem, width, height, x + transform.m31(), y + transform.m32(), transform);
594
    hashSceneItem(element, svgItem);
Ivan Ilin's avatar
Ivan Ilin committed
595 596

    delete generator;
597
    return true;
Ivan Ilin's avatar
Ivan Ilin committed
598
}
599

Ivan Ilin's avatar
Ivan Ilin committed
600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622
void UBCFFSubsetAdaptor::UBCFFSubsetReader::parseTSpan(const QDomElement &parent, QPainter &painter
                , qreal &curX, qreal &curY, qreal &width, qreal &height, qreal &linespacing, QRectF &lastDrawnTextBoundingRect
                , qreal &fontSize, QColor &fontColor, QString &fontFamily, QString &fontStretch, bool &italic
                , int &fontWeight, int &textAlign, QTransform &fontTransform)
{
    QDomNode curNode = parent.firstChild();
    while (!curNode.isNull()) {
        if (curNode.toElement().tagName() == tTspan) {
            QDomElement curTSpan = curNode.toElement();
            parseTextAttributes(curTSpan, fontSize, fontColor, fontFamily, fontStretch, italic
                                , fontWeight, textAlign, fontTransform);
            painter.setFont(QFont(fontFamily, fontSize, fontWeight, italic));
            painter.setPen(fontColor);
            linespacing = QFontMetricsF(painter.font()).leading();
            parseTSpan(curTSpan, painter
                       , curX, curY, width, height, linespacing, lastDrawnTextBoundingRect
                       , fontSize, fontColor, fontFamily, fontStretch, italic, fontWeight, textAlign, fontTransform);
        } else if (curNode.nodeType() == QDomNode::CharacterDataNode
                   || curNode.nodeType() == QDomNode::CDATASectionNode
                   || curNode.nodeType() == QDomNode::TextNode) {

            QDomCharacterData textData = curNode.toCharacterData();
            QString text = textData.data().trimmed();
623
//            width = painter.fontMetrics().width(text);
Ivan Ilin's avatar
Ivan Ilin committed
624 625 626 627 628 629 630 631 632 633 634 635 636
            //get bounding rect to obtain desired text height
            lastDrawnTextBoundingRect = painter.boundingRect(QRectF(curX, curY, width, height - curY), textAlign|Qt::TextWordWrap, text);
            painter.drawText(curX, curY, width, lastDrawnTextBoundingRect.height(), textAlign|Qt::TextWordWrap, text);
            curX += lastDrawnTextBoundingRect.x() + lastDrawnTextBoundingRect.width();
        } else if (curNode.nodeType() == QDomNode::ElementNode
                   && curNode.toElement().tagName() == tBreak) {

            curY += lastDrawnTextBoundingRect.height() + linespacing;
            curX = 0.0;
            lastDrawnTextBoundingRect = QRectF(0,0,0,0);
        }
        curNode = curNode.nextSibling();
    }
637
}
Ivan Ilin's avatar
Ivan Ilin committed
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
void UBCFFSubsetAdaptor::UBCFFSubsetReader::parseTSpan(const QDomElement &element, QTextCursor &cursor
                                                       , QTextBlockFormat &blockFormat, QTextCharFormat &charFormat)
{
    QDomNode curNode = element.firstChild();
    while (!curNode.isNull()) {
        if (curNode.toElement().tagName() == tTspan) {
            QDomElement curTspan = curNode.toElement();
            readTextBlockAttr(curTspan, blockFormat);
            readTextCharAttr(curTspan, charFormat);
            cursor.setBlockFormat(blockFormat);
            cursor.setCharFormat(charFormat);
            parseTSpan(curTspan, cursor, blockFormat, charFormat);

        } else if (curNode.nodeType() == QDomNode::CharacterDataNode
                   || curNode.nodeType() == QDomNode::CDATASectionNode
                   || curNode.nodeType() == QDomNode::TextNode) {

            QDomCharacterData textData = curNode.toCharacterData();
            QString text = textData.data().trimmed();
            cursor.insertText(text, charFormat);

        } else if (curNode.nodeType() == QDomNode::ElementNode
                   && curNode.toElement().tagName() == tBreak) {
            cursor.insertBlock();
        }
        curNode = curNode.nextSibling();
    }
}
Ivan Ilin's avatar
Ivan Ilin committed
666

667 668 669 670 671 672 673
bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseSvgTextarea(const QDomElement &element)
{
    qreal x = element.attribute(aX).toDouble();
    qreal y = element.attribute(aY).toDouble();
    qreal width = element.attribute(aWidth).toDouble();
    qreal height = element.attribute(aHeight).toDouble();

Ivan Ilin's avatar
Ivan Ilin committed
674 675
    QTextBlockFormat blockFormat;
    blockFormat.setAlignment(Qt::AlignLeft);
676

Ivan Ilin's avatar
Ivan Ilin committed
677 678 679 680 681 682
    QTextCharFormat textFormat;
    textFormat.setFontPointSize(12 * 72 / QApplication::desktop()->physicalDpiY());
    textFormat.setForeground(qApp->palette().foreground().color());
    textFormat.setFontFamily("Arial");
    textFormat.setFontItalic(false);
    textFormat.setFontWeight(QFont::Normal);
683

Ivan Ilin's avatar
Ivan Ilin committed
684 685
    readTextBlockAttr(element, blockFormat);
    readTextCharAttr(element, textFormat);
686

Ivan Ilin's avatar
Ivan Ilin committed
687 688 689 690 691
    QTextDocument doc;
    doc.setPlainText("");
    QTextCursor tCursor(&doc);
    tCursor.setBlockFormat(blockFormat);
    tCursor.setCharFormat(textFormat);
692

Ivan Ilin's avatar
Ivan Ilin committed
693
    parseTSpan(element, tCursor, blockFormat, textFormat);
694

Ivan Ilin's avatar
Ivan Ilin committed
695 696
    UBGraphicsTextItem *svgItem = mCurrentScene->addTextHtml(doc.toHtml());
    svgItem->resize(width, height);
697

Ivan Ilin's avatar
Ivan Ilin committed
698 699
    QTransform transform;
    QString textTransform = element.attribute(aTransform);
Ivan Ilin's avatar
Ivan Ilin committed
700 701

    svgItem->resetTransform();
Ivan Ilin's avatar
Ivan Ilin committed
702
    if (!textTransform.isNull()) {
Ivan Ilin's avatar
Ivan Ilin committed
703
        transform = transformFromString(textTransform, svgItem);
Ivan Ilin's avatar
Ivan Ilin committed
704
    }
705

706 707 708 709 710 711
    //by default all the textAreas are not editable
    UBGraphicsTextItemDelegate *curDelegate = dynamic_cast<UBGraphicsTextItemDelegate*>(svgItem->Delegate());
    if (curDelegate) {
        curDelegate->setEditable(false);
    }

Ivan Ilin's avatar
Ivan Ilin committed
712
    repositionSvgItem(svgItem, width, height, x + transform.m31(), y + transform.m32(), transform);
Ivan Ilin's avatar
Ivan Ilin committed
713
    hashSceneItem(element, svgItem);
714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731

    return true;
}
bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseSvgImage(const QDomElement &element)
{
    qreal x = element.attribute(aX).toDouble();
    qreal y = element.attribute(aY).toDouble();
    qreal width = element.attribute(aWidth).toDouble();
    qreal height = element.attribute(aHeight).toDouble();

    QString itemRefPath = element.attribute(aHref);

    QPixmap pix;
    if (!itemRefPath.isNull()) {
        QString imagePath = pwdContent + "/" + itemRefPath;
        if (!QFile::exists(imagePath)) {
            qDebug() << "can't load file" << pwdContent + "/" + itemRefPath << "maybe file corrupted";
            return false;
732
        } else {
Ivan Ilin's avatar
Ivan Ilin committed
733
//            qDebug() << "size of file" << itemRefPath << QFileInfo(itemRefPath).size();
734 735 736 737 738 739 740
        }
        pix.load(imagePath);
        if (pix.isNull()) {
            qDebug() << "can't create pixmap for file" << pwdContent + "/" + itemRefPath << "maybe format does not supported";
        }
    }

Anatoly Mihalchenko's avatar
Anatoly Mihalchenko committed
741
   UBGraphicsPixmapItem *pixItem = mCurrentScene->addPixmap(pix, NULL);
742 743
   QTransform transform;
   QString textTransform = element.attribute(aTransform);
Ivan Ilin's avatar
Ivan Ilin committed
744 745

   pixItem->resetTransform();
746
   if (!textTransform.isNull()) {
Ivan Ilin's avatar
Ivan Ilin committed
747
       transform = transformFromString(textTransform, pixItem);
748
   }
Ivan Ilin's avatar
Ivan Ilin committed
749
   repositionSvgItem(pixItem, width, height, x + transform.m31(), y + transform.m32(), transform);
750
   hashSceneItem(element, pixItem);
Ivan Ilin's avatar
Ivan Ilin committed
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

   return true;
}
bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseSvgFlash(const QDomElement &element)
{
    QString itemRefPath = element.attribute(aHref);

    qreal x = element.attribute(aX).toDouble();
    qreal y = element.attribute(aY).toDouble();
    qreal width = element.attribute(aWidth).toDouble();
    qreal height = element.attribute(aHeight).toDouble();

    QUrl urlPath;
    QString flashPath;
    if (!itemRefPath.isNull()) {
        flashPath = pwdContent + "/" + itemRefPath;
        if (!QFile::exists(flashPath)) {
            qDebug() << "can't load file" << pwdContent + "/" + itemRefPath << "maybe file corrupted";
            return false;
        }
        urlPath = QUrl::fromLocalFile(flashPath);
    }
    QDir tmpFlashDir(mTmpFlashDir);
    if (!tmpFlashDir.exists()) {
        qDebug() << "Can't create temporary directory to put flash";
        return false;
    }

Ivan Ilin's avatar
Ivan Ilin committed
779 780
    QString flashUrl = UBW3CWidget::createNPAPIWrapperInDir(flashPath, tmpFlashDir, "application/x-shockwave-flash"
                                                            ,QSize(mCurrentSceneRect.width(), mCurrentSceneRect.height()));
Ivan Ilin's avatar
Ivan Ilin committed
781 782 783 784 785
    UBGraphicsWidgetItem *flashItem = mCurrentScene->addW3CWidget(QUrl::fromLocalFile(flashUrl));
    flashItem->setSourceUrl(urlPath);

    QTransform transform;
    QString textTransform = element.attribute(aTransform);
Ivan Ilin's avatar
Ivan Ilin committed
786 787

    flashItem->resetTransform();
Ivan Ilin's avatar
Ivan Ilin committed
788
    if (!textTransform.isNull()) {
Ivan Ilin's avatar
Ivan Ilin committed
789
        transform = transformFromString(textTransform, flashItem);
Ivan Ilin's avatar
Ivan Ilin committed
790
    }
Ivan Ilin's avatar
Ivan Ilin committed
791
    repositionSvgItem(flashItem, width, height, x + transform.m31(), y + transform.m32(), transform);
Ivan Ilin's avatar
Ivan Ilin committed
792 793
    hashSceneItem(element, flashItem);

794 795 796
    return true;
}

Ivan Ilin's avatar
Ivan Ilin committed
797
bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseSvgAudio(const QDomElement &element)
798
{
Ivan Ilin's avatar
Ivan Ilin committed
799 800 801 802
    QDomElement parentOfAudio = element.firstChild().toElement();
    
    qreal x = parentOfAudio.attribute(aX).toDouble();
    qreal y = parentOfAudio.attribute(aY).toDouble();
Ivan Ilin's avatar
Ivan Ilin committed
803 804 805

    QString itemRefPath = element.attribute(aHref);

Ivan Ilin's avatar
Ivan Ilin committed
806
    QUrl concreteUrl;
Ivan Ilin's avatar
Ivan Ilin committed
807
    if (!itemRefPath.isNull()) {
Ivan Ilin's avatar
Ivan Ilin committed
808 809
        QString audioPath = pwdContent + "/" + itemRefPath;
        if (!QFile::exists(audioPath)) {
Ivan Ilin's avatar
Ivan Ilin committed
810 811 812
            qDebug() << "can't load file" << pwdContent + "/" + itemRefPath << "maybe file corrupted";
            return false;
        }
Ivan Ilin's avatar
Ivan Ilin committed
813
        concreteUrl = QUrl::fromLocalFile(audioPath);
Ivan Ilin's avatar
Ivan Ilin committed
814 815
    }

Ivan Ilin's avatar
Ivan Ilin committed
816 817 818 819 820
    QUuid uuid = QUuid::createUuid();

    concreteUrl = QUrl::fromLocalFile(UBPersistenceManager::persistenceManager()
        ->addAudioFileToDocument(mCurrentScene->document(), concreteUrl.toLocalFile(), uuid));
    
Anatoly Mihalchenko's avatar
Anatoly Mihalchenko committed
821
    UBGraphicsMediaItem *audioItem = mCurrentScene->addAudio(concreteUrl, false);
Ivan Ilin's avatar
Ivan Ilin committed
822
    QTransform transform;
Ivan Ilin's avatar
Ivan Ilin committed
823 824 825
    QString textTransform = parentOfAudio.attribute(aTransform);

    audioItem->resetTransform();
Ivan Ilin's avatar
Ivan Ilin committed
826
    if (!textTransform.isNull()) {
Ivan Ilin's avatar
Ivan Ilin committed
827
        transform = transformFromString(textTransform, audioItem);
Ivan Ilin's avatar
Ivan Ilin committed
828
    }
Ivan Ilin's avatar
Ivan Ilin committed
829
    repositionSvgItem(audioItem, audioItem->boundingRect().width(), audioItem->boundingRect().height(), x + transform.m31(), y + transform.m32(), transform);
Ivan Ilin's avatar
Ivan Ilin committed
830 831
    hashSceneItem(element, audioItem);

Ivan Ilin's avatar
Ivan Ilin committed
832
    return true;
833
}
Ivan Ilin's avatar
Ivan Ilin committed
834
bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseSvgVideo(const QDomElement &element)
835
{
Ivan Ilin's avatar
Ivan Ilin committed
836 837 838 839 840 841 842 843
    QString itemRefPath = element.attribute(aHref);
    if (itemRefPath.startsWith(tFlash + "/") && itemRefPath.endsWith(".swf")) {
        if (parseSvgFlash(element)) return true;
        else return false;
    }
    qreal x = element.attribute(aX).toDouble();
    qreal y = element.attribute(aY).toDouble();

Ivan Ilin's avatar
Ivan Ilin committed
844
    QUrl concreteUrl;
Ivan Ilin's avatar
Ivan Ilin committed
845 846 847 848 849
    if (!itemRefPath.isNull()) {
        QString videoPath = pwdContent + "/" + itemRefPath;
        if (!QFile::exists(videoPath)) {
            qDebug() << "can't load file" << pwdContent + "/" + itemRefPath << "maybe file corrupted";
            return false;
850
        }
Ivan Ilin's avatar
Ivan Ilin committed
851
        concreteUrl = QUrl::fromLocalFile(videoPath);
Ivan Ilin's avatar
Ivan Ilin committed
852 853
    }

Ivan Ilin's avatar
Ivan Ilin committed
854 855 856 857 858
    QUuid uuid = QUuid::createUuid();

    concreteUrl = QUrl::fromLocalFile(UBPersistenceManager::persistenceManager()
        ->addVideoFileToDocument(mCurrentScene->document(), concreteUrl.toLocalFile(), uuid));

Anatoly Mihalchenko's avatar
Anatoly Mihalchenko committed
859
    UBGraphicsMediaItem *videoItem = mCurrentScene->addVideo(concreteUrl, false);
Ivan Ilin's avatar
Ivan Ilin committed
860 861
    QTransform transform;
    QString textTransform = element.attribute(aTransform);
Ivan Ilin's avatar
Ivan Ilin committed
862 863

    videoItem->resetTransform();
Ivan Ilin's avatar
Ivan Ilin committed
864
    if (!textTransform.isNull()) {
Ivan Ilin's avatar
Ivan Ilin committed
865
        transform = transformFromString(textTransform, videoItem);
866
    }
Ivan Ilin's avatar
Ivan Ilin committed
867
    repositionSvgItem(videoItem, videoItem->boundingRect().width(), videoItem->boundingRect().height(), x + transform.m31(), y + transform.m32(), transform);
Ivan Ilin's avatar
Ivan Ilin committed
868 869
    hashSceneItem(element, videoItem);

870 871 872
    return true;
}

Ivan Ilin's avatar
Ivan Ilin committed
873 874 875 876 877 878 879
void UBCFFSubsetAdaptor::UBCFFSubsetReader::parseSvgSectionAttr(const QDomElement &svgSection)
{
    getViewBoxDimenstions(svgSection.attribute(aViewbox));
    mSize = QSize(svgSection.attribute(aWidth).toInt(),
                  svgSection.attribute(aHeight).toInt());
}

880 881 882 883
void UBCFFSubsetAdaptor::UBCFFSubsetReader::hashSceneItem(const QDomElement &element, UBGraphicsItem *item)
{
//    adding element pointer to hash to refer if needed
    QString key = element.attribute(aId);
Ivan Ilin's avatar
Ivan Ilin committed
884
    if (!key.isNull()) {
885
        persistedItems.insert(key, item);
Ivan Ilin's avatar
Ivan Ilin committed
886
    }
887
}
888

889 890 891 892 893 894 895 896
bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseSvgElement(const QDomElement &parent)
{
    QString tagName = parent.tagName();
    if (parent.namespaceURI() != svgNS) {
        qDebug() << "Incorrect namespace, error at content file, line number" << parent.lineNumber();
        return false;
    }

Ivan Ilin's avatar
Ivan Ilin committed
897 898 899 900 901 902 903 904 905 906 907 908
    if      (tagName == tG          &&  !parseGSection(parent))             return false;
    else if (tagName == tSwitch     &&  !parseSvgSwitchSection(parent))     return false;
    else if (tagName == tRect       &&  !parseSvgRect(parent))              return false;    
    else if (tagName == tEllipse    &&  !parseSvgEllipse(parent))           return false;
    else if (tagName == tPolygon    &&  !parseSvgPolygon(parent))           return false;
    else if (tagName == tPolyline   &&  !parseSvgPolyline(parent))          return false;
    else if (tagName == tText       &&  !parseSvgText(parent))              return false;
    else if (tagName == tTextarea   &&  !parseSvgTextarea(parent))          return false;
    else if (tagName == tImage      &&  !parseSvgImage(parent))             return false;
    else if (tagName == tFlash      &&  !parseSvgFlash(parent))             return false;
    else if (tagName == tAudio      &&  !parseSvgAudio(parent))             return false;
    else if (tagName == tVideo      &&  !parseSvgVideo(parent))             return false;
909 910 911 912 913 914 915 916 917 918 919 920 921 922

    return true;
}

bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseSvgPage(const QDomElement &parent)
{
    createNewScene();
    QDomElement currentSvgElement = parent.firstChildElement();
    while (!currentSvgElement.isNull()) {
        if (!parseSvgElement(currentSvgElement))
            return false;

        currentSvgElement = currentSvgElement.nextSiblingElement();
    }
923

924 925 926 927 928 929 930 931 932 933 934 935 936
    return true;
}
bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseSvgPageset(const QDomElement &parent)
{
    QDomElement currentPage = parent.firstChildElement(tPage);
    while (!currentPage.isNull()) {
        if (!parseSvgPage(currentPage))
            return false;
        currentPage = currentPage.nextSiblingElement(tPage);
    }
    return true;
}

Ivan Ilin's avatar
Ivan Ilin committed
937
bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseIwbMeta(const QDomElement &element)
938
{
Ivan Ilin's avatar
Ivan Ilin committed
939 940 941 942
    if (element.namespaceURI() != iwbNS) {
        qDebug() << "incorrect meta namespace, incorrect document";
        return false;
    }
943

944 945
    return true;
}
Ivan Ilin's avatar
Ivan Ilin committed
946
bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseSvg(const QDomElement &svgSection)
947
{
Ivan Ilin's avatar
Ivan Ilin committed
948 949 950
    if (svgSection.namespaceURI() != svgNS) {
        qDebug() << "incorrect svg namespace, incorrect document";
        return false;
951
    }
952

Ivan Ilin's avatar
Ivan Ilin committed
953 954
    parseSvgSectionAttr(svgSection);
    QDomElement currentSvg = svgSection.firstChildElement();
955

Ivan Ilin's avatar
Ivan Ilin committed
956 957 958 959
    if (currentSvg.tagName() != tPageset) {
        parseSvgPage(svgSection);
    } else if (currentSvg.tagName() == tPageset){
        parseSvgPageset(currentSvg);
960 961 962 963 964
    }

    return true;
}

Ivan Ilin's avatar
Ivan Ilin committed
965
bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseIwbGroup(QDomElement &parent)
966
{
967
    //TODO. Create groups from elements parsed by parseIwbElement() function
Ivan Ilin's avatar
Ivan Ilin committed
968 969 970 971 972
    if (parent.namespaceURI() != iwbNS) {
        qDebug() << "incorrect iwb group namespace, incorrect document";
        return false;
    }

973 974 975
    return true;
}

Ivan Ilin's avatar
Ivan Ilin committed
976
bool UBCFFSubsetAdaptor::UBCFFSubsetReader::strToBool(QString str)
977
{
Ivan Ilin's avatar
Ivan Ilin committed
978
    return str == "true";
979 980
}

Ivan Ilin's avatar
Ivan Ilin committed
981
bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseIwbElement(QDomElement &element)
982
{
Ivan Ilin's avatar
Ivan Ilin committed
983 984
    if (element.namespaceURI() != iwbNS) {
        qDebug() << "incorrect iwb element namespace, incorrect document";
985 986 987
        return false;
    }

988 989 990 991
    bool locked = false;
    bool isEditableItem = false;
    bool isEditable = false; //Text items to convert to UBGraphicsTextItem only

Ivan Ilin's avatar
Ivan Ilin committed
992 993
    QString IDRef = element.attribute(aRef);
    if (!IDRef.isNull()) {
Claudio Valerio's avatar
Claudio Valerio committed
994
        element.hasAttribute(aBackground) ? strToBool(element.attribute(aBackground)) : false;
Ivan Ilin's avatar
Ivan Ilin committed
995
        locked = element.hasAttribute(aBackground) ? strToBool(element.attribute(aBackground)) : false;
996 997 998
        isEditableItem = element.hasAttribute(aEditable);
        if (isEditableItem)
            isEditable = strToBool(element.attribute(aEditable));
Ivan Ilin's avatar
Ivan Ilin committed
999

1000
        UBGraphicsItem *referedItem(0);
Ivan Ilin's avatar
Ivan Ilin committed
1001 1002
        QHash<QString, UBGraphicsItem*>::iterator iReferedItem;
        iReferedItem = persistedItems.find(IDRef);
1003
        if (iReferedItem != persistedItems.end()) {
1004
            referedItem = *iReferedItem;
1005
            referedItem->Delegate()->lock(locked);
Ivan Ilin's avatar
Ivan Ilin committed
1006
        }
1007 1008 1009 1010 1011 1012
        if (isEditableItem) {
            UBGraphicsTextItemDelegate *textDelegate = dynamic_cast<UBGraphicsTextItemDelegate*>(referedItem->Delegate());
            if (textDelegate) {
                textDelegate->setEditable(isEditable);
            }
        }
1013 1014 1015 1016
    }

    return true;
}
Ivan Ilin's avatar
Ivan Ilin committed
1017
bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseDoc()
1018
{
Ivan Ilin's avatar
Ivan Ilin committed
1019 1020 1021 1022 1023 1024 1025
    QDomElement currentTopElement = mDOMdoc.documentElement().firstChildElement();
    while (!currentTopElement.isNull()) {
        QString tagName = currentTopElement.tagName();
        if      (tagName == tMeta       && !parseIwbMeta(currentTopElement))    return false;
        else if (tagName == tSvg        && !parseSvg(currentTopElement))        return false;
        else if (tagName == tGroup      && !parseIwbGroup(currentTopElement))   return false;
        else if (tagName == tElement    && !parseIwbElement(currentTopElement)) return false;
1026

Ivan Ilin's avatar
Ivan Ilin committed
1027 1028
        currentTopElement = currentTopElement.nextSiblingElement();
    }
1029 1030
    if (!persistScenes()) return false;

1031 1032 1033
    return true;
}

Ivan Ilin's avatar
Ivan Ilin committed
1034
void UBCFFSubsetAdaptor::UBCFFSubsetReader::repositionSvgItem(QGraphicsItem *item, qreal width, qreal height,
1035
                                                              qreal x, qreal y,
Ivan Ilin's avatar
Ivan Ilin committed
1036
                                                              QTransform &transform)
1037
{
Ivan Ilin's avatar
Ivan Ilin committed
1038 1039
    //First using viebox coordinates, then translate them to scene coordinates

1040
    QRectF itemBounds = item->boundingRect();
Ivan Ilin's avatar
Ivan Ilin committed
1041

1042 1043 1044
    qreal xScale = width  / itemBounds.width();
    qreal yScale = height / itemBounds.height();

Ivan Ilin's avatar
Ivan Ilin committed
1045 1046 1047
    qreal fullScaleX = mVBTransFactor * xScale;
    qreal fullScaleY = mVBTransFactor * yScale;

Ivan Ilin's avatar
Ivan Ilin committed
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060
    QPointF oldVector((x - transform.dx()), (y - transform.dy()));
    QTransform rTransform;
    QPointF newVector = rTransform.map(oldVector);

    QRectF sr = mCurrentScene->sceneRect();
    QRectF sr1 = mCurrentSceneRect;
    QRectF sr2 = mCurrentScene->normalizedSceneRect();

    QTransform tr = item->sceneTransform();
    item->setTransform(rTransform.scale(fullScaleX, fullScaleY), true);
    tr = item->sceneTransform();
    QPoint pos ((int)((x + mShiftVector.x() + (newVector - oldVector).x()) * mVBTransFactor), (int)((y +mShiftVector.y() + (newVector - oldVector).y()) * mVBTransFactor));
    item->setPos(pos);
1061
}
1062 1063 1064 1065

bool UBCFFSubsetAdaptor::UBCFFSubsetReader::createNewScene()
{
    mCurrentScene = UBPersistenceManager::persistenceManager()->createDocumentSceneAt(mProxy, mProxy->pageCount());
1066
    mCurrentScene->setURStackEnable(false);
Ivan Ilin's avatar
Ivan Ilin committed
1067 1068 1069 1070 1071 1072 1073
    mCurrentScene->setSceneRect(mViewBox);
    if ((mCurrentScene->sceneRect().topLeft().x() >= 0) || (mCurrentScene->sceneRect().topLeft().y() >= 0)) {
        mShiftVector = -mViewBox.center();
    }
    mCurrentSceneRect = mViewBox;
    mVBTransFactor = qMin(mCurrentScene->normalizedSceneRect().width()  / mViewPort.width(),
                          mCurrentScene->normalizedSceneRect().height() / mViewPort.height());
1074 1075 1076 1077 1078 1079 1080
    return true;
}

bool UBCFFSubsetAdaptor::UBCFFSubsetReader::persistCurrentScene()
{
    if (mCurrentScene != 0 && mCurrentScene->isModified())
    {
1081
        UBThumbnailAdaptor::persistScene(mProxy, mCurrentScene, mProxy->pageCount() - 1);
1082 1083 1084 1085 1086 1087 1088
        UBSvgSubsetAdaptor::persistScene(mProxy, mCurrentScene, mProxy->pageCount() - 1);

        mCurrentScene->setModified(false);
        mCurrentScene = 0;
    }
    return true;
}
1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100
bool UBCFFSubsetAdaptor::UBCFFSubsetReader::persistScenes()
{
    if (!mProxy->pageCount()) {
        qDebug() << "No pages created";
        return false;
    }
    for (int i = 0; i < mProxy->pageCount(); i++) {
        mCurrentScene = UBPersistenceManager::persistenceManager()->getDocumentScene(mProxy, i);
        if (!mCurrentScene) {
            qDebug() << "can't allocate scene, loading failed";
            return false;
        }
Ivan Ilin's avatar
Ivan Ilin committed
1101 1102 1103 1104

        UBSvgSubsetAdaptor::persistScene(mProxy, mCurrentScene, i);
        UBGraphicsScene *tmpScene = UBSvgSubsetAdaptor::loadScene(mProxy, i);
        tmpScene->setModified(true);
1105
        UBThumbnailAdaptor::persistScene(mProxy, tmpScene, i);
Ivan Ilin's avatar
Ivan Ilin committed
1106
        delete tmpScene;
1107 1108 1109 1110 1111 1112

        mCurrentScene->setModified(false);
    }

    return true;
}
1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140

QColor UBCFFSubsetAdaptor::UBCFFSubsetReader::colorFromString(const QString& clrString)
{
    //init regexp with pattern
    //pattern corresponds to strings like 'rgb(1,2,3) or rgb(10%,20%,30%)'
    QRegExp regexp("rgb\\(([0-9]+%{0,1}),([0-9]+%{0,1}),([0-9]+%{0,1})\\)");
    if (regexp.exactMatch(clrString))
    {
        if (regexp.capturedTexts().count() == 4 && regexp.capturedTexts().at(0).length() == clrString.length())
        {
            int r = regexp.capturedTexts().at(1).toInt();
            if (regexp.capturedTexts().at(1).indexOf("%") != -1)
                r = r * 255 / 100;
            int g = regexp.capturedTexts().at(2).toInt();
            if (regexp.capturedTexts().at(2).indexOf("%") != -1)
                g = g * 255 / 100;
            int b = regexp.capturedTexts().at(3).toInt();
            if (regexp.capturedTexts().at(3).indexOf("%") != -1)
                b = b * 255 / 100;
            return QColor(r, g, b);
        }
        else
            return QColor();
    }
    else
        return QColor(clrString);
}

Ivan Ilin's avatar
Ivan Ilin committed
1141
QTransform UBCFFSubsetAdaptor::UBCFFSubsetReader::transformFromString(const QString trString, QGraphicsItem *item)
1142
{
Ivan Ilin's avatar
Ivan Ilin committed
1143 1144
    qreal dxr = 0.0;
    qreal dyr = 0.0;
1145 1146 1147
    qreal dx = 0.0;
    qreal dy = 0.0;
    qreal angle = 0.0;
Ivan Ilin's avatar
Ivan Ilin committed
1148
    QTransform tr;
1149

Ivan Ilin's avatar
Ivan Ilin committed
1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163
    foreach(QString trStr, trString.split(" ", QString::SkipEmptyParts))
    {
        //check pattern for strings like 'rotate(10)'
        QRegExp regexp("rotate\\( *([-+]{0,1}[0-9]*\\.{0,1}[0-9]*) *\\)");
        if (regexp.exactMatch(trStr)) {
            angle = regexp.capturedTexts().at(1).toDouble();
            if (item)
            {    
                item->setTransformOriginPoint(QPointF(0, 0));
                item->rotate(angle);
            }
            continue;
        };
        
1164 1165
        //check pattern for strings like 'rotate(10,20,20)' or 'rotate(10.1,10.2,34.2)'
        regexp.setPattern("rotate\\( *([-+]{0,1}[0-9]*\\.{0,1}[0-9]*) *, *([-+]{0,1}[0-9]*\\.{0,1}[0-9]*) *, *([-+]{0,1}[0-9]*\\.{0,1}[0-9]*) *\\)");
Ivan Ilin's avatar
Ivan Ilin committed
1166
        if (regexp.exactMatch(trStr)) {
1167
            angle = regexp.capturedTexts().at(1).toDouble();
Ivan Ilin's avatar
Ivan Ilin committed
1168 1169 1170 1171 1172 1173 1174 1175
            dxr = regexp.capturedTexts().at(2).toDouble();
            dyr = regexp.capturedTexts().at(3).toDouble();
            if (item)
            {                
                item->setTransformOriginPoint(QPointF(dxr, dyr)-item->pos());
                item->rotate(angle);
            }
            continue;
1176 1177
        }

Ivan Ilin's avatar
Ivan Ilin committed
1178 1179 1180 1181 1182 1183 1184 1185 1186 1187
        //check pattern for strings like 'translate(11.0, 12.34)'
        regexp.setPattern("translate\\( *([-+]{0,1}[0-9]*\\.{0,1}[0-9]*) *,*([-+]{0,1}[0-9]*\\.{0,1}[0-9]*)*\\)");
        if (regexp.exactMatch(trStr)) {
            dx = regexp.capturedTexts().at(1).toDouble();
            dy = regexp.capturedTexts().at(2).toDouble();
            tr.translate(dx,dy);
            continue;
        }
    }
    return tr;
1188 1189 1190 1191
}

bool UBCFFSubsetAdaptor::UBCFFSubsetReader::getViewBoxDimenstions(const QString& viewBox)
{
Ivan Ilin's avatar
Ivan Ilin committed
1192 1193
    QStringList capturedTexts = viewBox.split(" ", QString::SkipEmptyParts);
    if (capturedTexts.count())
1194
    {
Ivan Ilin's avatar
Ivan Ilin committed
1195
        if (4 == capturedTexts.count())
1196
        {
Ivan Ilin's avatar
Ivan Ilin committed
1197
            mViewBox = QRectF(capturedTexts.at(0).toDouble(), capturedTexts.at(1).toDouble(), capturedTexts.at(2).toDouble(), capturedTexts.at(3).toDouble());
1198 1199
            mViewPort = mViewBox;
            mViewPort.translate(- mViewPort.center());
1200 1201
            mViewBoxCenter.setX(mViewBox.width() / 2);
            mViewBoxCenter.setY(mViewBox.height() / 2);
1202

1203 1204 1205 1206 1207
            return true;
        }
    }

    mViewBox = QRectF(0, 0, 1000, 1000);
1208
    mViewBoxCenter = QPointF(500, 500);
1209 1210 1211
    return false;
}

1212
QSvgGenerator* UBCFFSubsetAdaptor::UBCFFSubsetReader::createSvgGenerator(qreal width, qreal height)
1213 1214
{
    QSvgGenerator* generator = new QSvgGenerator();
Ivan Ilin's avatar
Ivan Ilin committed
1215 1216
//    qWarning() << QString("Making generator with file %1, size (%2, %3) and viewbox (%4 %5 %6 %7)").arg(mTempFilePath)
//        .arg(width).arg(height).arg(0.0).arg(0.0).arg(width).arg(width);
1217
    generator->setResolution(QApplication::desktop()->physicalDpiY());
1218
    generator->setFileName(mTempFilePath);
1219 1220
    generator->setSize(QSize(width, height));
    generator->setViewBox(QRectF(0, 0, width, height));
1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244

    return generator;
}

bool UBCFFSubsetAdaptor::UBCFFSubsetReader::getTempFileName()
{
    int tmpNumber = 0;
    QDir rootDir;
    while (true)
    {
        mTempFilePath = QString("%1/sanksvg%2.%3")
                .arg(rootDir.tempPath())
                .arg(QDateTime::currentDateTime().toString("dd_MM_yyyy_HH-mm"))
                .arg(tmpNumber);
        if (!QFile::exists(mTempFilePath))
            return true;
        tmpNumber++;
        if (tmpNumber == 100000)
        {
            qWarning() << "Import failed. Failed to create temporary file for svg objects";
            return false;
        }
    }
}
Ivan Ilin's avatar
Ivan Ilin committed
1245
bool UBCFFSubsetAdaptor::UBCFFSubsetReader::createTempFlashPath()
1246
{
Ivan Ilin's avatar
Ivan Ilin committed
1247 1248
    int tmpNumber = 0;
    QDir systemTmp = QDir::temp();
1249

Ivan Ilin's avatar
Ivan Ilin committed
1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265
    while (true) {
        QString dirName = QString("SankTmpFlash%1.%2")
                .arg(QDateTime::currentDateTime().toString("dd_MM_yyyy_HH-mm"))
                .arg(tmpNumber++);
        if (!systemTmp.exists(dirName)) {
            if (systemTmp.mkdir(dirName)) {
                mTmpFlashDir = QDir(systemTmp.absolutePath() + "/" + dirName);
                return true;
            } else {
                qDebug() << "Can't create temporary dir maybe due to permissions";
                return false;
            }
        } else if (tmpNumber == 1000) {
            qWarning() << "Import failed. Failed to create temporary file for svg objects";
            return false;
        }
1266 1267
    }

Ivan Ilin's avatar
Ivan Ilin committed
1268
    return true;
1269
}
1270 1271 1272 1273 1274 1275 1276 1277
UBCFFSubsetAdaptor::UBCFFSubsetReader::~UBCFFSubsetReader()
{
//    QList<int> pages;
//    for (int i = 0; i < mProxy->pageCount(); i++) {
//        pages << i;
//    }
//    UBPersistenceManager::persistenceManager()->deleteDocumentScenes(mProxy, pages);
}