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 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501
|
/*
* utils.cc - Common utility routines.
*
* Copyright (C) 1998-1999 Jeffrey S. Freedman
* Copyright (C) 2000-2001 The Exult Team
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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 Library General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#ifndef ALPHA_LINUX_CXX
# include <cctype>
# include <cstdio>
# include <cstdlib>
# include <cstring>
# include <fstream>
#endif
#include <map>
#include <list>
#ifdef MACOS
#include <stat.h>
#else
#include <sys/stat.h>
#endif
#include <unistd.h>
#include "exceptions.h"
#include "utils.h"
using std::cerr;
using std::string;
// Function prototypes
static void switch_slashes(string & name);
static bool base_to_uppercase(string& str, int count);
// Wrap a few functions
inline int stat(const std::string &file_name, struct stat *buf)
{
return stat(file_name.c_str(),buf);
}
// Ugly hack for supporting different paths
static std::map<string, string> path_map;
static std::map<string, string> stored_path_map;
void store_system_paths()
{
stored_path_map = path_map;
}
void reset_system_paths()
{
path_map = stored_path_map;
}
void add_system_path(const string& key, const string& value)
{
path_map[key] = value;
}
/*
* Has a path been entered?
*/
bool is_system_path_defined(const char *path)
{
const string s(path);
return path_map.find(s) != path_map.end();
}
/*
* Convert an exult path (e.g. "<DATA>/exult.flx") into a system path
*/
string get_system_path(const string &path)
{
string new_path;
string::size_type pos;
#if defined(__MORPHOS__) || defined(AMIGA)
pos = path.find( "../" );
if( pos != string::npos )
new_path = path.substr( 0, pos )+path.substr( pos+2 );
else
new_path = path;
pos = new_path.find( "./" );
if( pos != string::npos )
new_path = new_path.substr( 0, pos )+new_path.substr( pos+2 );
pos = new_path.find('/');
// If there is no separator, return the path as is
if(pos != string::npos)
{
// See if we can translate this prefix
string new_prefix(path_map[new_path.substr(0, pos).c_str()]);
// If the prefix path is not recognised, return the path as is
if(!new_prefix.empty())
new_path = new_prefix + new_path.substr(pos);
}
#else
pos = path.find('/');
// If there is no separator, return the path as is
if(pos == string::npos)
new_path = path;
else
{
// See if we can translate this prefix
string new_prefix(path_map[path.substr(0, pos).c_str()]);
// If the prefix path is not recognised, return the path as is
if(new_prefix.empty()) {
new_path = path;
} else {
new_path = new_prefix + path.substr(pos);
}
}
#endif
switch_slashes(new_path);
return new_path;
}
/*
* Convert a buffer to upper-case.
*
* Output: ->original buffer, changed to upper case.
*/
void to_uppercase(string &str)
{
for(string::iterator X = str.begin(); X != str.end(); ++X)
{
#if (defined(BEOS) || defined(OPENBSD) || defined(CYGWIN) || defined(__MORPHOS__))
if ((*X >= 'a') && (*X <= 'z')) *X -= 32;
#else
*X = std::toupper(*X);
#endif
}
}
string to_uppercase(const std::string &str)
{
string s(str);
to_uppercase(s);
return s;
}
/*
* Convert just the last 'count' parts of a filename to uppercase.
* returns false if there are less than 'count' parts
*/
static bool base_to_uppercase(string& str, int count)
{
if (count <= 0) return true;
int todo = count;
// Go backwards.
string::reverse_iterator X;
for(X = str.rbegin(); X != str.rend(); ++X)
{
// Stop at separator.
if (*X == '/' || *X == '\\' || *X == ':')
todo--;
if (todo <= 0)
break;
#if (defined(BEOS) || defined(OPENBSD) || defined(CYGWIN) || defined(__MORPHOS__))
if ((*X >= 'a') && (*X <= 'z')) *X -= 32;
#else
*X = std::toupper(*X);
#endif
}
if (X == str.rend())
todo--; // start of pathname counts as separator too
// false if it didn't reach 'count' parts
return (todo <= 0);
}
static void switch_slashes(
string & name
)
{
#ifdef WIN32
for(string::iterator X = name.begin(); X != name.end(); ++X)
{
if(*X == '/' )
*X = '\\';
}
#elif defined(MACOS)
// We use a component-wise algorithm (suggested by Yorick)
// Basically, split the path along the "/" seperators
// If a component is empty or '.', remove it. If it's '..', replace it
// with the empty string. convert all / to :
string::size_type begIdx, endIdx;;
string component;
string new_name;
if( name.at(0) != '/' )
new_name = ":";
begIdx = name.find_first_not_of('/');
while( begIdx != string::npos )
{
endIdx = name.find_first_of('/', begIdx);
if( endIdx == std::string::npos )
component = name.substr(begIdx);
else
component = name.substr(begIdx, endIdx-begIdx);
if( component == ".." )
new_name += ":";
else if( !component.empty() && component != "." )
{
new_name += component;
if( endIdx != std::string::npos )
new_name += ":";
}
begIdx = name.find_first_not_of('/', endIdx);
}
name = new_name;
#else
// do nothing
#endif
}
/*
* Open a file for input,
* trying the original name (lower case), and the upper case version
* of the name.
*
* Output: 0 if couldn't open.
*/
void U7open
(
std::ifstream& in, // Input stream to open.
const char *fname, // May be converted to upper-case.
bool is_text // Should the file be opened in text mode
)
{
#if defined(MACOS) || (__GNUG__ > 2)
std::ios_base::openmode mode = std::ios::in;
if (!is_text) mode |= std::ios::binary;
#elif defined(XWIN)
int mode = std::ios::in;
#else
int mode = std::ios::in;
if (!is_text) mode |= std::ios::binary;
#endif
string name = get_system_path(fname);
// We first "clear" the stream object. This is done to prevent
// problems when re-using stream objects
in.clear();
int uppercasecount = 0;
do {
in.open(name.c_str(), mode); // Try to open
if (in.good())
return; // found it!
in.clear(); // Must do this again
} while (base_to_uppercase(name, ++uppercasecount));
// file not found.
throw file_open_exception(get_system_path(fname));
}
#ifdef ALPHA_LINUX_CXX
/*
* Wraps around a bug in Compaq's cxx, which doesn't generate an external
* symbol for this one implicitly because of is_text = false
*
* See function above for a functional description
*/
void U7open(std::ifstream& in,
const char *fname)
{
U7open(in, fname, false);
}
#endif
/*
* Open a file for output,
* trying the original name (lower case), and the upper case version
* of the name.
*
* Output: 0 if couldn't open.
*/
void U7open
(
std::ofstream& out, // Output stream to open.
const char *fname, // May be converted to upper-case.
bool is_text // Should the file be opened in text mode
)
{
#if defined(MACOS) || (__GNUG__ > 2)
std::ios_base::openmode mode = std::ios::out | std::ios::trunc;
if (!is_text) mode |= std::ios::binary;
#elif defined(XWIN)
int mode = std::ios::out | std::ios::trunc;
#else
int mode = std::ios::out | std::ios::trunc;
if (!is_text) mode |= std::ios::binary;
#endif
string name = get_system_path(fname);
// We first "clear" the stream object. This is done to prevent
// problems when re-using stream objects
out.clear();
int uppercasecount = 0;
do {
out.open(name.c_str(), mode); // Try to open
if (out.good())
return; // found it!
out.clear(); // Forget ye not
} while (base_to_uppercase(name, ++uppercasecount));
// file not found.
throw file_open_exception(get_system_path(fname));
}
#ifdef ALPHA_LINUX_CXX
/*
* Wraps around a bug in Compaq's cxx, which doesn't generate an external
* symbol for this one implicitly because of is_text = false
*
* See function above for a functional description
*/
void U7open(std::ofstream& out,
const char *fname)
{
U7open(out, fname, false);
}
#endif
/*
* Open a file with the access rights specified in mode,
* works just like fopen but in a system independant fashion.
*
* Output: A pointer to a FILE
*/
std::FILE* U7open
(
const char *fname, // May be converted to upper-case.
const char *mode // File access mode.
)
{
std::FILE* f;
string name = get_system_path(fname);
int uppercasecount = 0;
do {
f = std::fopen(name.c_str(), mode); // Try to open
if (f)
return f; // found it!
} while (base_to_uppercase(name, ++uppercasecount));
// file not found.
throw file_open_exception(get_system_path(fname));
}
/*
* Remove a file taking care of paths etc.
*
*/
void U7remove
(
const char *fname // May be converted to upper-case.
)
{
string name = get_system_path(fname);
std::remove(name.c_str());
}
/*
* See if a file exists.
*/
int U7exists
(
const char *fname // May be converted to upper-case.
)
{
bool exists;
struct stat sbuf;
string name = get_system_path(fname);
int uppercasecount = 0;
do {
exists = (stat(name, &sbuf) == 0);
if (exists)
return true; // found it!
} while (base_to_uppercase(name, ++uppercasecount));
// file not found
return false;
}
/*
* Create a directory
*/
int U7mkdir
(
const char *dirname, // May be converted to upper-case.
int mode
)
{
string name = get_system_path(dirname);
cerr << "creating dir: " << name;
#if (defined(MACOSX) || defined(BEOS))
// remove any trailing slashes
string::size_type pos = name.find_last_not_of('/');
if (pos != string::npos)
name.resize(pos+1);
#endif
#ifdef WIN32
return mkdir(name.c_str());
#else
return mkdir(name.c_str(), mode); // Create dir. if not already there.
#endif
}
/*
* Change the current directory
*/
int U7chdir
(
const char *dirname // May be converted to upper-case.
)
{
#ifdef MACOS
string name(dirname);
switch_slashes(name);
return chdir(name.c_str());
#else
return chdir(dirname);
#endif
}
/*
* Take log2 of a number.
*
* Output: Log2 of n (0 if n==0).
*/
int Log2
(
uint32 n
)
{
int result = 0;
for (n = n>>1; n; n = n>>1)
result++;
return result;
}
/*
* Replacement for non-standard strdup function.
*/
char *newstrdup(const char *s)
{
if(!s)
throw std::invalid_argument("NULL pointer passed to newstrdup");
char *ret=new char[std::strlen(s)+1];
std::strcpy(ret,s);
return ret;
}
|