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
|
/*
* This file is part of the Advance project.
*
* Copyright (C) 2002, 2004 Andrea Mazzoleni
*
* 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 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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef __FILE_H
#define __FILE_H
#include "except.h"
#include <string>
#include <list>
class filepath {
std::string file;
public:
filepath();
filepath(const filepath& A);
filepath(const std::string& Afile);
~filepath();
const std::string& file_get() const { return file; }
void file_set(const std::string& Afile);
};
typedef std::list<filepath> filepath_container;
class infopath : public filepath {
bool good;
unsigned size;
bool readonly;
public:
infopath();
infopath(const infopath& A);
infopath(const std::string& Afile, bool Agood, unsigned Asize, bool Areadonly);
~infopath();
bool good_get() const { return good; }
void good_set(bool Agood);
unsigned size_get() const { return size; }
void size_set(unsigned Asize);
bool readonly_get() const { return readonly; }
void readonly_set(bool Areadonly);
};
typedef std::list<infopath> zippath_container;
typedef unsigned crc_t;
crc_t crc_compute(const char* data, unsigned len);
crc_t crc_compute(crc_t pred, const char* data, unsigned len);
bool file_exists(const std::string& file);
void file_write(const std::string& path, const char* data, unsigned size);
void file_read(const std::string& path, char* data, unsigned size);
void file_read(const std::string& path, char* data, unsigned offset, unsigned size);
time_t file_time(const std::string& path);
void file_utime(const std::string& path, time_t tod);
unsigned file_size(const std::string& path);
crc_t file_crc(const std::string& path);
void file_copy(const std::string& path1, const std::string& path2);
void file_move(const std::string& path1, const std::string& path2);
void file_remove(const std::string& path1);
void file_mktree(const std::string& path1);
std::string file_temp(const std::string& path) throw ();
std::string file_randomize(const std::string& path, int n) throw ();
std::string file_name(const std::string& file) throw ();
std::string file_dir(const std::string& file) throw ();
std::string file_basename(const std::string& file) throw ();
std::string file_basepath(const std::string& file) throw ();
std::string file_ext(const std::string& file) throw ();
int file_compare(const std::string& path1, const std::string& path2) throw ();
std::string file_adjust(const std::string& path) throw ();
#endif
|