2012-02-03 18:33:39 +00:00
|
|
|
// This file is part of BOINC.
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2012 University of California
|
|
|
|
//
|
|
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation,
|
|
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// BOINC 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 Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
2012-02-04 00:18:37 +00:00
|
|
|
|
|
|
|
// asynchronous file operations
|
2012-02-03 18:33:39 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef _ASYNC_FILE_
|
|
|
|
#define _ASYNC_FILE_
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
2012-02-06 06:06:44 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include "zlib.h"
|
|
|
|
#else
|
|
|
|
#include <zlib.h>
|
|
|
|
#endif
|
|
|
|
|
2013-08-23 00:06:09 +00:00
|
|
|
#include "filesys.h"
|
2012-02-06 06:06:44 +00:00
|
|
|
#include "md5.h"
|
|
|
|
|
2012-02-03 18:33:39 +00:00
|
|
|
struct FILE_INFO;
|
|
|
|
struct ACTIVE_TASK;
|
|
|
|
|
2012-02-08 21:14:34 +00:00
|
|
|
#define ASYNC_FILE_THRESHOLD 1e7
|
2013-04-03 00:23:37 +00:00
|
|
|
// use async ops for files exceeding this size
|
2012-02-06 20:41:26 +00:00
|
|
|
|
2012-02-04 00:18:37 +00:00
|
|
|
// Used to copy a file from project dir to slot dir;
|
|
|
|
// when done, start the task again.
|
|
|
|
//
|
2012-02-03 18:33:39 +00:00
|
|
|
struct ASYNC_COPY {
|
|
|
|
ACTIVE_TASK* atp;
|
2012-03-21 18:36:00 +00:00
|
|
|
FILE_INFO* fip;
|
2012-02-03 18:33:39 +00:00
|
|
|
FILE* in, *out;
|
2012-05-09 16:11:50 +00:00
|
|
|
char to_path[MAXPATHLEN], temp_path[MAXPATHLEN];
|
2012-02-03 18:33:39 +00:00
|
|
|
|
|
|
|
ASYNC_COPY();
|
|
|
|
~ASYNC_COPY();
|
|
|
|
|
2012-03-21 18:36:00 +00:00
|
|
|
int init(
|
|
|
|
ACTIVE_TASK*, FILE_INFO*, const char* from_path, const char* _to_path
|
|
|
|
);
|
2012-02-03 18:33:39 +00:00
|
|
|
int copy_chunk();
|
|
|
|
void error(int);
|
|
|
|
};
|
|
|
|
|
2012-02-04 00:18:37 +00:00
|
|
|
// Used to verify and possibly decompress a file
|
|
|
|
// after it has been downloaded.
|
|
|
|
// When done, mark it as present.
|
|
|
|
//
|
|
|
|
struct ASYNC_VERIFY {
|
|
|
|
FILE_INFO* fip;
|
2012-02-06 06:06:44 +00:00
|
|
|
md5_state_t md5_state;
|
|
|
|
FILE* in, *out;
|
|
|
|
gzFile gzin;
|
2012-05-09 16:11:50 +00:00
|
|
|
char inpath[MAXPATHLEN], temp_path[MAXPATHLEN], outpath[MAXPATHLEN];
|
2012-02-04 00:18:37 +00:00
|
|
|
|
2013-04-03 00:23:37 +00:00
|
|
|
ASYNC_VERIFY(){};
|
|
|
|
~ASYNC_VERIFY(){};
|
2012-02-06 20:41:26 +00:00
|
|
|
|
2012-02-04 00:18:37 +00:00
|
|
|
int init(FILE_INFO*);
|
|
|
|
int verify_chunk();
|
2012-02-06 22:57:36 +00:00
|
|
|
void finish();
|
|
|
|
void error(int);
|
2012-02-04 00:18:37 +00:00
|
|
|
};
|
|
|
|
|
2012-02-03 18:33:39 +00:00
|
|
|
extern std::vector<ASYNC_VERIFY*> async_verifies;
|
|
|
|
extern std::vector<ASYNC_COPY*> async_copies;
|
|
|
|
|
|
|
|
extern void remove_async_copy(ASYNC_COPY*);
|
2012-02-04 00:18:37 +00:00
|
|
|
extern void remove_async_verify(ASYNC_VERIFY*);
|
2012-02-03 18:33:39 +00:00
|
|
|
extern bool do_async_file_ops();
|
|
|
|
|
|
|
|
#endif
|