summaryrefslogtreecommitdiffstats
path: root/src/imports/opcua/opcuawriteresult.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/opcua/opcuawriteresult.cpp')
-rw-r--r--src/imports/opcua/opcuawriteresult.cpp161
1 files changed, 161 insertions, 0 deletions
diff --git a/src/imports/opcua/opcuawriteresult.cpp b/src/imports/opcua/opcuawriteresult.cpp
new file mode 100644
index 0000000..6e75ed8
--- /dev/null
+++ b/src/imports/opcua/opcuawriteresult.cpp
@@ -0,0 +1,161 @@
+/****************************************************************************
+**
+** Copyright (C) 2019 The Qt Company Ltd.
+** Contact: http://www.qt.io/licensing/
+**
+** This file is part of the Qt OPC UA module.
+**
+** $QT_BEGIN_LICENSE:LGPL3$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see http://www.qt.io/terms-conditions. For further
+** information use the contact form at http://www.qt.io/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 3 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPLv3 included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 3 requirements
+** will be met: https://www.gnu.org/licenses/lgpl.html.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 2.0 or later as published by the Free
+** Software Foundation and appearing in the file LICENSE.GPL included in
+** the packaging of this file. Please review the following information to
+** ensure the GNU General Public License version 2.0 requirements will be
+** met: http://www.gnu.org/licenses/gpl-2.0.html.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include "opcuawriteresult.h"
+#include "universalnode.h"
+#include <QOpcUaWriteResult>
+#include <QOpcUaClient>
+#include <qopcuatype.h>
+
+QT_BEGIN_NAMESPACE
+
+/*!
+ \qmltype WriteResult
+ \inqmlmodule QtOpcUa
+ \brief Contains result data after writing to the server.
+ \since QtOpcUa 5.13
+
+ This type is used to pass the results after writing to the server using the function
+ \l Connection::writeNodeAttributes.
+
+ \sa WriteItem
+*/
+
+/*!
+ \qmlproperty Constants.NodeAttribute WriteResult::attribute
+ \readonly
+
+ The node attribute of data that was written.
+*/
+
+/*!
+ \qmlproperty string WriteResult::indexRange
+ \readonly
+
+ The index range of the data that was written.
+*/
+
+/*!
+ \qmlproperty string WriteResult::nodeId
+ \readonly
+
+ The node id of the node that was written.
+*/
+
+/*!
+ \qmlproperty string WriteResult::namespaceName
+ \readonly
+
+ The namespace name of the node that was written.
+*/
+
+/*!
+ \qmlproperty Status WriteResult::status
+ \readonly
+
+ Result status of this WriteResult.
+ If the write request was successful the status is \l Status.Good.
+*/
+
+class OpcUaWriteResultData : public QSharedData
+{
+public:
+ OpcUaStatus status;
+ QOpcUa::NodeAttribute attribute;
+ QString indexRange;
+ QString nodeId;
+ QString namespaceName;
+};
+
+OpcUaWriteResult::OpcUaWriteResult()
+ : data(new OpcUaWriteResultData)
+{
+ data->attribute = QOpcUa::NodeAttribute::None;
+}
+
+OpcUaWriteResult::OpcUaWriteResult(const OpcUaWriteResult &other)
+ : data(other.data)
+{
+}
+
+OpcUaWriteResult::OpcUaWriteResult(const QOpcUaWriteResult &other, const QOpcUaClient *client)
+ : data(new OpcUaWriteResultData)
+{
+ data->status = OpcUaStatus(other.statusCode());
+ data->attribute = other.attribute();
+ data->indexRange = other.indexRange();
+
+ int namespaceIndex = -1;
+ UniversalNode::splitNodeIdAndNamespace(other.nodeId(), &namespaceIndex, &data->nodeId);
+ data->namespaceName = client->namespaceArray().at(namespaceIndex);
+}
+
+OpcUaWriteResult &OpcUaWriteResult::operator=(const OpcUaWriteResult &rhs)
+{
+ if (this != &rhs)
+ data.operator=(rhs.data);
+ return *this;
+}
+
+OpcUaWriteResult::~OpcUaWriteResult() = default;
+
+const QString &OpcUaWriteResult::indexRange() const
+{
+ return data->indexRange;
+}
+
+const QString &OpcUaWriteResult::nodeId() const
+{
+ return data->nodeId;
+}
+
+QOpcUa::NodeAttribute OpcUaWriteResult::attribute() const
+{
+ return data->attribute;
+}
+
+const QString &OpcUaWriteResult::namespaceName() const
+{
+ return data->namespaceName;
+}
+
+OpcUaStatus OpcUaWriteResult::status() const
+{
+ return data->status;
+}
+
+QT_END_NAMESPACE
+