OSDN Git Service

8985ec261ecf4ccc8e01389bfcf9cad9dcfd8f70
[qt-creator-jp/qt-creator-jp.git] / share / qtcreator / gdbmacros / gdbmacros_p.h
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #ifndef GDBMACROS_P_H
35 #define GDBMACROS_P_H
36
37 #include <QtCore/QObject>
38 #include <QtCore/QPointer>
39
40 #ifndef QT_BOOTSTRAPPED
41
42 #undef NS
43 #ifdef QT_NAMESPACE
44 #   define STRINGIFY0(s) #s
45 #   define STRINGIFY1(s) STRINGIFY0(s)
46 #   define NS STRINGIFY1(QT_NAMESPACE) "::"
47 #   define NSX "'" STRINGIFY1(QT_NAMESPACE) "::"
48 #   define NSY "'"
49 #else
50 #   define NS ""
51 #   define NSX "'"
52 #   define NSY "'"
53 #endif
54
55 #if defined(QT_BEGIN_NAMESPACE)
56 QT_BEGIN_NAMESPACE
57 #endif
58
59 struct Sender { QObject *sender; int signal; int ref; };
60
61 #if QT_VERSION < 0x040600
62 struct Connection
63 {
64     QObject *receiver;
65     int method;
66     uint connectionType : 3; // 0 == auto, 1 == direct, 2 == queued, 4 == blocking
67     QBasicAtomicPointer<int> argumentTypes;
68 };
69
70 typedef QList<Connection> ConnectionList;
71 typedef QList<Sender> SenderList;
72
73 static inline const Connection &connectionAt(const ConnectionList &l, int i) { return l.at(i); }
74 static inline const QObject *senderAt(const SenderList &l, int i) { return l.at(i).sender; }
75 static inline int signalAt(const SenderList &l, int i) { return l.at(i).signal; }
76 #else
77 struct Connection
78 {
79     QObject *sender;
80     QObject *receiver;
81     int method;
82     uint connectionType : 3; // 0 == auto, 1 == direct, 2 == queued, 4 == blocking
83     QBasicAtomicPointer<int> argumentTypes;
84     Connection *nextConnectionList;
85     //senders linked list
86     Connection *next;
87     Connection **prev;
88 };
89
90 struct ConnectionList
91 {
92     ConnectionList() : first(0), last(0) { }
93     int size() const
94     {
95         int count = 0;
96         for (Connection *c = first; c != 0; c = c->nextConnectionList)
97             ++count;
98         return count;
99     }
100
101     Connection *first;
102     Connection *last;
103 };
104
105 typedef Connection *SenderList;
106
107 static inline const Connection &connectionAt(const ConnectionList &l, int i)
108 {
109     Connection *conn = l.first;
110     for (int cnt = 0; cnt < i; ++cnt)
111         conn = conn->nextConnectionList;
112     return *conn;
113 }
114 #endif
115
116 class ObjectPrivate : public QObjectData
117 {
118 public:
119     ObjectPrivate() {}
120     virtual ~ObjectPrivate() {}
121
122 #if QT_VERSION < 0x040600
123     QList<QObject *> pendingChildInsertedEvents;
124     void *threadData;
125     void *currentSender;
126     void *currentChildBeingDeleted;
127     QList<QPointer<QObject> > eventFilters;
128
129     void *extraData;
130     mutable quint32 connectedSignals;
131     QString objectName;
132
133     void *connectionLists;
134     SenderList senders;
135     int *deleteWatch;
136 #else
137     QString objectName;
138     void *extraData;
139     void *threadData;
140     void *connectionLists;
141     SenderList senders;
142     void *currentSender;
143     mutable quint32 connectedSignals[2];
144     QList<QObject *> pendingChildInsertedEvents;
145     QList<QPointer<QObject> > eventFilters;
146     void *currentChildBeingDeleted;
147     QAtomicPointer<void> sharedRefcount;
148     int *deleteWatch;
149 #endif
150 };
151
152 #endif // QT_BOOTSTRAPPED
153
154 #if defined(QT_BEGIN_NAMESPACE)
155 QT_END_NAMESPACE
156 #endif
157
158 #endif // GDBMACROS_P_H