2013-05-02 11:47:14 +00:00
|
|
|
/*
|
2023-01-01 17:05:57 +01:00
|
|
|
Copyright 2006-2023 The QElectroTech Team
|
2013-05-02 11:47:14 +00:00
|
|
|
This file is part of QElectroTech.
|
|
|
|
|
|
|
|
QElectroTech is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
QElectroTech 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 QElectroTech. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#include "numerotationcontext.h"
|
2018-07-19 14:14:31 +00:00
|
|
|
|
2020-12-08 19:57:35 +01:00
|
|
|
#include "../qet.h"
|
|
|
|
|
2020-09-18 23:01:51 +02:00
|
|
|
#include <QRegularExpression>
|
2020-12-08 19:57:35 +01:00
|
|
|
#include <utility>
|
2013-05-20 19:29:10 +00:00
|
|
|
|
|
|
|
/**
|
2020-08-16 11:19:36 +02:00
|
|
|
Constructor
|
|
|
|
*/
|
2020-09-07 22:03:40 +02:00
|
|
|
NumerotationContext::NumerotationContext()
|
|
|
|
{
|
2013-05-20 19:29:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-08-16 11:19:36 +02:00
|
|
|
Constructor from xml
|
|
|
|
*/
|
2013-05-20 19:29:10 +00:00
|
|
|
NumerotationContext::NumerotationContext(QDomElement &e) {
|
2013-05-20 19:58:31 +00:00
|
|
|
fromXml(e);
|
2013-05-20 19:29:10 +00:00
|
|
|
}
|
2013-05-02 11:47:14 +00:00
|
|
|
|
|
|
|
/**
|
2020-08-16 11:19:36 +02:00
|
|
|
@brief NumerotationContext::clear, clear the content
|
|
|
|
*/
|
2020-09-07 22:03:40 +02:00
|
|
|
void NumerotationContext::clear ()
|
|
|
|
{
|
2013-05-02 11:47:14 +00:00
|
|
|
content_.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-08-20 21:57:35 +02:00
|
|
|
@brief NumerotationContext::addValue
|
|
|
|
add a new value on the contexte
|
2020-08-16 11:19:36 +02:00
|
|
|
@param type the type of value
|
|
|
|
@param value the value itself
|
|
|
|
@param increase the increase number of value
|
2020-08-20 21:57:35 +02:00
|
|
|
@param initialvalue
|
2020-08-16 11:19:36 +02:00
|
|
|
@return true if value is append
|
|
|
|
*/
|
2020-08-20 21:58:23 +02:00
|
|
|
bool NumerotationContext::addValue(const QString &type,
|
|
|
|
const QVariant &value,
|
|
|
|
const int increase,
|
|
|
|
const int initialvalue) {
|
|
|
|
if (!keyIsAcceptable(type) && !value.canConvert(QVariant::String))
|
|
|
|
return false;
|
|
|
|
if (keyIsNumber(type) && !value.canConvert(QVariant::Int))
|
|
|
|
return false;
|
2013-05-02 11:47:14 +00:00
|
|
|
|
|
|
|
QString valuestr = value.toString();
|
|
|
|
valuestr.remove("|");
|
2020-08-20 21:58:23 +02:00
|
|
|
content_ << type
|
|
|
|
+ "|"
|
|
|
|
+ valuestr
|
|
|
|
+ "|"
|
|
|
|
+ QString::number(increase)
|
|
|
|
+ "|"
|
|
|
|
+ QString::number(initialvalue);
|
2013-05-02 11:47:14 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-08-16 11:19:36 +02:00
|
|
|
@brief NumerotationContext::operator []
|
2020-08-18 20:07:55 +02:00
|
|
|
@param i
|
|
|
|
@return the string at position i
|
2020-08-16 11:19:36 +02:00
|
|
|
*/
|
2020-09-07 22:03:40 +02:00
|
|
|
QString NumerotationContext::operator [] (const int &i) const
|
|
|
|
{
|
2013-05-02 11:47:14 +00:00
|
|
|
return (content_.at(i));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-08-16 11:19:36 +02:00
|
|
|
@brief NumerotationContext::operator << , append other
|
|
|
|
*/
|
2013-05-02 11:47:14 +00:00
|
|
|
void NumerotationContext::operator << (const NumerotationContext &other) {
|
|
|
|
for (int i=0; i<other.size(); ++i) content_.append(other[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-08-16 11:19:36 +02:00
|
|
|
@brief NumerotationContext::size
|
|
|
|
@return size of context
|
|
|
|
*/
|
2020-09-07 22:03:40 +02:00
|
|
|
int NumerotationContext::size() const
|
|
|
|
{
|
2013-05-02 11:47:14 +00:00
|
|
|
return (content_.size());
|
|
|
|
}
|
|
|
|
|
2013-05-20 19:29:10 +00:00
|
|
|
/**
|
2020-08-16 11:19:36 +02:00
|
|
|
@brief NumerotationContext::isEmpty
|
2022-12-04 08:21:12 -05:00
|
|
|
@return true if numerotation content is empty
|
2020-08-16 11:19:36 +02:00
|
|
|
*/
|
2020-09-07 22:03:40 +02:00
|
|
|
bool NumerotationContext::isEmpty() const
|
|
|
|
{
|
2013-05-20 19:29:10 +00:00
|
|
|
if (content_.size() > 0) return false;
|
|
|
|
return true;
|
|
|
|
}
|
2013-05-02 11:47:14 +00:00
|
|
|
/**
|
2020-08-16 11:19:36 +02:00
|
|
|
@brief NumerotationContext::itemAt
|
2020-08-18 20:07:55 +02:00
|
|
|
@param i
|
|
|
|
@return the content at position i 1:type 2:value 3:increase
|
2020-08-16 11:19:36 +02:00
|
|
|
*/
|
2020-09-07 22:03:40 +02:00
|
|
|
QStringList NumerotationContext::itemAt(const int i) const
|
|
|
|
{
|
2013-05-02 11:47:14 +00:00
|
|
|
return (content_.at(i).split("|"));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-08-16 11:19:36 +02:00
|
|
|
@brief validRegExpNum
|
|
|
|
@return all type use to numerotation
|
|
|
|
*/
|
2020-09-07 22:03:40 +02:00
|
|
|
QString NumerotationContext::validRegExpNum () const
|
|
|
|
{
|
2018-12-04 22:33:11 +00:00
|
|
|
return ("unit|unitfolio|ten|tenfolio|hundred|hundredfolio|string|idfolio|folio|plant|locmach|elementline|elementcolumn|elementprefix");
|
2013-05-02 11:47:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-08-16 11:19:36 +02:00
|
|
|
@brief NumerotationContext::validRegExpNumber
|
|
|
|
@return all type represents a number
|
|
|
|
*/
|
2020-09-07 22:03:40 +02:00
|
|
|
QString NumerotationContext::validRegExpNumber() const
|
|
|
|
{
|
2016-11-24 16:45:55 +00:00
|
|
|
return ("unit|unitfolio|ten|tenfolio|hundred|hundredfolio");
|
2013-05-02 11:47:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-08-16 11:19:36 +02:00
|
|
|
@brief NumerotationContext::keyIsAcceptable
|
2020-08-18 20:07:55 +02:00
|
|
|
@return true if type is acceptable
|
2020-08-16 11:19:36 +02:00
|
|
|
*/
|
2020-09-07 22:03:40 +02:00
|
|
|
bool NumerotationContext::keyIsAcceptable(const QString &type) const
|
|
|
|
{
|
2020-09-18 23:01:51 +02:00
|
|
|
return (type.contains(QRegularExpression(validRegExpNum())));
|
2013-05-02 11:47:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-08-16 11:19:36 +02:00
|
|
|
@brief NumerotationContext::keyIsNumber
|
2022-12-04 08:21:12 -05:00
|
|
|
@return true if type represents a number
|
2020-08-16 11:19:36 +02:00
|
|
|
*/
|
2020-09-07 22:03:40 +02:00
|
|
|
bool NumerotationContext::keyIsNumber(const QString &type) const
|
|
|
|
{
|
2020-09-18 23:01:51 +02:00
|
|
|
return (type.contains(QRegularExpression(validRegExpNumber())));
|
2013-05-02 11:47:14 +00:00
|
|
|
}
|
2013-05-20 19:29:10 +00:00
|
|
|
|
|
|
|
/**
|
2020-08-16 11:19:36 +02:00
|
|
|
@brief NumerotationContext::toXml
|
2020-08-18 20:07:55 +02:00
|
|
|
Save the numerotation context in a QDomElement under the element name str
|
2020-08-16 11:19:36 +02:00
|
|
|
*/
|
2018-07-19 14:14:31 +00:00
|
|
|
QDomElement NumerotationContext::toXml(QDomDocument &d, const QString& str) {
|
2013-05-20 19:29:10 +00:00
|
|
|
QDomElement num_auto = d.createElement(str);
|
|
|
|
for (int i=0; i<content_.size(); ++i) {
|
|
|
|
QStringList strl = itemAt(i);
|
|
|
|
QDomElement part = d.createElement("part");
|
|
|
|
part.setAttribute("type", strl.at(0));
|
|
|
|
part.setAttribute("value", strl.at(1));
|
|
|
|
part.setAttribute("increase", strl.at(2));
|
2016-07-26 18:52:49 +00:00
|
|
|
if (strl.at(0) == ("unitfolio") ||
|
|
|
|
strl.at(0) == ("tenfolio") ||
|
|
|
|
strl.at(0) == ("hundredfolio")) {
|
|
|
|
part.setAttribute("initialvalue", strl.at(3));
|
|
|
|
}
|
2013-05-20 19:29:10 +00:00
|
|
|
num_auto.appendChild(part);
|
|
|
|
}
|
|
|
|
return num_auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-08-16 11:19:36 +02:00
|
|
|
@brief NumerotationContext::fromXml
|
2020-08-18 20:07:55 +02:00
|
|
|
load numerotation context from e
|
2020-08-16 11:19:36 +02:00
|
|
|
*/
|
2013-05-20 19:58:31 +00:00
|
|
|
void NumerotationContext::fromXml(QDomElement &e) {
|
2013-05-20 19:29:10 +00:00
|
|
|
clear();
|
2017-02-05 16:18:50 +00:00
|
|
|
foreach(QDomElement qde, QET::findInDomElement(e, "part")) addValue(qde.attribute("type"), qde.attribute("value"), qde.attribute("increase").toInt(), qde.attribute("initialvalue").toInt());
|
2016-07-26 18:52:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-08-16 11:19:36 +02:00
|
|
|
@brief NumerotationContext::replaceValue
|
|
|
|
This class replaces the current NC field value with content
|
|
|
|
@param index of NC Item
|
2020-08-18 20:07:55 +02:00
|
|
|
@param content to replace current value
|
2020-08-16 11:19:36 +02:00
|
|
|
*/
|
2016-07-26 18:52:49 +00:00
|
|
|
void NumerotationContext::replaceValue(int index, QString content) {
|
|
|
|
QString sep = "|";
|
|
|
|
QString type = content_[index].split("|").at(0);
|
2018-07-19 14:14:31 +00:00
|
|
|
const QString& value = std::move(content);
|
2016-07-26 18:52:49 +00:00
|
|
|
QString increase = content_[index].split("|").at(2);
|
|
|
|
QString initvalue = content_[index].split("|").at(3);
|
|
|
|
content_[index].replace(content_[index], type + "|" + value + "|" + increase + "|" + initvalue);
|
2013-05-20 19:29:10 +00:00
|
|
|
}
|