This file is indexed.

/usr/include/xmltooling/util/XMLObjectChildrenList.h is in libxmltooling-dev 1.6.4-1ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
/**
 * Licensed to the University Corporation for Advanced Internet
 * Development, Inc. (UCAID) under one or more contributor license
 * agreements. See the NOTICE file distributed with this work for
 * additional information regarding copyright ownership.
 *
 * UCAID licenses this file to you under the Apache License,
 * Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the
 * License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
 * either express or implied. See the License for the specific
 * language governing permissions and limitations under the License.
 */

/**
 * @file xmltooling/util/XMLObjectChildrenList.h
 * 
 * STL-compatible container wrapper.
 */

#ifndef __xmltooling_list_h__
#define __xmltooling_list_h__

#include <xmltooling/exceptions.h>
#include <xmltooling/XMLObject.h>

#include <list>

/**
 * Shorthand for an XMLObjectChildrenList wrapped around a vector
 * 
 * @param type  the type of object in the vector
 */
#define VectorOf(type) xmltooling::XMLObjectChildrenList< std::vector<type*> >

/**
 * Shorthand for an XMLObjectChildrenList wrapped around a list
 * 
 * @param type  the type of object in the list
 */
#define ListOf(type) xmltooling::XMLObjectChildrenList< std::list<type*> >

/**
 * Shorthand for an XMLObjectChildrenList wrapped around a deque
 * 
 * @param type  the type of object in the deque
 */
#define DequeOf(type) xmltooling::XMLObjectChildrenList< std::deque<type*> >

/**
 * Shorthand for an XMLObjectPairList wrapped around a vector
 * 
 * @param type1  the first type of object in the vector
 * @param type2  the second type of object in the vector
 */
#define VectorOfPairs(type1,type2) xmltooling::XMLObjectPairList< std::vector< std::pair<type1*,type2*> > >

/**
 * Shorthand for an XMLObjectPairList wrapped around a list
 * 
 * @param type1  the first type of object in the vector
 * @param type2  the second type of object in the vector
 */
#define ListOfPairs(type1,type2) xmltooling::XMLObjectPairList< std::list< std::pair<type1*,type2*> > >

/**
 * Shorthand for an XMLObjectPairList wrapped around a deque
 * 
 * @param type1  the first type of object in the vector
 * @param type2  the second type of object in the vector
 */
#define DequeOfPairs(type1,type2) xmltooling::XMLObjectPairList< std::deque< std::pair<type1*,type2*> > >

namespace xmltooling {

    // Forward reference
    template <class _Tx, class _Ty=XMLObject> class XMLObjectChildrenList;
    template <class _Tx, class _Ty=XMLObject> class XMLObjectPairList;

    /**
     * STL iterator that mediates access to an iterator over typed XML children.
     *
     * @param Container type of container
     * @param _Ty       a bidrectional iterator to guard
     */
    template <class Container, typename _Ty>
    class XMLObjectChildrenIterator
    {
        /// @cond OFF
        _Ty m_iter;
        template <class _Tx, class _Tz> friend class XMLObjectChildrenList;
        template <class _Tx, class _Tz> friend class XMLObjectPairList;
    public:
#ifdef HAVE_ITERATOR_TRAITS
        typedef typename std::iterator_traits<_Ty>::iterator_category iterator_category;
        typedef typename std::iterator_traits<_Ty>::value_type value_type;
        typedef typename std::iterator_traits<_Ty>::difference_type difference_type;
        typedef typename std::iterator_traits<_Ty>::pointer pointer;
        typedef typename std::iterator_traits<_Ty>::reference reference;
#else
        typedef typename _Ty::iterator_category iterator_category;
        typedef typename _Ty::value_type value_type;
        typedef typename _Ty::difference_type difference_type;
        typedef typename _Ty::pointer pointer;
        typedef typename _Ty::reference reference;
#endif
        typedef typename Container::const_reference const_reference;
        typedef typename Container::const_pointer const_pointer;

        XMLObjectChildrenIterator() {
        }

        XMLObjectChildrenIterator(_Ty iter) {
            m_iter=iter;
        }

        const_reference operator*() const {
            return *m_iter;
        }

        const_reference operator->() const {
            return *m_iter;
        }

        XMLObjectChildrenIterator& operator++() {
            // preincrement
            ++m_iter;
            return (*this);
        }

        XMLObjectChildrenIterator& operator--() {
            // predecrement
            --m_iter;
            return (*this);
        }

        XMLObjectChildrenIterator operator++(int) {
            // postincrement
            XMLObjectChildrenIterator _Tmp = *this;
            ++*this;
            return (_Tmp);
        }

        XMLObjectChildrenIterator operator--(int) {
            // postdecrement
            XMLObjectChildrenIterator _Tmp = *this;
            --*this;
            return (_Tmp);
        }

        XMLObjectChildrenIterator& operator+=(difference_type _Off) {
            // increment by integer
            m_iter += _Off;
            return (*this);
        }

        XMLObjectChildrenIterator operator+(difference_type _Off) const {
            // return this + integer
            return m_iter + _Off;
        }

        XMLObjectChildrenIterator& operator-=(difference_type _Off) {
            // decrement by integer
            return (*this += -_Off);
        }

        XMLObjectChildrenIterator operator-(difference_type _Off) const {
            // return this - integer
            XMLObjectChildrenIterator _Tmp = *this;
            return (_Tmp -= _Off);
        }

        difference_type operator-(const XMLObjectChildrenIterator& _Right) const {
            // return difference of iterators
            return m_iter - _Right.m_iter;
        }

        const_reference operator[](difference_type _Off) const {
            // subscript
            return (*(*this + _Off));
        }

        bool operator==(const XMLObjectChildrenIterator &_Right) const {
		    // test for iterator equality
		    return (m_iter == _Right.m_iter);
	    }

	    bool operator!=(const XMLObjectChildrenIterator &_Right) const {
		    // test for iterator inequality
		    return (!(m_iter == _Right.m_iter));
	    }
	    
	    bool operator<(const XMLObjectChildrenIterator &_Right) const {
	        return (m_iter < _Right.m_iter);
	    }
        /// @endcond
    };

#ifndef HAVE_ITERATOR_TRAITS
    /**
     * STL iterator that mediates access to an iterator that's a pointer.
     *
     * @param Container type of container
     * @param _Ty       the type of object being referenced
     */
    template <class Container, typename _Ty>
    class XMLObjectChildrenIterator<Container, _Ty*>
    {
        /// @cond OFF
        typename _Ty* m_iter;
        template <class _Tx, class _Tz> friend class XMLObjectChildrenList;
        template <class _Tx, class _Tz> friend class XMLObjectPairList;
    public:
        typedef std::random_access_iterator_tag iterator_category;
        typedef _Ty value_type;
        typedef ptrdiff_t difference_type;
        typedef _Ty* pointer;
        typedef _Ty& reference;
        typedef const _Ty& const_reference;
        typedef const _Ty* const_pointer;

        XMLObjectChildrenIterator() {
        }

        XMLObjectChildrenIterator(_Ty* iter) {
            m_iter=iter;
        }

        const_reference operator*() const {
            return *m_iter;
        }

        const_reference operator->() const {
            return *m_iter;
        }

        XMLObjectChildrenIterator& operator++() {
            // preincrement
            ++m_iter;
            return (*this);
        }

        XMLObjectChildrenIterator& operator--() {
            // predecrement
            --m_iter;
            return (*this);
        }

        XMLObjectChildrenIterator operator++(int) {
            // postincrement
            XMLObjectChildrenIterator _Tmp = *this;
            ++*this;
            return (_Tmp);
        }

        XMLObjectChildrenIterator operator--(int) {
            // postdecrement
            XMLObjectChildrenIterator _Tmp = *this;
            --*this;
            return (_Tmp);
        }

        XMLObjectChildrenIterator& operator+=(difference_type _Off) {
            // increment by integer
            m_iter += _Off;
            return (*this);
        }

        XMLObjectChildrenIterator operator+(difference_type _Off) const {
            // return this + integer
            return m_iter + _Off;
        }

        XMLObjectChildrenIterator& operator-=(difference_type _Off) {
            // decrement by integer
            return (*this += -_Off);
        }

        XMLObjectChildrenIterator operator-(difference_type _Off) const {
            // return this - integer
            XMLObjectChildrenIterator _Tmp = *this;
            return (_Tmp -= _Off);
        }

        difference_type operator-(const XMLObjectChildrenIterator& _Right) const {
            // return difference of iterators
            return m_iter - _Right.m_iter;
        }

        const_reference operator[](difference_type _Off) const {
            // subscript
            return (*(*this + _Off));
        }

        bool operator==(const XMLObjectChildrenIterator &_Right) const {
		    // test for iterator equality
		    return (m_iter == _Right.m_iter);
	    }

	    bool operator!=(const XMLObjectChildrenIterator &_Right) const {
		    // test for iterator inequality
		    return (!(m_iter == _Right.m_iter));
	    }
	    
	    bool operator<(const XMLObjectChildrenIterator &_Right) const {
	        return (m_iter < _Right.m_iter);
	    }
        /// @endcond
    };

    /**
     * STL iterator that mediates access to an iterator that's a const pointer.
     *
     * @param Container type of container
     * @param _Ty       the type of object being referenced
     */
    template <class Container, typename _Ty>
    class XMLObjectChildrenIterator<Container, const _Ty*>
    {
        /// @cond OFF
        typename const _Ty* m_iter;
        template <class _Tx, class _Tz> friend class XMLObjectChildrenList;
        template <class _Tx, class _Tz> friend class XMLObjectPairList;
    public:
        typedef std::random_access_iterator_tag iterator_category;
        typedef _Ty value_type;
        typedef ptrdiff_t difference_type;
        typedef const _Ty* pointer;
        typedef const _Ty& reference;
        typedef const _Ty& const_reference;
        typedef const _Ty* const_pointer;

        XMLObjectChildrenIterator() {
        }

        XMLObjectChildrenIterator(_Ty* iter) {
            m_iter=iter;
        }

        const_reference operator*() const {
            return *m_iter;
        }

        const_reference operator->() const {
            return *m_iter;
        }

        XMLObjectChildrenIterator& operator++() {
            // preincrement
            ++m_iter;
            return (*this);
        }

        XMLObjectChildrenIterator& operator--() {
            // predecrement
            --m_iter;
            return (*this);
        }

        XMLObjectChildrenIterator operator++(int) {
            // postincrement
            XMLObjectChildrenIterator _Tmp = *this;
            ++*this;
            return (_Tmp);
        }

        XMLObjectChildrenIterator operator--(int) {
            // postdecrement
            XMLObjectChildrenIterator _Tmp = *this;
            --*this;
            return (_Tmp);
        }

        XMLObjectChildrenIterator& operator+=(difference_type _Off) {
            // increment by integer
            m_iter += _Off;
            return (*this);
        }

        XMLObjectChildrenIterator operator+(difference_type _Off) const {
            // return this + integer
            return m_iter + _Off;
        }

        XMLObjectChildrenIterator& operator-=(difference_type _Off) {
            // decrement by integer
            return (*this += -_Off);
        }

        XMLObjectChildrenIterator operator-(difference_type _Off) const {
            // return this - integer
            XMLObjectChildrenIterator _Tmp = *this;
            return (_Tmp -= _Off);
        }

        difference_type operator-(const XMLObjectChildrenIterator& _Right) const {
            // return difference of iterators
            return m_iter - _Right.m_iter;
        }

        const_reference operator[](difference_type _Off) const {
            // subscript
            return (*(*this + _Off));
        }

        bool operator==(const XMLObjectChildrenIterator &_Right) const {
		    // test for iterator equality
		    return (m_iter == _Right.m_iter);
	    }

	    bool operator!=(const XMLObjectChildrenIterator &_Right) const {
		    // test for iterator inequality
		    return (!(m_iter == _Right.m_iter));
	    }
	    
	    bool operator<(const XMLObjectChildrenIterator &_Right) const {
	        return (m_iter < _Right.m_iter);
	    }
        /// @endcond
    };
#endif

    /**
     * STL-compatible container that mediates access to underlying lists of typed XML children.
     * @param _Tx   the subtype container to encapsulate
     * @param _Ty   the base type in the underlying list (defaults to XMLObject)
     */
    template <class Container, class _Ty>
    class XMLObjectChildrenList
    {
        Container& m_container;
        typename std::list<_Ty*>* m_list;
        typename std::list<_Ty*>::iterator m_fence;
        XMLObject* m_parent;

	public:
        /// @cond OFF
        typedef typename Container::value_type value_type;
        typedef typename Container::reference reference;
        typedef typename Container::const_reference const_reference;
        typedef typename Container::difference_type difference_type;
        typedef typename Container::size_type size_type;

        // We override the iterator types with our constrained wrapper.
        typedef XMLObjectChildrenIterator<Container, typename Container::iterator> iterator;
        typedef XMLObjectChildrenIterator<Container, typename Container::const_iterator> const_iterator;
        /// @endcond

        /**
         * Constructor to expose a typed collection of children backed by a list of a base type.
         *
         * @param parent    parent object of the collection
         * @param sublist   underlying container to expose
         * @param backing   pointer to backing list for children, if any
         * @param ins_fence a marker designating where new children of this type should be added
         */
        XMLObjectChildrenList(
            XMLObject* parent,
            Container& sublist,
            typename std::list<_Ty*>* backing,
            typename std::list<_Ty*>::iterator ins_fence
            ) : m_container(sublist), m_list(backing), m_fence(ins_fence), m_parent(parent) {
        }

        /// @cond OFF

        size_type size() const {
            // return length of sequence
            return m_container.size();
        }

        bool empty() const {
            // test if sequence is empty
            return m_container.empty();
        }

        iterator begin() {
            // return iterator for beginning of mutable sequence
            return m_container.begin();
        }

        iterator end() {
            // return iterator for end of mutable sequence
            return m_container.end();
        }

        const_iterator begin() const {
            // return iterator for beginning of const sequence
            return const_cast<const Container&>(m_container).begin();
        }

        const_iterator end() const {
            // return iterator for end of const sequence
            return const_cast<const Container&>(m_container).end();
        }

        const_reference at(size_type _Pos) const {
            // subscript nonmutable sequence with checking
            return m_container.at(_Pos);
        }

        const_reference operator[](size_type _Pos) const {
            // subscript nonmutable sequence
            return m_container[_Pos];
        }

        const_reference front() const {
            // return first element of nonmutable sequence
            return m_container.front();
        }

        const_reference back() const {
            // return last element of nonmutable sequence
            return m_container.back();
        }

        void push_back(const_reference _Val) {
            setParent(_Val);
            if (m_list)
                m_list->insert(m_fence,_Val);
            m_container.push_back(_Val);
        }

        iterator erase(iterator _Where) {
            removeParent(*_Where);
            if (m_list)
                removeChild(*_Where);
            else
                delete *_Where.m_iter;
            return m_container.erase(_Where.m_iter);
        }

        iterator erase(iterator _First, iterator _Last) {
            for (iterator i=_First; i!=_Last; i++) {
                removeParent(*i);
                if (m_list)
                    removeChild(*i);
                else
                    delete *i.m_iter;
            }
            return m_container.erase(_First.m_iter,_Last.m_iter);
        }

        void clear() {
            erase(begin(),end());
        }

    private:
        void setParent(const_reference _Val) {
            if (_Val->getParent())
                throw XMLObjectException("Child object already has a parent.");
            _Val->setParent(m_parent);
            _Val->releaseParentDOM(true);
        }

        void removeParent(const_reference _Val) {
            if (_Val->getParent()!=m_parent)
                throw XMLObjectException("Child object not owned by this parent.");
            _Val->setParent(nullptr);
            m_parent->releaseParentDOM(true);
        }

        void removeChild(const_reference _Val) {
            for (typename std::list<_Ty*>::iterator i=m_list->begin(); i!=m_list->end(); i++) {
                if ((*i)==_Val) {
                    m_list->erase(i);
                    delete _Val;
                    return;
                }
            }
        }
        /// @endcond
    };

    /**
     * STL-compatible container that mediates access to underlying lists of typed XML children
     * that come in pairs.
     * 
     * @param _Tx   the subtype container to encapsulate
     * @param _Ty   the base type in the underlying list (defaults to XMLObject)
     */
    template <class Container, class _Ty>
    class XMLObjectPairList
    {
        Container& m_container;
        typename std::list<_Ty*>* m_list;
        typename std::list<_Ty*>::iterator m_fence;
        XMLObject* m_parent;

    public:
        /// @cond OFF
        typedef typename Container::value_type value_type;
        typedef typename Container::reference reference;
        typedef typename Container::const_reference const_reference;
        typedef typename Container::difference_type difference_type;
        typedef typename Container::size_type size_type;

        // We override the iterator types with our constrained wrapper.
        typedef XMLObjectChildrenIterator<Container, typename Container::iterator> iterator;
        typedef XMLObjectChildrenIterator<Container, typename Container::const_iterator> const_iterator;
        /// @endcond

        /**
         * Constructor to expose a typed collection of pairs backed by a list of a base type.
         *
         * @param parent    parent object of the collection
         * @param sublist   underlying container to expose
         * @param backing   pointer to backing list for children, if any
         * @param ins_fence a marker designating where new children of this type should be added
         */
        XMLObjectPairList(
            XMLObject* parent,
            Container& sublist,
            typename std::list<_Ty*>* backing,
            typename std::list<_Ty*>::iterator ins_fence
            ) : m_container(sublist), m_list(backing), m_fence(ins_fence), m_parent(parent) {
        }

        /// @cond OFF

        size_type size() const {
            // return length of sequence
            return m_container.size();
        }

        bool empty() const {
            // test if sequence is empty
            return m_container.empty();
        }

        iterator begin() {
            // return iterator for beginning of mutable sequence
            return m_container.begin();
        }

        iterator end() {
            // return iterator for end of mutable sequence
            return m_container.end();
        }

        const_iterator begin() const {
            // return iterator for beginning of const sequence
            return const_cast<const Container&>(m_container).begin();
        }

        const_iterator end() const {
            // return iterator for end of const sequence
            return const_cast<const Container&>(m_container).end();
        }

        const_reference at(size_type _Pos) const {
            // subscript nonmutable sequence with checking
            return m_container.at(_Pos);
        }

        const_reference operator[](size_type _Pos) const {
            // subscript nonmutable sequence
            return m_container[_Pos];
        }

        const_reference front() const {
            // return first element of nonmutable sequence
            return m_container.front();
        }

        const_reference back() const {
            // return last element of nonmutable sequence
            return m_container.back();
        }

        void push_back(const_reference _Val) {
            setParent(_Val);
            if (m_list) {
                m_list->insert(m_fence,_Val.first);
                m_list->insert(m_fence,_Val.second);
            }
            m_container.push_back(_Val);
        }

        iterator erase(iterator _Where) {
            removeParent(*_Where);
            if (m_list)
                removeChild(*_Where);
            else {
                delete _Where.m_iter->first;
                delete _Where.m_iter->second;
            }
            return m_container.erase(_Where.m_iter);
        }

        iterator erase(iterator _First, iterator _Last) {
            for (iterator i=_First; i!=_Last; i++) {
                removeParent(*i);
                if (m_list)
                    removeChild(*i);
                else {
                    delete i.m_iter->first;
                    delete i.m_iter->second;
                }
            }
            return m_container.erase(_First,_Last);
        }

        void clear() {
            erase(begin(),end());
        }

    private:
        void setParent(const_reference _Val) {
            if (_Val.first->getParent() || (_Val.second && _Val.second->getParent()))
                throw XMLObjectException("One of the child objects already has a parent.");
            _Val.first->setParent(m_parent);
            if (_Val.second)
                _Val.second->setParent(m_parent);
            _Val.first->releaseParentDOM(true);
        }

        void removeParent(const_reference _Val) {
            if (_Val.first->getParent()!=m_parent || (_Val.second && _Val.second->getParent()!=m_parent))
                throw XMLObjectException("One of the child objects not owned by this parent.");
            _Val.first->setParent(nullptr);
            if (_Val.second)
                _Val.second->setParent(nullptr);
            m_parent->releaseParentDOM(true);
        }

        void removeChild(const_reference _Val) {
            for (typename std::list<_Ty*>::iterator i=m_list->begin(); i!=m_list->end(); i++) {
                if ((*i)==_Val.first) {
                    typename std::list<_Ty*>::iterator j=i++;
                    m_list->erase(j);
                    m_list->erase(i);
                    delete _Val.first;
                    delete _Val.second;
                    return;
                }
                i++;
            }
        }
        /// @endcond
    };

};

#endif /* __xmltooling_list_h__ */