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
|
/*
* This file is part of the xTuple ERP: PostBooks Edition, a free and
* open source Enterprise Resource Planning software suite,
* Copyright (c) 1999-2010 by OpenMFG LLC, d/b/a xTuple.
* It is licensed to you under the Common Public Attribution License
* version 1.0, the full text of which (including xTuple-specific Exhibits)
* is available at www.xtuple.com/CPAL. By using this software, you agree
* to be bound by its terms.
*/
#include "createdbobj.h"
#include <QDomDocument>
#include <QMessageBox>
#include <QRegExp>
#include <QSqlError>
#include <QVariant>
#include "metasql.h"
#include "xsqlquery.h"
#define DEBUG false
CreateDBObj::CreateDBObj()
{
}
CreateDBObj::CreateDBObj(const QString &nodename, const QString &filename,
const QString &name, const QString &comment,
const QString &schema, OnError onError)
{
_comment = comment;
_filename = filename;
_name = name;
_nodename = nodename;
_oidMql = 0;
_schema = schema;
_onError = onError;
}
CreateDBObj::CreateDBObj(const QDomElement & elem, QStringList &msg, QList<bool> &fatal)
{
_nodename = elem.nodeName();
if (elem.hasAttribute("name"))
_name = elem.attribute("name");
else
{
msg.append(TR("The contents.xml must name the object for %1.")
.arg(_nodename));
fatal.append("false");
}
if (elem.hasAttribute("file"))
_filename = elem.attribute("file");
else
{
msg.append(TR("The contents.xml must name the file for %1.")
.arg(_nodename));
fatal.append(true);
}
if (elem.hasAttribute("schema"))
_schema = elem.attribute("schema");
if (elem.hasAttribute("onerror"))
_onError = nameToOnError(elem.attribute("onerror"));
_comment = elem.text().trimmed();
}
CreateDBObj::~CreateDBObj()
{
}
QDomElement CreateDBObj::createElement(QDomDocument & doc)
{
QDomElement elem = doc.createElement(_nodename);
elem.setAttribute("file", _filename);
if (! _name.isEmpty())
elem.setAttribute("name", _name);
if (! _schema.isEmpty())
elem.setAttribute("schema", _schema);
if (!_comment.isEmpty())
elem.appendChild(doc.createTextNode(_comment));
return elem;
}
int CreateDBObj::writeToDB(const QByteArray &pdata, const QString pkgname,
ParameterList ¶ms, QString &errMsg)
{
if (DEBUG)
qDebug("CreateDBObj::writeToDB(%s, %s, &errMsg)",
pdata.data(), qPrintable(pkgname));
QString destschema;
if (! _schema.isEmpty())
destschema = _schema;
else if (pkgname.isEmpty())
destschema = "public";
else if (! pkgname.isEmpty())
destschema = pkgname;
int returnVal = Script::writeToDB(pdata, pkgname, errMsg);
if (returnVal < 0)
return returnVal;
params.append("name", _name);
params.append("schema", destschema);
XSqlQuery oidq = _oidMql->toQuery(params);
if (oidq.first())
; // passed error check
else if (oidq.lastError().type() != QSqlError::NoError)
{
errMsg = _sqlerrtxt.arg(_filename)
.arg(oidq.lastError().databaseText())
.arg(oidq.lastError().driverText());
return -7;
}
else // not found
{
errMsg = TR("Could not find %1 in the database. The "
"script %2 does not match the package.xml description.")
.arg(_name).arg(_filename);
return -8;
}
return returnVal;
}
|