os/ossrv/stdcpp/src/ios.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
 * © Portions copyright (c) 2006-2007 Nokia Corporation.  All rights reserved.
sl@0
     3
 *
sl@0
     4
 * Copyright (c) 1999
sl@0
     5
 * Silicon Graphics Computer Systems, Inc.
sl@0
     6
 *
sl@0
     7
 * Copyright (c) 1999 
sl@0
     8
 * Boris Fomitchev
sl@0
     9
 *
sl@0
    10
 * This material is provided "as is", with absolutely no warranty expressed
sl@0
    11
 * or implied. Any use is at your own risk.
sl@0
    12
 *
sl@0
    13
 * Permission to use or copy this software for any purpose is hereby granted 
sl@0
    14
 * without fee, provided the above notices are retained on all copies.
sl@0
    15
 * Permission to modify the code and to distribute modified code is granted,
sl@0
    16
 * provided the above notices are retained, and a notice that the code was
sl@0
    17
 * modified is included with the above copyright notice.
sl@0
    18
 *
sl@0
    19
 */ 
sl@0
    20
sl@0
    21
# include "stlport_prefix.h"
sl@0
    22
# include <algorithm>
sl@0
    23
# include <stl/_ios.h>
sl@0
    24
sl@0
    25
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
    26
#include "libstdcppwsd.h"
sl@0
    27
# endif
sl@0
    28
sl@0
    29
_STLP_BEGIN_NAMESPACE
sl@0
    30
sl@0
    31
/*char* _STLP_CALL
sl@0
    32
__write_integer(char* buf, ios_base::fmtflags flags, long x);*/
sl@0
    33
sl@0
    34
//----------------------------------------------------------------------
sl@0
    35
// ios_base members
sl@0
    36
sl@0
    37
// class ios_base::failure, a subclass of exception.  It's used solely
sl@0
    38
// for reporting errors.
sl@0
    39
sl@0
    40
_STLP_EXP_DECLSPEC ios_base::failure::failure(const string& s) 
sl@0
    41
  : __Named_exception(s)
sl@0
    42
{}
sl@0
    43
sl@0
    44
_STLP_EXP_DECLSPEC ios_base::failure::~failure() _STLP_NOTHROW_INHERENTLY {}
sl@0
    45
sl@0
    46
#if !defined (_STLP_STATIC_CONST_INIT_BUG)
sl@0
    47
sl@0
    48
// Definitions of ios_base's formatting flags.
sl@0
    49
const ios_base::fmtflags ios_base::left;
sl@0
    50
const ios_base::fmtflags ios_base::right;
sl@0
    51
const ios_base::fmtflags ios_base::internal;
sl@0
    52
const ios_base::fmtflags ios_base::dec;
sl@0
    53
const ios_base::fmtflags ios_base::hex;
sl@0
    54
const ios_base::fmtflags ios_base::oct;
sl@0
    55
const ios_base::fmtflags ios_base::fixed;
sl@0
    56
const ios_base::fmtflags ios_base::scientific;
sl@0
    57
const ios_base::fmtflags ios_base::boolalpha;
sl@0
    58
const ios_base::fmtflags ios_base::showbase;
sl@0
    59
const ios_base::fmtflags ios_base::showpoint;
sl@0
    60
const ios_base::fmtflags ios_base::showpos;
sl@0
    61
const ios_base::fmtflags ios_base::skipws;
sl@0
    62
const ios_base::fmtflags ios_base::unitbuf;
sl@0
    63
const ios_base::fmtflags ios_base::uppercase;
sl@0
    64
const ios_base::fmtflags ios_base::adjustfield;
sl@0
    65
const ios_base::fmtflags ios_base::basefield;
sl@0
    66
const ios_base::fmtflags ios_base::floatfield;
sl@0
    67
sl@0
    68
// Definitions of ios_base's state flags.
sl@0
    69
const ios_base::iostate ios_base::goodbit;
sl@0
    70
const ios_base::iostate ios_base::badbit;
sl@0
    71
const ios_base::iostate ios_base::eofbit;
sl@0
    72
const ios_base::iostate ios_base::failbit;
sl@0
    73
sl@0
    74
// Definitions of ios_base's openmode flags.
sl@0
    75
const ios_base::openmode ios_base::app;
sl@0
    76
const ios_base::openmode ios_base::ate;
sl@0
    77
const ios_base::openmode ios_base::binary;
sl@0
    78
const ios_base::openmode ios_base::in;
sl@0
    79
const ios_base::openmode ios_base::out;
sl@0
    80
const ios_base::openmode ios_base::trunc;
sl@0
    81
sl@0
    82
// Definitions of ios_base's seekdir flags.
sl@0
    83
const ios_base::seekdir ios_base::beg;
sl@0
    84
const ios_base::seekdir ios_base::cur;
sl@0
    85
const ios_base::seekdir ios_base::end;
sl@0
    86
sl@0
    87
# endif /*  _STLP_STATIC_CONST_INIT_BUG */
sl@0
    88
sl@0
    89
// Internal functions used for managing exponentially-growing arrays of
sl@0
    90
// POD types.
sl@0
    91
sl@0
    92
// array is a pointer to N elements of type PODType.  Expands the array,
sl@0
    93
// if necessary, so that array[index] is meaningful.  All new elements are
sl@0
    94
// initialized to zero.  Returns a pointer to the new array, and the new
sl@0
    95
// size.
sl@0
    96
template <class PODType>
sl@0
    97
pair<PODType*, size_t> 
sl@0
    98
_Stl_expand_array(PODType* array, size_t N, int index)
sl@0
    99
{
sl@0
   100
  if (N < (size_t)(index + 1)) {
sl@0
   101
    size_t new_N = (max)(2 * N, size_t(index + 1));
sl@0
   102
    size_t total_alloc = new_N * sizeof(PODType);
sl@0
   103
    PODType* new_array = (PODType*)0;
sl@0
   104
    // fixed the maximum range problem
sl@0
   105
    if(total_alloc)
sl@0
   106
        new_array  = __STATIC_CAST(PODType*,realloc(array, total_alloc));
sl@0
   107
    if (new_array) {
sl@0
   108
      fill(new_array + N, new_array + new_N, PODType());
sl@0
   109
      return pair<PODType*, size_t>(new_array, new_N);
sl@0
   110
    }
sl@0
   111
    else 
sl@0
   112
      return pair<PODType*, size_t>(__STATIC_CAST(PODType*,0), 0);
sl@0
   113
  }
sl@0
   114
  else
sl@0
   115
    return pair<PODType*, size_t>(array, N);
sl@0
   116
}
sl@0
   117
sl@0
   118
// array is a pointer to N elements of type PODType.  Allocate a new
sl@0
   119
// array of N elements, copying the values from the old array to the new.
sl@0
   120
// Return a pointer to the new array.  It is assumed that array is non-null
sl@0
   121
// and N is nonzero.
sl@0
   122
template <class PODType>
sl@0
   123
PODType* _Stl_copy_array(const PODType* array, size_t N) {
sl@0
   124
  PODType* result = __STATIC_CAST(PODType*,malloc(N * sizeof(PODType)));
sl@0
   125
  if (result)
sl@0
   126
    copy(array, array + N, result);
sl@0
   127
  return result;
sl@0
   128
}
sl@0
   129
sl@0
   130
_STLP_EXP_DECLSPEC locale ios_base::imbue(const locale& loc) {
sl@0
   131
    locale previous = _M_locale;
sl@0
   132
    _M_locale = loc;
sl@0
   133
    _M_invoke_callbacks(imbue_event);
sl@0
   134
    return previous;
sl@0
   135
}
sl@0
   136
sl@0
   137
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   138
void ios_base_S_index_init()
sl@0
   139
{
sl@0
   140
	get_ios_base_S_index() = 0;	
sl@0
   141
}	
sl@0
   142
# else
sl@0
   143
int ios_base::_S_index = 0;
sl@0
   144
# endif
sl@0
   145
sl@0
   146
_STLP_EXP_DECLSPEC int _STLP_CALL ios_base::xalloc()
sl@0
   147
{
sl@0
   148
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   149
   get_ios_xalloc_L()._M_lock.iState = _ENeedsNormalInit;
sl@0
   150
   get_ios_xalloc_L()._M_lock.iPtr = 0;
sl@0
   151
   get_ios_xalloc_L()._M_lock.iReentry = 0;   
sl@0
   152
   _STLP_auto_lock sentry(get_ios_xalloc_L());    
sl@0
   153
   return get_ios_base_S_index()++;
sl@0
   154
# else
sl@0
   155
  static _STLP_STATIC_MUTEX L _STLP_MUTEX_INITIALIZER;
sl@0
   156
  _STLP_auto_lock sentry(L);
sl@0
   157
  return _S_index++;
sl@0
   158
# endif  
sl@0
   159
  
sl@0
   160
}
sl@0
   161
sl@0
   162
_STLP_EXP_DECLSPEC long& ios_base::iword(int index) {
sl@0
   163
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   164
	get_ios_iword_dummy() = 0;
sl@0
   165
# else
sl@0
   166
	static long dummy = 0;
sl@0
   167
# endif  
sl@0
   168
sl@0
   169
  pair<long*, size_t> tmp = _Stl_expand_array(_M_iwords, _M_num_iwords, index);
sl@0
   170
  if (tmp.first) {              // The allocation, if any, succeeded.
sl@0
   171
    _M_iwords = tmp.first;
sl@0
   172
    _M_num_iwords = tmp.second;
sl@0
   173
    return _M_iwords[index];
sl@0
   174
  }
sl@0
   175
  else {
sl@0
   176
    _M_setstate_nothrow(badbit);
sl@0
   177
    _M_check_exception_mask();
sl@0
   178
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   179
	return (get_ios_iword_dummy());
sl@0
   180
# else
sl@0
   181
	return dummy;
sl@0
   182
# endif    
sl@0
   183
  }
sl@0
   184
}
sl@0
   185
sl@0
   186
 
sl@0
   187
_STLP_EXP_DECLSPEC void*& ios_base::pword(int index) {
sl@0
   188
# if !defined(__LIBSTD_CPP_SYMBIAN32_WSD__) && !defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   189
	static void* dummy = 0;
sl@0
   190
# endif  
sl@0
   191
sl@0
   192
  pair<void**, size_t> tmp = _Stl_expand_array(_M_pwords, _M_num_pwords, index);
sl@0
   193
  if (tmp.first) {              // The allocation, if any, succeeded.
sl@0
   194
    _M_pwords = tmp.first;
sl@0
   195
    _M_num_pwords = tmp.second;
sl@0
   196
    return _M_pwords[index];
sl@0
   197
  }
sl@0
   198
  else {
sl@0
   199
    _M_setstate_nothrow(badbit);
sl@0
   200
    _M_check_exception_mask();
sl@0
   201
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   202
	return (get_ios_pword_dummy());
sl@0
   203
# else
sl@0
   204
	return dummy;
sl@0
   205
# endif    
sl@0
   206
  }
sl@0
   207
}
sl@0
   208
sl@0
   209
_STLP_EXP_DECLSPEC void ios_base::register_callback(event_callback __fn, int index) {
sl@0
   210
  pair<pair<event_callback, int>*, size_t> tmp
sl@0
   211
    = _Stl_expand_array(_M_callbacks, _M_num_callbacks, (int)_M_callback_index /* fbp: index ??? */ );
sl@0
   212
  if (tmp.first) {
sl@0
   213
    _M_callbacks = tmp.first;
sl@0
   214
    _M_num_callbacks = tmp.second;
sl@0
   215
    _M_callbacks[_M_callback_index++] = make_pair(__fn, index);
sl@0
   216
  }
sl@0
   217
  else {
sl@0
   218
    _M_setstate_nothrow(badbit);
sl@0
   219
    _M_check_exception_mask();
sl@0
   220
  }
sl@0
   221
}
sl@0
   222
sl@0
   223
// Invokes all currently registered callbacks for a particular event.
sl@0
   224
// Behaves correctly even if one of the callbacks adds a new callback.
sl@0
   225
_STLP_EXP_DECLSPEC void ios_base::_M_invoke_callbacks(event E) {
sl@0
   226
  for (size_t i = _M_callback_index; i > 0; --i) {
sl@0
   227
    event_callback f = _M_callbacks[i-1].first;
sl@0
   228
    int n = _M_callbacks[i-1].second;
sl@0
   229
    f(E, *this, n);
sl@0
   230
  }
sl@0
   231
}
sl@0
   232
sl@0
   233
// This function is called if the state, rdstate(), has a bit set
sl@0
   234
// that is also set in the exception mask exceptions().
sl@0
   235
_STLP_EXP_DECLSPEC void ios_base::_M_throw_failure() {
sl@0
   236
  const char* arg ;
sl@0
   237
# if 0
sl@0
   238
  char buffer[256];
sl@0
   239
  char* ptr;
sl@0
   240
  strcpy(buffer, "ios failure: rdstate = 0x");
sl@0
   241
  ptr = __write_integer(buffer+strlen(buffer), ios_base::hex, __STATIC_CAST(unsigned long,_M_iostate)); 
sl@0
   242
  strcpy(ptr, " mask = 0x");
sl@0
   243
  ptr = __write_integer(buffer+strlen(buffer), ios_base::hex, __STATIC_CAST(unsigned long,_M_exception_mask)); 
sl@0
   244
  *ptr = 0;
sl@0
   245
  arg = buffer;
sl@0
   246
# else
sl@0
   247
  arg = "ios failure";
sl@0
   248
# endif
sl@0
   249
sl@0
   250
# ifndef _STLP_USE_EXCEPTIONS
sl@0
   251
  fputs(arg, stderr);
sl@0
   252
# else
sl@0
   253
  throw failure(arg);
sl@0
   254
# endif
sl@0
   255
}
sl@0
   256
sl@0
   257
// Copy x's state to *this.  This member function is used in the 
sl@0
   258
// implementation of basic_ios::copyfmt.  Does not copy _M_exception_mask
sl@0
   259
// or _M_iostate.  
sl@0
   260
_STLP_EXP_DECLSPEC void ios_base::_M_copy_state(const ios_base& x) {
sl@0
   261
  _M_fmtflags  = x._M_fmtflags; // Copy the flags, except for _M_iostate
sl@0
   262
  _M_openmode  = x._M_openmode; // and _M_exception_mask.
sl@0
   263
  _M_seekdir   = x._M_seekdir;
sl@0
   264
  _M_precision = x._M_precision;
sl@0
   265
  _M_width     = x._M_width;
sl@0
   266
  
sl@0
   267
  if (_M_locale != x._M_locale) {
sl@0
   268
    _M_locale = x._M_locale;
sl@0
   269
    _M_cached_ctype = x._M_cached_ctype;
sl@0
   270
    _M_cached_numpunct = x._M_cached_numpunct;
sl@0
   271
  }
sl@0
   272
sl@0
   273
  if (x._M_callbacks) {
sl@0
   274
    pair<event_callback, int>* tmp = _Stl_copy_array(x._M_callbacks, x._M_callback_index);
sl@0
   275
    if (tmp) {
sl@0
   276
      free(_M_callbacks);
sl@0
   277
      _M_callbacks = tmp;
sl@0
   278
      _M_num_callbacks = _M_callback_index = x._M_callback_index;
sl@0
   279
    }
sl@0
   280
    else {
sl@0
   281
      _M_setstate_nothrow(badbit);
sl@0
   282
      _M_check_exception_mask();
sl@0
   283
    }
sl@0
   284
  }
sl@0
   285
sl@0
   286
  if (x._M_iwords) {
sl@0
   287
    long* tmp = _Stl_copy_array(x._M_iwords, x._M_num_iwords);
sl@0
   288
    if (tmp) {
sl@0
   289
      free(_M_iwords);
sl@0
   290
      _M_iwords = tmp;
sl@0
   291
      _M_num_iwords = x._M_num_iwords;
sl@0
   292
    }
sl@0
   293
    else {
sl@0
   294
      _M_setstate_nothrow(badbit);
sl@0
   295
      _M_check_exception_mask();
sl@0
   296
    }
sl@0
   297
  }
sl@0
   298
sl@0
   299
  if (x._M_pwords) {
sl@0
   300
    void** tmp = _Stl_copy_array(x._M_pwords, x._M_num_pwords);
sl@0
   301
    if (tmp) {
sl@0
   302
      free(_M_pwords);
sl@0
   303
      _M_pwords = tmp;
sl@0
   304
      _M_num_pwords = x._M_num_pwords;
sl@0
   305
    }
sl@0
   306
    else {
sl@0
   307
      _M_setstate_nothrow(badbit);
sl@0
   308
      _M_check_exception_mask();
sl@0
   309
    }
sl@0
   310
  }
sl@0
   311
}
sl@0
   312
sl@0
   313
sl@0
   314
// ios's (protected) default constructor.  The standard says that all 
sl@0
   315
// fields have indeterminate values; we initialize them to zero for
sl@0
   316
// simplicity.  The only thing that really matters is that the arrays
sl@0
   317
// are all initially null pointers, and the array element counts are all
sl@0
   318
// initially zero.
sl@0
   319
_STLP_EXP_DECLSPEC ios_base::ios_base()
sl@0
   320
  : _M_fmtflags(0), _M_iostate(0), _M_openmode(0), _M_seekdir(0),
sl@0
   321
    _M_exception_mask(0),
sl@0
   322
    _M_precision(0), _M_width(0),
sl@0
   323
    _M_locale(),
sl@0
   324
    _M_callbacks(0), _M_num_callbacks(0), _M_callback_index(0),
sl@0
   325
    _M_iwords(0), _M_num_iwords(0),
sl@0
   326
    _M_pwords(0),
sl@0
   327
    _M_num_pwords(0) , _M_cached_ctype(0), _M_cached_numpunct(0)
sl@0
   328
{ }
sl@0
   329
sl@0
   330
// ios's destructor.
sl@0
   331
_STLP_EXP_DECLSPEC ios_base::~ios_base() {
sl@0
   332
  _M_invoke_callbacks(erase_event);
sl@0
   333
  free(_M_callbacks);
sl@0
   334
  free(_M_iwords);
sl@0
   335
  free(_M_pwords);
sl@0
   336
}
sl@0
   337
sl@0
   338
sl@0
   339
#ifndef __SYMBIAN32__ 
sl@0
   340
sl@0
   341
template <class _CharT, class _Traits>
sl@0
   342
_STLP_EXP_DECLSPEC locale basic_ios<_CharT, _Traits>::imbue(const locale& __loc)
sl@0
   343
{
sl@0
   344
  locale __tmp = ios_base::imbue(__loc);
sl@0
   345
sl@0
   346
  if (_M_streambuf)
sl@0
   347
    _M_streambuf->pubimbue(__loc);
sl@0
   348
sl@0
   349
  // no throwing here
sl@0
   350
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   351
  this->_M_cached_ctype = __loc._M_get_facet(ctype<char_type>::GetFacetLocaleId()) ;
sl@0
   352
  this->_M_cached_numpunct = __loc._M_get_facet(numpunct<char_type>::GetFacetLocaleId()) ;
sl@0
   353
#else
sl@0
   354
  this->_M_cached_ctype = __loc._M_get_facet(ctype<char_type>::id) ;
sl@0
   355
  this->_M_cached_numpunct = __loc._M_get_facet(numpunct<char_type>::id) ;
sl@0
   356
#endif //__LIBSTD_CPP_SYMBIAN32_WSD__
sl@0
   357
  this->_M_cached_grouping = ((numpunct<char_type>*)_M_cached_numpunct)->grouping() ;
sl@0
   358
  return __tmp;
sl@0
   359
}
sl@0
   360
#endif //#ifndef __SYMBIAN32__ 
sl@0
   361
sl@0
   362
//----------------------------------------------------------------------
sl@0
   363
// Force instantiation of basic_ios
sl@0
   364
// For DLL exports, they are already instantiated.
sl@0
   365
#  if !defined(_STLP_NO_FORCE_INSTANTIATE)
sl@0
   366
template class _STLP_CLASS_DECLSPEC basic_ios<char, char_traits<char> >;
sl@0
   367
#   ifndef _STLP_NO_WCHAR_T
sl@0
   368
template class _STLP_CLASS_DECLSPEC basic_ios<wchar_t, char_traits<wchar_t> >;
sl@0
   369
#   endif /* _STLP_NO_WCHAR_T */
sl@0
   370
#  endif
sl@0
   371
sl@0
   372
_STLP_END_NAMESPACE
sl@0
   373
sl@0
   374
// Local Variables:
sl@0
   375
// mode:C++
sl@0
   376
// End: