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
|
// utils.cc
/*
Copyright (C) 1996-2013 John W. Eaton
This file is part of Octave.
Octave is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 3 of the License, or (at your
option) any later version.
Octave 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 General Public License
for more details.
You should have received a copy of the GNU General Public License
along with Octave; see the file COPYING. If not, see
<http://www.gnu.org/licenses/>.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <cctype>
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include <cfloat>
#include <limits>
#include <string>
#include <sys/types.h>
#include <unistd.h>
#include "quit.h"
#include "lo-error.h"
#include "lo-ieee.h"
#include "lo-mappers.h"
#include "lo-utils.h"
bool xis_int_or_inf_or_nan (double x)
{ return xisnan (x) || D_NINT (x) == x; }
bool xis_one_or_zero (double x)
{ return x == 0 || x == 1; }
bool xis_zero (double x)
{ return x == 0; }
bool xtoo_large_for_float (double x)
{
return (xfinite (x) && fabs (x) > std::numeric_limits<float>::max ());
}
bool xtoo_large_for_float (const Complex& x)
{
return (xtoo_large_for_float (x.real ())
|| xtoo_large_for_float (x.imag ()));
}
bool xis_int_or_inf_or_nan (float x)
{ return xisnan (x) || D_NINT (x) == x; }
bool xis_one_or_zero (float x)
{ return x == 0 || x == 1; }
bool xis_zero (float x)
{ return x == 0; }
// Save a string.
char *
strsave (const char *s)
{
if (! s)
return 0;
int len = strlen (s);
char *tmp = new char [len+1];
tmp = strcpy (tmp, s);
return tmp;
}
// This function was adapted from xputenv from Karl Berry's kpathsearch
// library.
// FIXME: make this do the right thing if we don't have a SMART_PUTENV.
void
octave_putenv (const std::string& name, const std::string& value)
{
int new_len = name.length () + value.length () + 2;
char *new_item = static_cast<char*> (gnulib::malloc (new_len));
sprintf (new_item, "%s=%s", name.c_str (), value.c_str ());
// As far as I can see there's no way to distinguish between the
// various errors; putenv doesn't have errno values.
if (gnulib::putenv (new_item) < 0)
(*current_liboctave_error_handler) ("putenv (%s) failed", new_item);
}
std::string
octave_fgets (FILE *f)
{
bool eof;
return octave_fgets (f, eof);
}
std::string
octave_fgets (FILE *f, bool& eof)
{
eof = false;
std::string retval;
int grow_size = 1024;
int max_size = grow_size;
char *buf = static_cast<char *> (gnulib::malloc (max_size));
char *bufptr = buf;
int len = 0;
do
{
if (gnulib::fgets (bufptr, grow_size, f))
{
len = strlen (bufptr);
if (len == grow_size - 1)
{
int tmp = bufptr - buf + grow_size - 1;
grow_size *= 2;
max_size += grow_size;
buf = static_cast<char *> (gnulib::realloc (buf, max_size));
bufptr = buf + tmp;
if (*(bufptr-1) == '\n')
{
*bufptr = '\0';
retval = buf;
}
}
else if (bufptr[len-1] != '\n')
{
bufptr[len++] = '\n';
bufptr[len] = '\0';
retval = buf;
}
else
retval = buf;
}
else
{
if (len == 0)
{
eof = true;
free (buf);
buf = 0;
}
break;
}
}
while (retval.empty ());
if (buf)
free (buf);
octave_quit ();
return retval;
}
std::string
octave_fgetl (FILE *f)
{
bool eof;
return octave_fgetl (f, eof);
}
std::string
octave_fgetl (FILE *f, bool& eof)
{
std::string retval = octave_fgets (f, eof);
size_t len = retval.length ();
if (retval[len-1] == '\n')
retval.resize (len-1);
return retval;
}
// Note that the caller is responsible for repositioning the stream on failure.
template <typename T>
T
read_inf_nan_na (std::istream& is, char c0)
{
T val = 0.0;
switch (c0)
{
case 'i': case 'I':
{
char c1 = is.get ();
if (c1 == 'n' || c1 == 'N')
{
char c2 = is.get ();
if (c2 == 'f' || c2 == 'F')
val = std::numeric_limits<T>::infinity ();
else
is.setstate (std::ios::failbit);
}
else
is.setstate (std::ios::failbit);
}
break;
case 'n': case 'N':
{
char c1 = is.get ();
if (c1 == 'a' || c1 == 'A')
{
char c2 = is.get ();
if (c2 == 'n' || c2 == 'N')
val = std::numeric_limits<T>::quiet_NaN ();
else
{
val = octave_numeric_limits<T>::NA ();
is.putback (c2);
}
}
else
is.setstate (std::ios::failbit);
}
break;
default:
abort ();
}
return val;
}
// Read a double value. Discard any sign on NaN and NA.
template <typename T>
double
octave_read_fp_value (std::istream& is)
{
T val = 0.0;
// FIXME: resetting stream position is likely to fail unless we are
// reading from a file.
std::ios::streampos pos = is.tellg ();
char c1 = ' ';
while (isspace (c1))
c1 = is.get ();
bool neg = false;
switch (c1)
{
case '-':
neg = true;
// fall through...
case '+':
{
char c2 = 0;
c2 = is.get ();
if (c2 == 'i' || c2 == 'I' || c2 == 'n' || c2 == 'N')
val = read_inf_nan_na<T> (is, c2);
else
{
is.putback (c2);
is >> val;
}
if (neg && ! is.fail ())
val = -val;
}
break;
case 'i': case 'I':
case 'n': case 'N':
val = read_inf_nan_na<T> (is, c1);
break;
default:
is.putback (c1);
is >> val;
break;
}
std::ios::iostate status = is.rdstate ();
if (status & std::ios::failbit)
{
is.clear ();
is.seekg (pos);
is.setstate (status);
}
return val;
}
template <typename T>
std::complex<T>
octave_read_cx_fp_value (std::istream& is)
{
T re = 0.0, im = 0.0;
std::complex<T> cx = 0.0;
char ch = ' ';
while (isspace (ch))
ch = is.get ();
if (ch == '(')
{
re = octave_read_value<T> (is);
ch = is.get ();
if (ch == ',')
{
im = octave_read_value<T> (is);
ch = is.get ();
if (ch == ')')
cx = std::complex<T> (re, im);
else
is.setstate (std::ios::failbit);
}
else if (ch == ')')
cx = re;
else
is.setstate (std::ios::failbit);
}
else
{
is.putback (ch);
cx = octave_read_value<double> (is);
}
return cx;
}
template <> OCTAVE_API double octave_read_value (std::istream& is)
{
return octave_read_fp_value<double> (is);
}
template <> OCTAVE_API Complex octave_read_value (std::istream& is)
{
return octave_read_cx_fp_value<double> (is);
}
template <> OCTAVE_API float octave_read_value (std::istream& is)
{
return octave_read_fp_value<float> (is);
}
template <> OCTAVE_API FloatComplex octave_read_value (std::istream& is)
{
return octave_read_cx_fp_value<float> (is);
}
void
octave_write_double (std::ostream& os, double d)
{
if (lo_ieee_is_NA (d))
os << "NA";
else if (lo_ieee_isnan (d))
os << "NaN";
else if (lo_ieee_isinf (d))
os << (d < 0 ? "-Inf" : "Inf");
else
os << d;
}
void
octave_write_complex (std::ostream& os, const Complex& c)
{
os << "(";
octave_write_double (os, real (c));
os << ",";
octave_write_double (os, imag (c));
os << ")";
}
void
octave_write_float (std::ostream& os, float d)
{
if (lo_ieee_is_NA (d))
os << "NA";
else if (lo_ieee_isnan (d))
os << "NaN";
else if (lo_ieee_isinf (d))
os << (d < 0 ? "-Inf" : "Inf");
else
os << d;
}
void
octave_write_float_complex (std::ostream& os, const FloatComplex& c)
{
os << "(";
octave_write_float (os, real (c));
os << ",";
octave_write_float (os, imag (c));
os << ")";
}
|