This file is indexed.

/usr/include/ucommon/typeref.h is in libucommon-dev 7.0.0-9.

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
752
753
754
// Copyright (C) 2015 Cherokees of Idaho.
//
// This file is part of GNU uCommon C++.
//
// GNU uCommon C++ is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published
// by the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// GNU uCommon C++ is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with GNU uCommon C++.  If not, see <http://www.gnu.org/licenses/>.

/**
 * A thread-safe atomic heap management system.  This is used to manage
 * immutable heap instances of object types that are reference counted
 * and automatically deleted when no longer used.  All references to the
 * object are through smart typeref pointers.  Both specific classes for
 * strings and byte arrays, and generic templates to support generic
 * types in the heap are offered.
 * @file ucommon/typeref.h
 */

#ifndef _UCOMMON_TYPEREF_H_
#define _UCOMMON_TYPEREF_H_

#ifndef _UCOMMON_CPR_H_
#include <ucommon/cpr.h>
#endif

#ifndef _UCOMMON_ATOMIC_H_
#include <ucommon/atomic.h>
#endif

#ifndef _UCOMMON_PROTOCOLS_H_
#include <ucommon/protocols.h>
#endif

#ifndef _UCOMMON_GENERICS_H_
#include <ucommon/generics.h>
#endif

#ifndef _UCOMMON_OBJECT_H_
#include <ucommon/object.h>
#endif

#ifndef _UCOMMON_THREAD_H_
#include <ucommon/thread.h>
#endif

namespace ucommon {

class TypeRelease;
class typeref_guard;

/**
 * Smart pointer base class for auto-retained objects.  The underlying
 * container is heap allocated and page aligned.  A heap object is
 * automatically de-referenced by release during destruction.  The smart
 * pointer is a protected base class used to derive strongly typed
 * templates.
 * @author David Sugar <dyfet@gnutelephony.org>
 */
class __EXPORT TypeRef
{
protected:
	friend class ArrayRef;
	friend class SharedRef;
	friend class MapRef;
	friend class TypeRelease;

	class Release;

public:
	/**
	 * Heap base-class container for typeref objects.  This uses atomic
	 * reference counters for thread safety with maximal performance.  This
	 * is used as a protected base class used for strongly typed heap
	 * containers through templates.
	 * @author David Sugar <dyfet@gnutelephony.org>
	 */
	class __EXPORT Counted : public __PROTOCOL ObjectProtocol
	{
	private:
		__DELETE_COPY(Counted);

	protected:
		friend class TypeRef;
		friend class TypeRelease;

		union {
			TypeRelease *autorelease;			
			Counted *linkrelease;
		};

		mutable Atomic::counter count;
		unsigned offset;
		size_t size;

		/**
		 * Construction of aligned container.  This is used to inform the
		 * object of the underlying real address it exists on the heap 
		 * since malloc is not assured to be atomically aligned by default.
		 * @param address of actual allocation.
		 * @param size of object allocated.
		 * @param ar pool to use
		 */
		explicit Counted(void *address, size_t size, TypeRelease *ar = NULL);

		/**
		 * Release memory and delete object when no longer referenced.
		 * This gets called with the atomic reference counter < 1, such
		 * as when the last smart pointer de-references.
		 */
		virtual void dealloc(void);

	public:
		/**
		 * Is this object not empty?
		 * @return true if not empty.
		 */
		inline bool is() const {
			return (count.get() > 0);
		}

		/**
		 * Number of retains (smart pointers) referencing us.
		 * @return number of copies of pointers referencing.
		 */
		inline unsigned copies() const {
			return ((unsigned)count.get());
		}

		inline TypeRelease *getRelease() const {
			return autorelease;
		}

		/**
		 * Override delete to de-allocate actual heap.  This
		 * is used because the object is atomically aligned, but
		 * the heap may not be.
		 * @param address of our object.
		 */
		void operator delete(void *address);

		/**
		 * Retain a copy of this object.  Usually a smart pointer
		 * referencing.
		 */
		void retain();

		/**
		 * Release a copy of this object.  Only when the reference
		 * count reaches 0 is it destroyed. 
		 */
		void release();
	};		

protected:
	Counted *ref;		// heap reference...

	/**
	 * Create a smart pointer referencing an existing heap object.
	 * @param object to reference.
	 */
	TypeRef(Counted *object);

	/**
	 * Create a smart pointer based on another pointer.  Both
	 * pointers then reference the same object.
	 * @param pointer instance to share reference with.
	 */
	TypeRef(const TypeRef& pointer);

	/**
	 * Create a smart pointer referencing nothing.
	 */
	TypeRef();

	/**
	 * Set our smart pointer to a specific heap container.  If
	 * we were pointing to something already we release that.
	 * @param object to reference.
	 */
	void set(Counted *object);

	/**
	 * Assign from a guarded typeref.
	 */
	void assign(const typeref_guard& ref);

	/**
	 * Adjust memory pointer to atomic boundry.
	 * @param address that was allocated.
	 * @return address for actual atomic aligned object.
	 */
	static caddr_t mem(caddr_t address);

public:
	/**
	 * Destroy pointer when falling out of scope.  This de-references
	 * the heap container.
	 */
	virtual ~TypeRef();

	/**
	 * Set our smart pointer based on another pointer instance.  If
	 * we are already referencing, we release the current container.
	 * @param pointer instance to share reference with.
	 */
	void set(const TypeRef& pointer);

	/**
	 * Manually release the current container.
	 */
	void clear(void);

	/**
	 * Get size of referenced heap object.
	 * @return size of container or 0 if none.
	 */
	size_t size(void) const;

	/**
	 * Get number of references to container.
	 * @return total number of pointers referencing container.
	 */	
	unsigned copies() const;
	
	/**
	 * Check if pointer currently has a heap container.
	 * @return true if we are referencing a container.
	 */
	inline operator bool() const {
		return ref != NULL;
	}

	/**
	 * Check if we are currently not pointing to anything.
	 * @return true if not referencing a container.
	 */
	inline bool operator!() const {
		return ref == NULL;
	}

	/**
	 * Special weak-public means to copy a container reference.
	 * This uses the base class container which is not public, so
	 * only derived type specific smart pointers can actually use 
	 * this method.  It is made public because making it protected
	 * actually makes it inaccessible to template derived classes.
	 * @param target smart pointer object to set.
	 * @param object to have it reference.
	 */
	inline static void put(TypeRef& target, Counted *object) {
		target.set(object);
	}

	bool is_released(void);
};

class __EXPORT TypeRelease
{
public:
	inline TypeRelease() {
		delegate = nullptr;
	}

	inline TypeRelease(TypeRelease *target) {
		delegate = target;
	}

	virtual unsigned purge();

	virtual caddr_t allocate(size_t size);

protected:
	friend class TypeRef::Counted;

	TypeRelease *delegate;

	void enlist(TypeRef::Counted **root, TypeRef::Counted *obj);
	
	TypeRef::Counted *delist(TypeRef::Counted **root);

	virtual void release(TypeRef::Counted *obj);

	void dealloc(TypeRef::Counted *obj);

	inline size_t size(TypeRef::Counted *obj) {
		return obj->size;
	}
};

extern __EXPORT TypeRelease auto_release;
extern __EXPORT TypeRelease secure_release;
extern __EXPORT TypeRelease release_later;

class __EXPORT typeref_guard : protected TypeRef
{
private:
	friend class TypeRef;
	
	mutable Mutex sync;

public:
	inline typeref_guard() : TypeRef() {}

	inline typeref_guard(const typeref_guard& copy) : TypeRef(copy) {}

	inline typeref_guard(const TypeRef& pointer) : TypeRef(pointer) {}

	void set(const TypeRef& pointer);

	inline typeref_guard& operator=(const TypeRef& pointer) {
		set(pointer);
		return *this;
	}
};

template<typename T, TypeRelease& R = auto_release>
class typeref : public TypeRef
{
private:
	class value : public Counted
	{
	private:
		__DELETE_COPY(value);

	public:
		T data;

		inline value(caddr_t mem, const T& object, TypeRelease *ar = &R) : 
		Counted(mem, sizeof(value), ar) {
			data = object;
		}
	};
 
public:
	inline typeref() :	TypeRef() {}

	inline typeref(const typeref_guard& global) : TypeRef() {
		TypeRef::assign(global);
	}

	inline typeref(const typeref& copy) : TypeRef(copy) {}

	inline typeref(const T& object, TypeRelease *ar = &R) : TypeRef() {
		caddr_t p = R.allocate(sizeof(value));
		TypeRef::set(new(mem(p)) value(p, object, ar)); 
	}

	inline explicit typeref(Counted *object) : TypeRef(object) {}

	inline const T* operator->() const {
		if(!ref)
			return NULL;
		value *v = polystatic_cast<value *>(ref);
		return &(v->data);
	}

	inline const T& operator*() const {
		value *v = polystatic_cast<value*>(ref);
		__THROW_DEREF(v);
		return *(&(v->data));
	}

	inline const T* operator()() const {
		value *v = polystatic_cast<value*>(ref);
		if(!v)
			return nullptr;

		return &(v->data);
	}

	inline operator const T&() const {
		value *v = polystatic_cast<value*>(ref);
		__THROW_DEREF(v);
		return *(&(v->data));
	}

	inline typeref& operator=(const typeref_guard& ptr) {
		TypeRef::assign(ptr);
		return *this;
	}

	inline typeref& operator=(const typeref& ptr) {
		TypeRef::set(ptr);
		return *this;
	}

	inline bool operator==(const typeref& ptr) const {
		value *v1 = polystatic_cast<value*>(ref);
		value *v2 = polystatic_cast<value*>(ptr.ref);
		if(!v1 || !v2)
			return false;
		return v1->data == v2->data;
	}	

	inline bool operator==(const T& obj) const {
		value *v = polystatic_cast<value *>(ref);
		if(!v)
			return false;
		return v->data == obj;
	}

	inline bool operator!=(const typeref& ptr) const {
		return !(*this == ptr);
	}

	inline bool operator!=(const T& obj) const {
		return !(*this == obj);
	}

	inline void set(T& object, TypeRelease *pool = &R) {
		clear();
		caddr_t p = R.allocate(sizeof(value));
		TypeRef::set(new(mem(p)) value(p, object, pool));
	}

	inline typeref& operator=(T& object) {
		set(object);
		return *this;
	}
};

// The specializations are done as simple template specializations so that the
// hard parts can be hard-coded rather than inline members.  This means we do
// not pass the autorelease as a specialization here, but we can do a secondary
// template that does use releases with a lot less overhead.

template<>
class __EXPORT typeref<const char *> : public TypeRef
{
public:
	class value : public Counted
	{
	private:
		__DELETE_COPY(value);

	protected:
		friend class typeref;

		char mem[1];

		value(caddr_t addr, size_t size, const char *str, TypeRelease *ar = &auto_release);

		void destroy(void);

	public:
		inline char *get() {
			return &mem[0];
		}

		inline size_t len() {
			return strlen(mem);
		}

		inline size_t max() {
			return size;
		}

		inline operator char *() {
			return &mem[0];
		}
	};

	typeref();
	
	typeref(const typeref& copy);

	typeref(const char *str, TypeRelease *ar = &auto_release);

	typeref(size_t size, TypeRelease *ar = &auto_release);

	inline typeref(const typeref_guard& global) : TypeRef() {
		TypeRef::assign(global);
	}

	inline explicit typeref(Counted *object) : TypeRef(object) {}

	inline explicit typeref(value *value) : TypeRef(value) {}

	const char *operator*() const;

	inline operator const char *() const {
		return operator*();
	}

	size_t len() const;

	bool operator==(const typeref& ptr) const;

	bool operator==(const char *obj) const;

	bool operator==(value *chars) const;

	inline bool operator!=(const typeref& ptr) const {
		return !(*this == ptr);
	}

	inline bool operator!=(value *chars) const {
		return !(*this == chars);
	}

	inline bool operator!=(const char *obj) const {
		return !(*this == obj);
	}

	bool operator<(const typeref& ptr) const;

	inline bool operator>(const typeref& ptr) const {
		return (ptr < *this);
	}

	inline bool operator<=(const typeref& ptr) const {
		return !(*this > ptr);
	}

	inline bool operator>=(const typeref& ptr) const {
		return !(*this < ptr);
	}

	typeref& operator=(const typeref& objref);

	typeref& operator=(const char *str);

	typeref& operator=(value *chars);

	const typeref operator+(const char *str) const;

	const typeref operator+(const typeref& ptr) const;

	const char *operator()(ssize_t offset) const;

	void set(const char *str, TypeRelease *ar = &auto_release);

	void hex(const uint8_t *mem, size_t size, TypeRelease *ar = &auto_release);

	void b64(const uint8_t *mem, size_t size, TypeRelease *ar = &auto_release);

	void assign(value *chars);

	static void expand(value **handle, size_t size);

	static value *create(size_t size, TypeRelease *ar = &auto_release);

	static void destroy(value *bytes);
};

template<>
class __EXPORT typeref<const uint8_t *> : public TypeRef
{
public:
	class value : public Counted
	{
	private:
		__DELETE_COPY(value);

	protected:
		friend class typeref;

		uint8_t mem[1];

		value(caddr_t addr, size_t size, const uint8_t *data = nullptr, TypeRelease *ar = &auto_release);

		void destroy(void);

	public:
		inline size_t max() {
			return size;
		}

		inline uint8_t *get() {
			return &mem[0];
		}

		inline operator uint8_t*() {
			return &mem[0];
		}
	};

	typeref();
	
	typeref(const typeref& copy);

	typeref(uint8_t *str, size_t size, TypeRelease *ar = &auto_release);

	typeref(size_t size, TypeRelease *ar = &auto_release);

	typeref(bool mode, size_t bits, TypeRelease *ar = &auto_release);

	inline typeref(const typeref_guard& global) : TypeRef() {
		TypeRef::assign(global);
	}

	inline explicit typeref(Counted *object) : TypeRef(object) {}

	const uint8_t *operator*() const;

	inline operator const uint8_t *() const {
		return operator*();
	}

	typeref& operator=(const typeref& objref);

	typeref& operator=(value *bytes);

	bool operator==(const typeref& ptr) const;

	bool operator==(value *bytes) const;

	inline bool operator!=(const typeref& ptr) const {
		return !(*this == ptr);
	}

	inline bool operator!=(value *bytes) const {
		return !(*this == bytes);
	}

	const typeref operator+(const typeref& ptr) const;

	void set(const uint8_t *str, size_t size, TypeRelease *ar = &auto_release);

	size_t set(bool bit, size_t offset, size_t bits = 1);

	size_t hex(const char *str, bool ws = false, TypeRelease *ar = &auto_release);

	size_t b64(const char *str, bool ws = false, TypeRelease *ar = &auto_release);

	uint8_t *data(void);

	bool get(size_t offset);

	size_t count(size_t offset, size_t bits = 1);	

	void assign(value *bytes);

	typeref<const char *> hex();

	typeref<const char *> b64();

	static value *create(size_t size, TypeRelease *ar = &auto_release);

	static void destroy(value *bytes);
};

// convenience classes that roll up autorelease behavior for strings and
// byte arrays into templates.

template<TypeRelease& R>
class stringref : public typeref<const char *>
{
public:
	inline stringref() : typeref<const char *>() {} 
	
	inline stringref(const stringref& copy) : typeref<const char *>(copy) {}

	inline stringref(const char *str) : typeref<const char *>(str, &R) {}

	inline stringref(size_t size) : typeref<const char *>(size, &R) {}

	inline explicit stringref(Counted *object) : typeref<const char *>(object) {}

	inline void set(const char *str) {
		typeref<const char *>::set(str, &R);
	}

	inline static value *create(size_t size) {
		return typeref<const char *>::create(size, &R);
	}

	inline static stringref promote(typeref<const char *>& str) {
		stringref result = *str;
		return result;
	}
};

template<TypeRelease& R>
class byteref : public typeref<const uint8_t *>
{
public:
	inline byteref() : typeref<const uint8_t *>() {}

	inline byteref(uint8_t *str, size_t size) : typeref<const uint8_t *>(str, size, &R) {}

	inline byteref(size_t size) : typeref<const uint8_t *>(size, &R) {}

	inline byteref(bool mode, size_t bits) : typeref<const uint8_t *>(mode, bits, &R) {}

	inline explicit byteref(Counted *object) : typeref<const uint8_t *>(object) {}

	inline void set(const uint8_t *str, size_t size) {
		typeref<const uint8_t *>::set(str, size, &R);
	}

	inline size_t hex(const char *str, bool ws = false) {
		return typeref<const uint8_t *>::hex(str, ws, &R);
	}

	inline size_t b64(const char *str, bool ws = false) {
		return typeref<const uint8_t *>::b64(str, ws, &R);
	}

	inline stringref<R> hex() {
		typeref<const char *> str = typeref<const uint8_t *>::hex();
		stringref<R> result = *str;
		return result;
	}

	inline stringref<R> b64() {
		typeref<const char *> str = typeref<const uint8_t *>::b64();
		stringref<R> result = *str;
		return result;
	}

	inline static value *create(size_t size) {
		return typeref<const uint8_t *>::create(size, &R);
	}

	inline static byteref promote(typeref<const uint8_t *>& str) {
		byteref result = *str;
		return result;
	}
};

// a namespace for aliasing things we may typically use as a typeref

namespace Type {
	typedef int32_t Integer;
	typedef double Real;
	typedef const char *Chars;
	typedef const uint8_t *Bytes;
	typedef const uint8_t *Bools;
}

typedef typeref<Type::Chars>::value *charvalues_t;
typedef	typeref<Type::Bytes>::value *bytevalues_t;
typedef	typeref<Type::Chars> stringref_t;
typedef typeref<Type::Bytes> byteref_t;
typedef typeref<Type::Bools> boolref_t;

template<typename T>
inline typeref<T> typeref_cast(T x) {
	return typeref<T>(x);
}

} // namespace

#endif