ReactOS 0.4.16-dev-942-g91fadeb
anonymous_namespace{argv_wildcards.cpp}::argument_list< Character > Class Template Reference

Public Member Functions

 argument_list () throw ()
 
size_t size () const throw ()
 
Character ** begin () const throw ()
 
Character ** end () const throw ()
 
errno_t append (Character *const element) throw ()
 
Character ** detach () throw ()
 
 ~argument_list () throw ()
 

Private Member Functions

 argument_list (argument_list const &) throw ()
 
argument_listoperator= (argument_list const &) throw ()
 
errno_t expand_if_necessary () throw ()
 

Private Attributes

Character ** _first
 
Character ** _last
 
Character ** _end
 

Detailed Description

template<typename Character>
class anonymous_namespace{argv_wildcards.cpp}::argument_list< Character >

Definition at line 29 of file argv_wildcards.cpp.

Constructor & Destructor Documentation

◆ argument_list() [1/2]

template<typename Character >
anonymous_namespace{argv_wildcards.cpp}::argument_list< Character >::argument_list ( )
throw (
)
inline

◆ ~argument_list()

template<typename Character >
anonymous_namespace{argv_wildcards.cpp}::argument_list< Character >::~argument_list ( )
throw (
)
inline

Definition at line 62 of file argv_wildcards.cpp.

63 {
64 for (auto it = _first; it != _last; ++it)
65 _free_crt(*it);
66
68 }
#define _free_crt

◆ argument_list() [2/2]

template<typename Character >
anonymous_namespace{argv_wildcards.cpp}::argument_list< Character >::argument_list ( argument_list< Character > const )
throw (
)
private

Member Function Documentation

◆ append()

template<typename Character >
errno_t anonymous_namespace{argv_wildcards.cpp}::argument_list< Character >::append ( Character *const  element)
throw (
)
inline

Definition at line 39 of file argv_wildcards.cpp.

40 {
41 errno_t const expand_status = expand_if_necessary();
42 if (expand_status != 0)
43 {
45 return expand_status;
46 }
47
48 *_last++ = element;
49 return 0;
50 }
int errno_t
Definition: corecrt.h:615

◆ begin()

template<typename Character >
Character ** anonymous_namespace{argv_wildcards.cpp}::argument_list< Character >::begin ( ) const
throw (
)
inline

Definition at line 36 of file argv_wildcards.cpp.

36{ return _first; }

◆ detach()

template<typename Character >
Character ** anonymous_namespace{argv_wildcards.cpp}::argument_list< Character >::detach ( )
throw (
)
inline

Definition at line 52 of file argv_wildcards.cpp.

53 {
54 _last = nullptr;
55 _end = nullptr;
56
57 Character** const first = _first;
58 _first = nullptr;
59 return first;
60 }
const GLint * first
Definition: glext.h:5794

◆ end()

template<typename Character >
Character ** anonymous_namespace{argv_wildcards.cpp}::argument_list< Character >::end ( ) const
throw (
)
inline

Definition at line 37 of file argv_wildcards.cpp.

37{ return _last; }

◆ expand_if_necessary()

template<typename Character >
errno_t anonymous_namespace{argv_wildcards.cpp}::argument_list< Character >::expand_if_necessary ( )
throw (
)
inlineprivate

Definition at line 75 of file argv_wildcards.cpp.

76 {
77 // If there is already room for more elements, just return:
78 if (_last != _end)
79 {
80 return 0;
81 }
82 // If the list has not yet had an array allocated for it, allocate one:
83 if (!_first)
84 {
85 size_t const initial_count = 4;
86
87 _first = _calloc_crt_t(Character*, initial_count).detach();
88 if (!_first)
89 return ENOMEM;
90
91 _last = _first;
92 _end = _first + initial_count;
93 return 0;
94 }
95 // Otherwise, double the size of the array:
96 else
97 {
98 size_t const old_count = _end - _first;
99 if (old_count > SIZE_MAX / 2)
100 return ENOMEM;
101
102 size_t const new_count = old_count * 2;
103 __crt_unique_heap_ptr<Character*> new_array(_recalloc_crt_t(Character*, _first, new_count));
104 if (!new_array)
105 return ENOMEM;
106
107 _first = new_array.detach();
108 _last = _first + old_count;
109 _end = _first + new_count;
110 return 0;
111 }
112 }
#define ENOMEM
Definition: acclib.h:84
#define SIZE_MAX
Definition: compat.h:66

◆ operator=()

template<typename Character >
argument_list & anonymous_namespace{argv_wildcards.cpp}::argument_list< Character >::operator= ( argument_list< Character > const )
throw (
)
private

◆ size()

template<typename Character >
size_t anonymous_namespace{argv_wildcards.cpp}::argument_list< Character >::size ( ) const
throw (
)
inline

Definition at line 35 of file argv_wildcards.cpp.

35{ return _last - _first; }

Member Data Documentation

◆ _end

template<typename Character >
Character** anonymous_namespace{argv_wildcards.cpp}::argument_list< Character >::_end
private

Definition at line 116 of file argv_wildcards.cpp.

◆ _first

template<typename Character >
Character** anonymous_namespace{argv_wildcards.cpp}::argument_list< Character >::_first
private

Definition at line 114 of file argv_wildcards.cpp.

◆ _last

template<typename Character >
Character** anonymous_namespace{argv_wildcards.cpp}::argument_list< Character >::_last
private

Definition at line 115 of file argv_wildcards.cpp.


The documentation for this class was generated from the following file: