4 * Hewlett-Packard Company
6 * Copyright (c) 1996,1997
7 * Silicon Graphics Computer Systems, Inc.
10 * Moscow Center for SPARC Technology
15 * This material is provided "as is", with absolutely no warranty expressed
16 * or implied. Any use is at your own risk.
18 * Permission to use or copy this software for any purpose is hereby granted
19 * without fee, provided the above notices are retained on all copies.
20 * Permission to modify the code and to distribute modified code is granted,
21 * provided the above notices are retained, and a notice that the code was
22 * modified is included with the above copyright notice.
26 /* NOTE: This is an internal header file, included by other STL headers.
27 * You should not attempt to use it directly.
30 #ifndef _STLP_INTERNAL_TEMPBUF_H
31 #define _STLP_INTERNAL_TEMPBUF_H
33 # ifndef _STLP_CLIMITS
36 # ifndef _STLP_CSTDLIB
39 # ifndef _STLP_INTERNAL_UNINITIALIZED_H
40 # include <stl/_uninitialized.h>
46 pair<_Tp*, ptrdiff_t> _STLP_CALL
47 __get_temporary_buffer(ptrdiff_t __len, _Tp*);
49 #ifndef _STLP_NO_EXPLICIT_FUNCTION_TMPL_ARGS
52 inline pair<_Tp*, ptrdiff_t> _STLP_CALL get_temporary_buffer(ptrdiff_t __len) {
53 return __get_temporary_buffer(__len, (_Tp*) 0);
56 # if ! defined(_STLP_NO_EXTENSIONS)
57 // This overload is not required by the standard; it is an extension.
58 // It is supported for backward compatibility with the HP STL, and
59 // because not all compilers support the language feature (explicit
60 // function template arguments) that is required for the standard
61 // version of get_temporary_buffer.
63 inline pair<_Tp*, ptrdiff_t> _STLP_CALL
64 get_temporary_buffer(ptrdiff_t __len, _Tp*) {
65 return __get_temporary_buffer(__len, (_Tp*) 0);
71 inline void _STLP_CALL return_temporary_buffer(_Tp* __p) {
72 // SunPro brain damage
76 template <class _ForwardIterator, class _Tp>
77 class _Temporary_buffer {
79 ptrdiff_t _M_original_len;
83 void _M_allocate_buffer() {
84 _M_original_len = _M_len;
87 if (_M_len > (ptrdiff_t)(INT_MAX / sizeof(_Tp)))
88 _M_len = INT_MAX / sizeof(_Tp);
91 _M_buffer = (_Tp*) malloc(_M_len * sizeof(_Tp));
98 void _M_initialize_buffer(const _Tp&, const __true_type&) {}
99 void _M_initialize_buffer(const _Tp& val, const __false_type&) {
100 uninitialized_fill_n(_M_buffer, _M_len, val);
104 ptrdiff_t size() const { return _M_len; }
105 ptrdiff_t requested_size() const { return _M_original_len; }
106 _Tp* begin() { return _M_buffer; }
107 _Tp* end() { return _M_buffer + _M_len; }
109 _Temporary_buffer(_ForwardIterator __first, _ForwardIterator __last) {
110 // Workaround for a __type_traits bug in the pre-7.3 compiler.
111 # if defined(__sgi) && !defined(__GNUC__) && _COMPILER_VERSION < 730
112 typedef typename __type_traits<_Tp>::is_POD_type _Trivial;
114 typedef typename __type_traits<_Tp>::has_trivial_default_constructor _Trivial;
117 _M_len = distance(__first, __last);
118 _M_allocate_buffer();
120 _M_initialize_buffer(*__first, _Trivial());
122 _STLP_UNWIND(free(_M_buffer); _M_buffer = 0; _M_len = 0);
125 ~_Temporary_buffer() {
126 _STLP_STD::_Destroy(_M_buffer, _M_buffer + _M_len);
131 // Disable copy constructor and assignment operator.
132 _Temporary_buffer(const _Temporary_buffer<_ForwardIterator, _Tp>&) {}
133 void operator=(const _Temporary_buffer<_ForwardIterator, _Tp>&) {}
136 # ifndef _STLP_NO_EXTENSIONS
138 // Class temporary_buffer is not part of the standard. It is an extension.
140 template <class _ForwardIterator,
142 #ifdef _STLP_CLASS_PARTIAL_SPECIALIZATION
143 = typename iterator_traits<_ForwardIterator>::value_type
144 #endif /* _STLP_CLASS_PARTIAL_SPECIALIZATION */
146 struct temporary_buffer : public _Temporary_buffer<_ForwardIterator, _Tp>
148 temporary_buffer(_ForwardIterator __first, _ForwardIterator __last)
149 : _Temporary_buffer<_ForwardIterator, _Tp>(__first, __last) {}
150 ~temporary_buffer() {}
153 # endif /* _STLP_NO_EXTENSIONS */
157 # ifndef _STLP_LINK_TIME_INSTANTIATION
158 # include <stl/_tempbuf.c>
161 #endif /* _STLP_INTERNAL_TEMPBUF_H */