mirror of https://github.com/BOINC/boinc.git
79 lines
2.1 KiB
C++
79 lines
2.1 KiB
C++
// This file is part of BOINC.
|
|
// http://boinc.berkeley.edu
|
|
// Copyright (C) 2008 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/>.
|
|
|
|
#ifndef _MIOFILE_
|
|
#define _MIOFILE_
|
|
|
|
#ifdef _USING_FCGI_
|
|
#include "boinc_fcgi.h"
|
|
#endif
|
|
|
|
#include <string>
|
|
|
|
#include "mfile.h"
|
|
|
|
|
|
// MIOFILE lets you do formatted I/O to either a FILE or a memory buffer,
|
|
// depending on how you initialize it.
|
|
//
|
|
// output:
|
|
// init_file(): output goes to the FILE* that you specify
|
|
// init_mfile(): output goes to an MFILE (i.e. a memory buffer);
|
|
// you can call MFILE::get_buf() to get the results
|
|
// input:
|
|
// init_file(): input comes from the FILE* that you specify
|
|
// init_buf(): input comes from the buffer you specify.
|
|
// This string is not modified.
|
|
//
|
|
// Why is this here? Because on Windows (9x, maybe all)
|
|
// you can't do fdopen() on a socket.
|
|
|
|
class MIOFILE {
|
|
MFILE* mf;
|
|
char* wbuf;
|
|
int len;
|
|
const char* buf;
|
|
public:
|
|
FILE* f;
|
|
|
|
MIOFILE();
|
|
~MIOFILE();
|
|
void init_mfile(MFILE*);
|
|
#ifndef _USING_FCGI_
|
|
void init_file(FILE*);
|
|
#else
|
|
void init_file(FCGI_FILE *);
|
|
#endif
|
|
void init_buf_read(const char*);
|
|
void init_buf_write(char*, int len);
|
|
int printf(const char* format, ...);
|
|
char* fgets(char*, int);
|
|
int _ungetc(int);
|
|
bool eof();
|
|
inline int _getc() {
|
|
if (f) {
|
|
return fgetc(f);
|
|
}
|
|
return (*buf)?(*buf++):EOF;
|
|
}
|
|
};
|
|
|
|
extern int copy_element_contents(MIOFILE& in, const char* end_tag, char* p, int len);
|
|
extern int copy_element_contents(MIOFILE& in, const char* end_tag, std::string&);
|
|
|
|
#endif
|