1e5ec1970f982b323137d3f244b00f9c6e73bf9b
[profile/ivi/qtdeclarative.git] / tests / benchmarks / declarative / holistic / data / jsTargets / JsTwo.qml
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: http://www.qt-project.org/
6 **
7 ** This file is part of the test suite of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 import QtQuick 1.0
43
44 Item {
45     id: root
46     property int dynamicWidth: 10
47     property int widthSignaledProperty: 20
48
49     Rectangle {
50         width: 100
51         height: 50
52         color: "red"
53         border.color: "black"
54         border.width: 5
55         radius: 10
56     }
57
58     function calculateFirstFactor(seedValue) {
59         var firstFactor = (0.45 * (9.3 / 3.1) - 0.90);
60         firstFactor *= (1 + (0.00001 / seedValue));
61         return firstFactor;
62     }
63
64     function calculateSecondFactor(seedValue) {
65         var secondFactor = 0.78 * (6.3 / 2.1) - (0.39 * 4);
66         secondFactor *= (1 + (0.00001 / seedValue));
67         return secondFactor;
68     }
69
70     function calculateModificationTerm(seedValue) {
71         var modificationTerm = (12 + (9*7) - 54 + 16 - ((root.calculateFirstFactor(seedValue + 0.3) * seedValue) / 3) + (4*root.calculateSecondFactor(seedValue+2) * seedValue * 1.33)) + (root.calculateSecondFactor(seedValue+1) * seedValue);
72         modificationTerm = modificationTerm + (33/2) + 19 - (9*2) - (61*3) + 177;
73         return modificationTerm;
74     }
75
76     onDynamicWidthChanged: {
77         // do a bit of maths
78         var firstFactor = root.calculateFirstFactor(8);
79         var secondFactor = root.calculateSecondFactor(dynamicWidth / firstFactor);
80         var modificationTerm = root.calculateModificationTerm(dynamicWidth / secondFactor);
81
82         // do some regexp matching
83         var someString = "This is a random string which we'll perform regular expression matching on to reduce considerably.  This is meant to be part of a complex javascript expression whose evaluation takes considerably longer than the creation cost of QScriptValue.";
84         var regexpPattern = new RegExp("is", "i");
85         var regexpOutputLength = 0;
86         var temp = regexpPattern.exec(someString);
87         while (temp == "is") {
88             regexpOutputLength += 4;
89             regexpOutputLength *= 2;
90             temp = regexpPattern.exec(someString);
91             if (regexpOutputLength > (dynamicWidth * 3)) {
92                 temp = "break";
93             }
94         }
95
96         // spin in a for loop for a while
97         var i = 0;
98         var j = 0;
99         var cumulativeTotal = 3;
100         for (i = 20; i > 1; i--) {
101             for (j = 31; j > 5; j--) {
102                 var branchVariable = i + j;
103                 if (branchVariable % 3 == 0) {
104                     cumulativeTotal -= secondFactor;
105                 } else {
106                     cumulativeTotal += firstFactor;
107                 }
108
109                 if (cumulativeTotal > (dynamicWidth * 50)) {
110                     break;
111                 }
112             }
113         }
114
115         // and update the property
116         widthSignaledProperty = (dynamicWidth + (20/4) + 7 - 1) * modificationTerm + regexpOutputLength - (cumulativeTotal / 73);
117     }
118 }