os/ossrv/stdcpp/src/codecvt.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
 * Copyright (c) 1999
sl@0
     3
 * Silicon Graphics Computer Systems, Inc.
sl@0
     4
 *
sl@0
     5
 * Copyright (c) 1999 
sl@0
     6
 * Boris Fomitchev
sl@0
     7
 *
sl@0
     8
 * This material is provided "as is", with absolutely no warranty expressed
sl@0
     9
 * or implied. Any use is at your own risk.
sl@0
    10
 *
sl@0
    11
 * Permission to use or copy this software for any purpose is hereby granted 
sl@0
    12
 * without fee, provided the above notices are retained on all copies.
sl@0
    13
 * Permission to modify the code and to distribute modified code is granted,
sl@0
    14
 * provided the above notices are retained, and a notice that the code was
sl@0
    15
 * modified is included with the above copyright notice.
sl@0
    16
 *
sl@0
    17
 */ 
sl@0
    18
# include "stlport_prefix.h"
sl@0
    19
sl@0
    20
# ifndef _STLP_NO_MBSTATE_T
sl@0
    21
sl@0
    22
#include <stl/_codecvt.h>
sl@0
    23
#include <stl/_algobase.h>
sl@0
    24
sl@0
    25
_STLP_BEGIN_NAMESPACE
sl@0
    26
sl@0
    27
//----------------------------------------------------------------------
sl@0
    28
// codecvt<char, char, mbstate_t>
sl@0
    29
sl@0
    30
_STLP_EXP_DECLSPEC codecvt<char, char, mbstate_t>::~codecvt() {}
sl@0
    31
sl@0
    32
_STLP_EXP_DECLSPEC int codecvt<char, char, mbstate_t>::do_length(const mbstate_t&,
sl@0
    33
                                              const  char* from, 
sl@0
    34
                                              const  char* end,
sl@0
    35
                                              size_t mx) const
sl@0
    36
{
sl@0
    37
  return (int)(min) ( __STATIC_CAST(size_t, (end - from)), mx);
sl@0
    38
}
sl@0
    39
sl@0
    40
_STLP_EXP_DECLSPEC int codecvt<char, char, mbstate_t>::do_max_length() const _STLP_NOTHROW
sl@0
    41
{
sl@0
    42
 return 1; 
sl@0
    43
}
sl@0
    44
sl@0
    45
bool _STLP_EXP_DECLSPEC 
sl@0
    46
codecvt<char, char, mbstate_t>::do_always_noconv() const _STLP_NOTHROW
sl@0
    47
{
sl@0
    48
  return true;
sl@0
    49
}
sl@0
    50
sl@0
    51
_STLP_EXP_DECLSPEC int 
sl@0
    52
codecvt<char, char, mbstate_t>::do_encoding() const _STLP_NOTHROW
sl@0
    53
{
sl@0
    54
  return 1; 
sl@0
    55
}
sl@0
    56
sl@0
    57
sl@0
    58
_STLP_EXP_DECLSPEC codecvt_base::result 
sl@0
    59
codecvt<char, char, mbstate_t>::do_unshift(mbstate_t& /* __state */,
sl@0
    60
                                           char*      __to,
sl@0
    61
                                           char*      /* __to_limit */,
sl@0
    62
                                           char*&     __to_next) const
sl@0
    63
{ __to_next = __to; return noconv; }
sl@0
    64
sl@0
    65
 _STLP_EXP_DECLSPEC codecvt_base::result 
sl@0
    66
codecvt<char, char, mbstate_t>::do_in (mbstate_t&   /* __state */ , 
sl@0
    67
                                       const char*  __from,
sl@0
    68
                                       const char*  /* __from_end */,
sl@0
    69
                                       const char*& __from_next,
sl@0
    70
                                       char*        __to,
sl@0
    71
                                       char*        /* __to_end */,
sl@0
    72
                                       char*&       __to_next) const
sl@0
    73
{ __from_next = __from; __to_next   = __to; return noconv; }
sl@0
    74
sl@0
    75
_STLP_EXP_DECLSPEC codecvt_base::result 
sl@0
    76
codecvt<char, char, mbstate_t>::do_out(mbstate_t&   /* __state */,
sl@0
    77
                                       const char*  __from,
sl@0
    78
                                       const char*  /* __from_end */,
sl@0
    79
                                       const char*& __from_next,
sl@0
    80
                                       char*        __to,
sl@0
    81
                                       char*        /* __to_limit */,
sl@0
    82
                                       char*&       __to_next) const
sl@0
    83
{ __from_next = __from; __to_next   = __to; return noconv; }
sl@0
    84
sl@0
    85
sl@0
    86
# ifndef _STLP_NO_WCHAR_T
sl@0
    87
//----------------------------------------------------------------------
sl@0
    88
// codecvt<wchar_t, char, mbstate_t>
sl@0
    89
sl@0
    90
_STLP_EXP_DECLSPEC  codecvt<wchar_t, char, mbstate_t>::~codecvt() {}
sl@0
    91
sl@0
    92
sl@0
    93
_STLP_EXP_DECLSPEC codecvt<wchar_t, char, mbstate_t>::result 
sl@0
    94
codecvt<wchar_t, char, mbstate_t>::do_out(state_type&         /* state */, 
sl@0
    95
                                          const intern_type*  from,
sl@0
    96
                                          const intern_type*  from_end,
sl@0
    97
                                          const intern_type*& from_next,
sl@0
    98
                                          extern_type*        to,
sl@0
    99
                                          extern_type*        to_limit,
sl@0
   100
                                          extern_type*&       to_next) const
sl@0
   101
{
sl@0
   102
  ptrdiff_t len = (min) (from_end - from, to_limit - to);
sl@0
   103
  copy(from, from + len, to);
sl@0
   104
  from_next = from + len;
sl@0
   105
  to_next   = to   + len;
sl@0
   106
  return ok;
sl@0
   107
}
sl@0
   108
sl@0
   109
_STLP_EXP_DECLSPEC codecvt<wchar_t, char, mbstate_t>::result 
sl@0
   110
codecvt<wchar_t, char, mbstate_t>::do_in (state_type&       /* state */,
sl@0
   111
                                          const extern_type*  from,
sl@0
   112
                                          const extern_type*  from_end,
sl@0
   113
                                          const extern_type*& from_next,
sl@0
   114
                                          intern_type*        to,
sl@0
   115
                                          intern_type*        to_limit,
sl@0
   116
                                          intern_type*&       to_next) const
sl@0
   117
{
sl@0
   118
  ptrdiff_t len = (min) (from_end - from, to_limit - to);
sl@0
   119
  copy(from, from + len, to);
sl@0
   120
  from_next = from + len;
sl@0
   121
  to_next   = to   + len;
sl@0
   122
  return ok;
sl@0
   123
}
sl@0
   124
sl@0
   125
_STLP_EXP_DECLSPEC codecvt<wchar_t, char, mbstate_t>::result 
sl@0
   126
codecvt<wchar_t, char, mbstate_t>::do_unshift(state_type&   /* state */,
sl@0
   127
                                              extern_type*  to, 
sl@0
   128
                                              extern_type*  ,
sl@0
   129
                                              extern_type*& to_next) const
sl@0
   130
{
sl@0
   131
  to_next = to;
sl@0
   132
  return noconv;
sl@0
   133
}
sl@0
   134
sl@0
   135
_STLP_EXP_DECLSPEC int codecvt<wchar_t, char, mbstate_t>::do_encoding() const _STLP_NOTHROW {
sl@0
   136
  //return 1;
sl@0
   137
  return 0;//don't know how many char required to make wchar_t, depends on locale
sl@0
   138
}
sl@0
   139
sl@0
   140
sl@0
   141
_STLP_EXP_DECLSPEC bool codecvt<wchar_t, char, mbstate_t>::do_always_noconv() const _STLP_NOTHROW
sl@0
   142
{
sl@0
   143
 // return true; //gnu bug fix
sl@0
   144
  return false;
sl@0
   145
}
sl@0
   146
sl@0
   147
_STLP_EXP_DECLSPEC int codecvt<wchar_t, char, mbstate_t>::do_length(const  state_type&,
sl@0
   148
                                                 const  extern_type* from, 
sl@0
   149
                                                 const  extern_type* end,
sl@0
   150
                                                 size_t mx) const 
sl@0
   151
{
sl@0
   152
  return (int)(min) ((size_t) (end - from), mx);
sl@0
   153
}
sl@0
   154
sl@0
   155
_STLP_EXP_DECLSPEC int codecvt<wchar_t, char, mbstate_t>::do_max_length() const _STLP_NOTHROW {
sl@0
   156
  return 1;
sl@0
   157
}
sl@0
   158
# endif /* wchar_t */
sl@0
   159
sl@0
   160
_STLP_END_NAMESPACE
sl@0
   161
sl@0
   162
# endif /* _STLP_NO_MBSTATE_T */
sl@0
   163
sl@0
   164
// Local Variables:
sl@0
   165
// mode:C++
sl@0
   166
// End:
sl@0
   167