xref: /aoo41x/main/sw/qa/core/bigpointerarray-new.hxx (revision cdf0e10c)
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir #ifndef _BPARR_HXX
29*cdf0e10cSrcweir #define _BPARR_HXX
30*cdf0e10cSrcweir 
31*cdf0e10cSrcweir #include <tools/solar.h>
32*cdf0e10cSrcweir #include <tools/debug.hxx>
33*cdf0e10cSrcweir 
34*cdf0e10cSrcweir #include <deque>
35*cdf0e10cSrcweir 
36*cdf0e10cSrcweir class BigPtrArray;
37*cdf0e10cSrcweir 
38*cdf0e10cSrcweir /** Base class for container entries
39*cdf0e10cSrcweir */
40*cdf0e10cSrcweir class BigPtrEntry
41*cdf0e10cSrcweir {
42*cdf0e10cSrcweir 	friend class BigPtrArray;
43*cdf0e10cSrcweir 	BigPtrArray* pBigPtrArray_;
44*cdf0e10cSrcweir     sal_uLong pos_;
45*cdf0e10cSrcweir 
46*cdf0e10cSrcweir protected:
47*cdf0e10cSrcweir 	BigPtrEntry() : pBigPtrArray_(0), pos_(0)
48*cdf0e10cSrcweir     {}
49*cdf0e10cSrcweir 
50*cdf0e10cSrcweir 	virtual ~BigPtrEntry()
51*cdf0e10cSrcweir     {}
52*cdf0e10cSrcweir 
53*cdf0e10cSrcweir 	sal_uLong GetPos() const
54*cdf0e10cSrcweir     {
55*cdf0e10cSrcweir         return pos_;
56*cdf0e10cSrcweir     }
57*cdf0e10cSrcweir 
58*cdf0e10cSrcweir 	BigPtrArray& GetArray() const
59*cdf0e10cSrcweir     {
60*cdf0e10cSrcweir         return *pBigPtrArray_;
61*cdf0e10cSrcweir     }
62*cdf0e10cSrcweir };
63*cdf0e10cSrcweir 
64*cdf0e10cSrcweir typedef BigPtrEntry* ElementPtr;
65*cdf0e10cSrcweir typedef sal_Bool (*FnForEach)(const ElementPtr&, void* pArgs);
66*cdf0e10cSrcweir 
67*cdf0e10cSrcweir /** A container abstraction
68*cdf0e10cSrcweir */
69*cdf0e10cSrcweir class BigPtrArray
70*cdf0e10cSrcweir {
71*cdf0e10cSrcweir public:
72*cdf0e10cSrcweir     typedef std::deque<ElementPtr> Container_t;
73*cdf0e10cSrcweir 
74*cdf0e10cSrcweir public:
75*cdf0e10cSrcweir     /**
76*cdf0e10cSrcweir     */
77*cdf0e10cSrcweir 	BigPtrArray();
78*cdf0e10cSrcweir 
79*cdf0e10cSrcweir     /** Return the number of entries inserted
80*cdf0e10cSrcweir         into the array
81*cdf0e10cSrcweir     */
82*cdf0e10cSrcweir 	sal_uLong Count() const;
83*cdf0e10cSrcweir 
84*cdf0e10cSrcweir     /** Insert an Element into the array at a certain
85*cdf0e10cSrcweir         position
86*cdf0e10cSrcweir 
87*cdf0e10cSrcweir         @param rElem
88*cdf0e10cSrcweir         [in] the element
89*cdf0e10cSrcweir 
90*cdf0e10cSrcweir         @param pos
91*cdf0e10cSrcweir         [in] the position where to insert the element.
92*cdf0e10cSrcweir 
93*cdf0e10cSrcweir         @pre (pos >= 0 && pos <= BigPtrArray.Count())
94*cdf0e10cSrcweir         @post (((oldCount + 1) == BigPtrArray.Count()) && BigPtrArray[pos] == rElem)
95*cdf0e10cSrcweir     */
96*cdf0e10cSrcweir 	void Insert(const ElementPtr& rElem, sal_uLong pos);
97*cdf0e10cSrcweir 
98*cdf0e10cSrcweir     /** Remove a specified number of elements starting at a certain position.
99*cdf0e10cSrcweir 
100*cdf0e10cSrcweir         @param pos
101*cdf0e10cSrcweir         [in] the position where to start removing elements
102*cdf0e10cSrcweir 
103*cdf0e10cSrcweir         @param n
104*cdf0e10cSrcweir         [in] the number of elements to remove
105*cdf0e10cSrcweir 
106*cdf0e10cSrcweir         @pre (pos < BigPtrArray.Count() && n <= BigPtrArray.Count())
107*cdf0e10cSrcweir         @post ((oldCount - n) == BigPtrArray.Count())
108*cdf0e10cSrcweir     */
109*cdf0e10cSrcweir 	void Remove(sal_uLong pos, sal_uLong n = 1);
110*cdf0e10cSrcweir 
111*cdf0e10cSrcweir     /** Move an entry from a certain position to another on.
112*cdf0e10cSrcweir 
113*cdf0e10cSrcweir         @param from
114*cdf0e10cSrcweir         [in]
115*cdf0e10cSrcweir 
116*cdf0e10cSrcweir         @param to
117*cdf0e10cSrcweir         [in]
118*cdf0e10cSrcweir     */
119*cdf0e10cSrcweir 	void Move(sal_uLong fromPos, sal_uLong toPos);
120*cdf0e10cSrcweir 
121*cdf0e10cSrcweir     /** Replace an entry at a certain position
122*cdf0e10cSrcweir 
123*cdf0e10cSrcweir         @param pos
124*cdf0e10cSrcweir         [in] the position of the entry
125*cdf0e10cSrcweir 
126*cdf0e10cSrcweir         @param rElem
127*cdf0e10cSrcweir         [in] the new entry
128*cdf0e10cSrcweir 
129*cdf0e10cSrcweir         @pre pos < BigPtrArray.Count()
130*cdf0e10cSrcweir         @post (oldCount == BigPtrArray.Count() && BigPtrArray[pos] == rElem)
131*cdf0e10cSrcweir     */
132*cdf0e10cSrcweir 	void Replace(sal_uLong pos, const ElementPtr& rElem);
133*cdf0e10cSrcweir 
134*cdf0e10cSrcweir     /** Get the entry at a certain index
135*cdf0e10cSrcweir 
136*cdf0e10cSrcweir         @param pos
137*cdf0e10cSrcweir         [in] the position of the entry
138*cdf0e10cSrcweir 
139*cdf0e10cSrcweir         @pre pos < BigPtrArray.Count()
140*cdf0e10cSrcweir     */
141*cdf0e10cSrcweir 	ElementPtr operator[](sal_uLong pos) const;
142*cdf0e10cSrcweir 
143*cdf0e10cSrcweir     /**
144*cdf0e10cSrcweir     */
145*cdf0e10cSrcweir 	void ForEach(FnForEach fn, void* pArgs = NULL);
146*cdf0e10cSrcweir 
147*cdf0e10cSrcweir     /**
148*cdf0e10cSrcweir     */
149*cdf0e10cSrcweir 	void ForEach(sal_uLong fromPos, sal_uLong toPos, FnForEach fn, void* pArgs = NULL);
150*cdf0e10cSrcweir 
151*cdf0e10cSrcweir private:
152*cdf0e10cSrcweir 
153*cdf0e10cSrcweir     void FixElementIndizes(Container_t::const_iterator begin, Container_t::const_iterator end) const;
154*cdf0e10cSrcweir 
155*cdf0e10cSrcweir private:
156*cdf0e10cSrcweir     Container_t container_;
157*cdf0e10cSrcweir };
158*cdf0e10cSrcweir 
159*cdf0e10cSrcweir #endif
160