summaryrefslogtreecommitdiffstats
path: root/src/include/map
blob: 97a122f5befd837e21f3fa4de586d52aae17ade9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
//  IBM_PROLOG_BEGIN_TAG
//  This is an automatically generated prolog.
//
//  $Source: src/include/map $
//
//  IBM CONFIDENTIAL
//
//  COPYRIGHT International Business Machines Corp. 2011
//
//  p1
//
//  Object Code Only (OCO) source materials
//  Licensed Internal Code Source Materials
//  IBM HostBoot Licensed Internal Code
//
//  The source code for this program is not published or other-
//  wise divested of its trade secrets, irrespective of what has
//  been deposited with the U.S. Copyright Office.
//
//  Origin: 30
//
//  IBM_PROLOG_END
#ifndef stl_map
#define stl_map

#include <stddef.h>

// Need this to compile outside hostboot env.
#if !defined( __STDC_LIMIT_MACROS)
#define __STDC_LIMIT_MACROS
#endif
#include <stdint.h>
#include <new>
#include <utility>
#include <list>
#include <functional>

namespace std
{

    /**
     * Simple map template class based on list
     * @Note  value_comp not supported.
     */
    template <typename Key, typename T, typename Compare = std::less<Key> >
        class map
    {
        public:

            typedef     Key                             key_type;
            typedef     T                               mapped_type;
            typedef     pair<const Key, T>              value_type;
            typedef     T&                              reference;
            typedef     const T&                        const_reference;
            typedef     ListIterator_t< value_type >   iterator;
            typedef     ListConstIterator_t< value_type > const_iterator;
//            typedef     MapIterator_t<Key,T>            iterator;
//            typedef     MapConstIterator_t<Key,T>       const_iterator;
            typedef     size_t                          size_type;
            typedef     Compare                         key_compare;
            

            /**
             * Default constructor
             */
            __attribute__ ((always_inline))
            explicit map(const key_compare& c = Compare()) : iv_comp(c) {}

            /**
             * Constructor
             * @param[in] first InputIterator
             * @param[in] last InputIterator
             */
            template <typename InputIterator> __attribute__ ((always_inline))
                map( InputIterator first, InputIterator last, const key_compare& c = Compare())
                    : iv_comp(c)
                { iv_list(first, last); }

            /**
             * Copy Constructor
             * @param i_x Source map
             */ 
            __attribute__ ((always_inline))
            map (const map<Key,T,Compare>& i_x)
            {
                iv_list(i_x.iv_list);
                iv_comp(i_x.iv_comp);
            }

            /**
             * Destructor
             */
            __attribute__ ((always_inline))
            ~map () {}

            /**
             * operator=
             * @param[in] x Source map
             */
            __attribute__ ((always_inline))
            map<Key,T, Compare> & operator= (const map<Key, T, Compare>& x)
            {
                iv_list = x.iv_list;
                iv_comp = x.iv_comp;
                return *this;
            }

            /**
             * Get iterator to the beginning element
             * @return iterator
             */
            __attribute__ ((always_inline))
            iterator begin() { return iv_list.begin(); }

            /**
             * Get iterator to the beginning element
             * @return const_iterator
             */
            __attribute__ ((always_inline))
            const_iterator begin() const { return iv_list.begin(); }

            /**
             * Get iterator to the last element + 1
             * @return iterator
             */
            __attribute__ ((always_inline))
            iterator end() { return iv_list.end(); }

            /**
             * Get iterator to the last element + 1
             * @return const_iterator
             */
            __attribute__ ((always_inline))
            const_iterator end() const { return iv_list.end(); }

            /**
             * Query empty container
             * @return true if container is empty otherwise false
             */
            __attribute__ ((always_inline))
            bool empty() const { return iv_list.empty(); }

            /**
             * Query number of elements in the container
             * @return number of elements in the container
             */
            __attribute__ ((always_inline))
            size_type size() const { return iv_list.size(); }

            /**
             * Max size of container
             * @return theoretical maximum size based on cpu word size
             */
            __attribute__ ((always_inline))
            size_type max_size() const { return UINT64_MAX/sizeof(T); }

            /**
             * operator[]
             * @param[in] x key, if it does not exist the it will be added
             * @return a reference to the element whos key is x
             */
            __attribute__ ((always_inline))
            T& operator[] (const key_type& k)
            {
                pair<iterator,bool> result = insert(value_type(k,T()));
                return (result.first)->second;
            }


            /**
             * Insert element
             * @param[in] x map key/value pair
             * @return std::pair.first is iterator pointing to new or existing element,
             *         std::pair.second is true if new element inserted, false if already existing.
             * @note won't add element if it's key already exists in the map
             */
            pair<iterator,bool> 
                insert (const value_type& x )
                {
                    iterator i = lower_bound(x.first);  // x.first <= i->first
                    if(i != end() && !key_comp()(x.first,i->first))      // x.first == i->first
                    {
                        return make_pair(i,false);
                    }

                    i = insert(i,x);
                    return make_pair(i,true);
                }


            /**
             * Insert element
             * @param[in] hint bidi iterator that is a hint to where to insert the element
             * @param[in] x map key/value to insert (copy in)
             * @return an iterator pointing to either the new or existing element
             * @note A good hint makes this very efficient.  A bad hint slows it down. An element
             * will never be inserted out of order. Will never insert if key already exists.
             */
            iterator 
                insert ( iterator hint, const value_type& x)
                {
                    iterator i = iv_list.begin();
                    if(hint != i) --hint;
                    if(hint != end() && key_comp()(hint->first,x.first)) // potential good hint
                    {
                        i = hint;
                    }
                    while(i != end() && key_comp()(i->first,x.first)) ++i;
                    // x.first <= i->first

                    if(i == end() || key_comp()(x.first, i->first))
                    {
                        i = iv_list.insert(i,x);
                    }
                    // else was already in the list
                    return i;
                }

            /**
             * Insert a range of new elements
             * @param[in] first InputIterator
             * @param[in] last InputIterator
             * @post Elements inserted
             */
            template <typename InputIterator>
                void insert( InputIterator first, InputIterator last )
                {
                    while(first != last)
                    {
                        insert(*first);
                        ++first;
                    }
                }

            /**
             * Remove an element from the container
             * @param position iterator
             * @post element pointed to by iterator is removed from the container
             */
            __attribute__ ((always_inline))
            void erase (iterator position )
            {
                iv_list.erase(position);
            }

            /**
             * Remove an element from the container by key
             * @param x key of element to remove
             * @return Number of elements removed. For map, 0 or 1.
             */
            size_type erase (const key_type& k)
            {
                size_type result = 0;
                iterator i = find(k);
                if(i != end())
                {
                    erase(i);
                    result = 1;
                }
                return result;
            }

            /**
             * Remove a range of elements from the container
             * @param first iterator of elment to remove
             * @param last iterator of element to remove + 1
             */
            __attribute__ ((always_inline))
            void erase (iterator first, iterator last)
            {
                iv_list.erase(first,last);
            }

            /**
             * Swap this container with another
             * @param[in] mp the other container
             */
            __attribute__ ((always_inline))
            void swap(map<Key,T, Compare>& mp)
            {
                iv_list.swap(mp.iv_list);
                std::swap(iv_comp,mp.iv_comp);               
            }

            /**
             * clear the map
             */
            __attribute__ ((always_inline))
            void clear() { iv_list.clear(); }
            
            //Observers
            /**
             * Returns the key comparison object from which the map was constructed
             * @return Compare
             */
            key_compare key_comp() const { return iv_comp; }

            /**
             * returns a value comparison object, built from the key comparison
             * @return value_compare
             * @note not supported!
             */
            // value_compare value_comp () const;

            /**
             * Find an element
             * @param[in] k element key
             * @return iterator to element or end() if not found
             */
            iterator find (const key_type& k)
            {
                iterator i = lower_bound(k);
                if(i != end())
                {
                    if(key_comp()(k, i->first))
                    {
                        i = end();
                    }
                }
                return i;
            }

            /**
             * Find an element
             * @param[in] k element key
             * @return const_iterator to element or end() if not found
             */
            __attribute__ ((always_inline))
            const_iterator find( const key_type& k) const
            {
                const_iterator i = lower_bound(k);
                if(i != end())
                {
                    if(key_comp()(k, i->first))
                    {
                        i = end();
                    }
                }
                return i;
            }

            /**
             * Number of elements in the container with the given key
             * @param[in] k key
             * @return number of elements that match key. For map this is 0 or 1
             */
            __attribute__ ((always_inline))
            size_type count (const key_type& k) const
            {
                if(find(k) != end())
                    return 1;
                return 0;
            }

            /**
             * Return an iterator pointing to the first element in the
             *   container whose key does not compare less than k.
             * @param[in] k key
             * @return iterator
             */
            iterator lower_bound (const key_type& k)
            {
                iterator i = iv_list.begin();
                while(i != end() && key_comp()(i->first,k)) ++i;
                return i;
            }



            /**
             * Return a const_iterator pointing to the first element in the
             *   container whose key does not compare less than k.
             * @param[in] k key
             * @return const_iterator
             */
            __attribute__ ((always_inline))
            const_iterator lower_bound (const key_type& k) const
            {
                const_iterator i = iv_list.begin();
                while( i != end() && key_comp()(i->first,k)) ++i;
                return i;
            }

            /**
             * Returns an iterator pointing to the first element in the
             *   container whose key compares > k
             * @param[in] k key
             * @return iterator
             */
            iterator upper_bound (const key_type& k)
            {
                iterator i = lower_bound(k);  // k <= i->first
                if(i != end() && !key_comp()(k,i->first)) ++i; // k == i->first
                return i;
            }

            /**
             * Returns a const_iterator pointing to the first element in the
             *   container whose key compares > k
             * @param[in] k key
             * @return const_iterator
             */
            __attribute__ ((always_inline))
            const_iterator upper_bound (const key_type& k) const
            {
                const_iterator i = lower_bound(); // k <= i->first
                if(i != end() && !key_comp()(k,i->first)) ++i;     // k == i->first
                return i;
            }

            /**
             * Return the bounds of a range that includes all the elements in
             *   the continer with a key that compares equal to k.
             * @param k key
             * @return pair of iterators
             * @note map does not allow duplicate keys, so
             * the range returned will contain at most one element
             */
            pair<iterator,iterator>
                equal_range( const key_type& k)
                {
                    return make_pair(lower_bound(k),upper_bound(k));
                }

            /**
             * Const verstion of equal_range - see equal_range above
             */
            pair<const_iterator, const_iterator>
                equal_range( const key_type& k) const
                {
                    return make_pair(lower_bound(k),upper_bound(k));
                }

        protected:

            key_compare iv_comp;    //!< Compare function/class

        private:  // data

            list<value_type> iv_list;           //!< The implementation
    };
};

#endif    
    

OpenPOWER on IntegriCloud