790043b60c70dd73bf4fc9522dd71298f5993176
[platform/core/uifw/dali-core.git] / dali / public-api / object / property-array.h
1 #ifndef __DALI_PROPERTY_ARRAY_H__
2 #define __DALI_PROPERTY_ARRAY_H__
3
4 /*
5  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <string>
23
24 // INTERNAL INCLUDES
25 #include <dali/public-api/common/dali-common.h>
26 #include <dali/public-api/object/property-value.h>
27 #include <dali/public-api/object/property.h>
28
29 namespace Dali
30 {
31 /**
32  * @addtogroup dali_core_object
33  * @{
34  */
35
36 /**
37  * @brief A Array of property values.
38  * @SINCE_1_0.0
39  */
40 class DALI_IMPORT_API Property::Array
41 {
42 public:
43
44   typedef std::size_t SizeType;
45
46   /**
47    * @brief Default constructor.
48    * @SINCE_1_0.0
49    */
50   Array();
51
52   /**
53    * @brief Copy Constructor.
54    *
55    * @SINCE_1_0.0
56    * @param[in] other The Array to copy from.
57    */
58   Array( const Array& other );
59
60   /**
61    * @brief Non-virtual destructor.
62    * @SINCE_1_0.0
63    */
64   ~Array();
65
66   /**
67    * @brief Retrieve the number of elements in the array.
68    *
69    * @SINCE_1_0.0
70    * @return The number of elements in the array.
71    */
72   SizeType Size() const
73   {
74     return Count();
75   }
76
77   /**
78    * @brief Retrieve the number of elements in the array.
79    *
80    * @SINCE_1_0.0
81    * @return The number of elements in the array.
82    */
83   SizeType Count() const;
84
85   /**
86    * @brief Returns whether the array is empty.
87    *
88    * @SINCE_1_0.0
89    * @return true if empty, false otherwise
90    */
91   bool Empty() const
92   {
93     return Count() == 0;
94   }
95
96   /**
97    * @brief Clears the array.
98    * @SINCE_1_0.0
99    */
100   void Clear();
101
102   /**
103    * @brief Increase the capcity of the array.
104    * @SINCE_1_0.0
105    * @param[in] size The size to reserve
106    */
107   void Reserve( SizeType size );
108
109   /**
110    * @brief Resize to size.
111    * @SINCE_1_0.0
112    * @param[in] size The size to resize
113    */
114   void Resize( SizeType size );
115
116   /**
117    * @brief Retrieve the capacity of the array.
118    *
119    * @SINCE_1_0.0
120    * @return The allocated capacity of the array
121    */
122   SizeType Capacity();
123
124   /**
125    * @brief Add an element to the array.
126    *
127    * @SINCE_1_0.0
128    * @param[in] value The value to add to the end of the array
129    */
130   void PushBack( const Value& value );
131
132   /**
133    * @brief Const access an element.
134    *
135    * @SINCE_1_0.0
136    * @param[in] index The element index to access. No bounds checking is performed.
137    *
138    * @return The a reference to the element.
139    */
140   const Value& GetElementAt( SizeType index ) const
141   {
142     return operator[]( index );
143   }
144
145   /**
146    * @brief Access an element.
147    *
148    * @SINCE_1_0.0
149    * @param[in] index The element index to access. No bounds checking is performed.
150    *
151    * @return The a reference to the element.
152    */
153   Value& GetElementAt( SizeType index )
154   {
155     return operator[]( index );
156   }
157
158   /**
159    * @brief Const operator to access an element.
160    *
161    * @SINCE_1_0.0
162    * @param[in] index The element index to access. No bounds checking is performed.
163    *
164    * @return The a reference to the element.
165    *
166    */
167   const Value& operator[]( SizeType index ) const;
168
169   /**
170    * @brief Operator to access an element.
171    *
172    * @SINCE_1_0.0
173    * @param[in] index The element index to access. No bounds checking is performed.
174    *
175    * @return The a reference to the element.
176    *
177    */
178   Value& operator[]( SizeType index );
179
180   /**
181    * @brief Assignment Operator
182    *
183    * @SINCE_1_0.0
184    * @param[in] other The array to copy from.
185    *
186    * @return The copied array.
187    */
188   Array& operator=( const Array& other );
189
190   /**
191    * @brief output to stream
192    * @SINCE_1_1.28
193    */
194   friend std::ostream& operator<<( std::ostream& stream, const Property::Array& array );
195
196 private:
197   struct DALI_INTERNAL Impl; ///< Private data
198   Impl* mImpl; ///< Pointer to private data
199 };
200
201 /**
202  * @brief Convert the values of the property array into a string and append to an output stream.
203  *
204  * @SINCE_1_1.28
205  * @param [in] stream The output stream operator.
206  * @param [in] array The array to insert
207  * @return The output stream operator.
208  */
209 DALI_IMPORT_API std::ostream& operator<<( std::ostream& stream, const Property::Array& array );
210
211 /**
212  * @}
213  */
214 } // namespace Dali
215
216 #endif // __DALI_PROPERTY_ARRAY_H__