summaryrefslogtreecommitdiffstats
path: root/src/core/doc
diff options
context:
space:
mode:
authorSean Harmer <sean.harmer@kdab.com>2014-04-11 09:09:54 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-04-17 10:40:54 +0200
commitc7ce596dbd3d465c0d0c83b1e020e5eaae32892d (patch)
tree2120ba94170bb4ddf710a4f5a734ba80df497c1a /src/core/doc
parent0fb05e7f6fa326f9e8821e33a0aef1df3c6a55b9 (diff)
Add QCircularBuffer and test
This is different to QtCore's QRingBuffer. QRingBuffer deals with raw bytes with a non-contiguous list of QByteArrays. QCircularBuffer is strongly typed and the data is guaranteed to be stored in a contiguous block of memory. Although the start/end of the buffer may not correspond to the start/end of the block of memory once it has reached capacity and wraps around. Done-with: Andreas Hartmetz and Marc Mutz Change-Id: Id03ad308b13fb359604d19474d892ff22c1e9b93 Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
Diffstat (limited to 'src/core/doc')
-rw-r--r--src/core/doc/src/snippets/code/src_core_qcircularbuffer.cpp235
1 files changed, 235 insertions, 0 deletions
diff --git a/src/core/doc/src/snippets/code/src_core_qcircularbuffer.cpp b/src/core/doc/src/snippets/code/src_core_qcircularbuffer.cpp
new file mode 100644
index 000000000..146ef3d53
--- /dev/null
+++ b/src/core/doc/src/snippets/code/src_core_qcircularbuffer.cpp
@@ -0,0 +1,235 @@
+/****************************************************************************
+**
+** Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the Qt3D module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** 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 Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/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 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Digia gives you certain additional
+** rights. These rights are described in the Digia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 3.0 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 3.0 requirements will be
+** met: http://www.gnu.org/copyleft/gpl.html.
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+//! [0]
+QCircularBuffer<int> integerBuffer;
+QCircularBuffer<QString> stringBuffer;
+//! [0]
+
+
+//! [1]
+QCircularBuffer<QString> circ(200);
+//! [1]
+
+
+//! [2]
+QCircularBuffer<QString> circ(200, "Pass");
+//! [2]
+
+
+//! [3]
+QCircularBuffer<QString> circ(200, 50, "Qt");
+//! [3]
+
+
+//! [4]
+if (circ[0] == "Izzie")
+ circ[0] = "Elizabeth";
+//! [4]
+
+
+//! [5]
+for (int i = 0; i < circ.size(); ++i) {
+ if (circ.at(i) == "Jack")
+ cout << "Found Jack at position " << i << endl;
+ }
+//! [5]
+
+
+//! [6]
+// Create a circular buffer with capacity for 3 integers
+QCircularBuffer<int> circ(3);
+
+// Insert some items into the buffer
+circ.append( 1 );
+circ.append( 2 );
+circ.append( 3 );
+
+for (int i = 0; i < circ.size(); ++i) {
+ cout << circ.at(i) << endl;
+ } // Prints out 1 2 3
+
+// The circular buffer is now full. Appending subsequent items
+// will overwrite the oldest items:
+circ.append(4); // Overwrite 1 with 4
+circ.append(5); // Overwrite 2 with 5
+
+// The buffer now contains 3, 4 and 5
+
+for (int i = 0; i < circ.size(); ++i) {
+ cout << circ.at(i) << endl;
+ } // Prints out 3 4 5
+//! [6]
+
+
+//! [7]
+int i = circ.indexOf("Tom");
+if (i != -1)
+ cout << "First occurrence of Tom is at position " << i << endl;
+//! [7]
+
+
+//! [8]
+QCircularBuffer<QString> circ(3);
+circ.append("one");
+circ.append("two");
+circ.append("three");
+// circ: ["one", "two", "three"]
+
+circ.append("four");
+// circ: ["two", "three", "four"]
+
+circ.append("five");
+// circ: ["three", "four", "five"]
+
+circ.append("six");
+// circ: ["four", "five", "six"]
+//! [8]
+
+
+//! [9]
+QCircularBuffer<int> circ(10, 0);
+QCircularBuffer<int>::array_range data = circ.data();
+for (int i = 0; i < data.second; ++i)
+ data.first[i] = 2 * i;
+//! [9]
+
+
+//! [10]
+QCircularBuffer<QString> circ(3);
+circ.prepend("one");
+circ.prepend("two");
+circ.prepend("three");
+// circ: ["three", "two", "one"]
+
+circ.prepend("four");
+// circ: ["four", "three", "two"]
+//! [10]
+
+
+//! [11]
+QCircularBuffer<QString> circ(5);
+circ << "alpha" << "beta" << "delta";
+circ.insert(2, "gamma");
+// circ: ["alpha", "beta", "gamma", "delta"]
+//! [11]
+
+//! [12]
+QCircularBuffer<int> circ(6);
+circ << 1 << 2 << 3 << 4; // circ: [1, 2, 3, 4]
+circ.insert(2, 5, 0);
+// circ: [0, 0, 0, 0, 3, 4]
+//! [12]
+
+
+//! [13]
+QVector<double> vector;
+vector << 2.718 << 1.442 << 0.4342;
+vector.insert(1, 3, 9.9);
+// vector: [2.718, 9.9, 9.9, 9.9, 1.442, 0.4342]
+//! [13]
+
+
+//! [14]
+QCircularBuffer<QString> circ(3, 3, "No");
+circ.fill("Yes");
+// circ: ["Yes", "Yes", "Yes"]
+
+circ.fill("oh", 5);
+// circ: ["oh", "oh", "oh", "oh", "oh"]
+//! [14]
+
+
+//! [15]
+QCircularBuffer<QString> circ(5);
+circ << "A" << "B" << "C" << "B" << "A";
+circ.indexOf("B"); // returns 1
+circ.indexOf("B", 1); // returns 1
+circ.indexOf("B", 2); // returns 3
+circ.indexOf("X"); // returns -1
+//! [15]
+
+
+//! [16]
+QCircularBuffer<QString> circ;
+circ << "A" << "B" << "C" << "B" << "A";
+circ.lastIndexOf("B"); // returns 3
+circ.lastIndexOf("B", 3); // returns 3
+circ.lastIndexOf("B", 2); // returns 1
+circ.lastIndexOf("X"); // returns -1
+//! [16]
+
+
+//! [17]
+QCircularBuffer<QString> circ;
+circ << "red" << "green" << "blue" << "black";
+
+QList<QString> list = circ.toList();
+// list: ["red", "green", "blue", "black"]
+//! [17]
+
+
+//! [18]
+QStringList list;
+list << "Sven" << "Kim" << "Ola";
+
+QCircularBuffer<QString> circ = QCircularBuffer<QString>::fromList(list);
+// circ: ["Sven", "Kim", "Ola"]
+//! [18]
+
+
+//! [19]
+QCircularBuffer<int> circ(6);
+circ << 1 << 2 << 3 << 4 << 5;
+// circ: [1, 2, 3, 4, 5]
+//! [19]
+
+
+//! [20]
+circ.append(6);
+// circ: [1, 2, 3, 4, 5, 6]
+//! [20]
+
+
+//! [21]
+circ.append(7);
+// circ: [2, 3, 4, 5, 6, 7]
+//! [21]