📄 state_bin.cc
字号:
//// state_bin.cc//// Copyright (C) 1996 Limit Point Systems, Inc.//// Author: Curtis Janssen <cljanss@limitpt.com>// Maintainer: LPS//// This file is part of the SC Toolkit.//// The SC Toolkit is free software; you can redistribute it and/or modify// it under the terms of the GNU Library General Public License as published by// the Free Software Foundation; either version 2, or (at your option)// any later version.//// The SC Toolkit 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 Library General Public License// along with the SC Toolkit; see the file COPYING.LIB. If not, write to// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.//// The U.S. Government is granted a limited license as per AL 91-7.//#ifdef __GNUC__#pragma implementation#endif#include <scconfig.h>#include <util/state/state_bin.h>using namespace std;using namespace sc;#define DEBUG 0static ClassDesc StateOutBin_cd( typeid(StateOutBin),"StateOutBin",1,"public StateOutFile");StateOutBin::StateOutBin() : StateOutFile(){ file_position_ = 0;}StateOutBin::StateOutBin(ostream& s): StateOutFile(s){ file_position_ = 0; // needed here since only StateOutFile::open has been called so far put_header();}StateOutBin::StateOutBin(const char *path) : StateOutFile(path){ file_position_ = 0; // needed here since only StateOutFile::open has been called so far put_header();}StateOutBin::~StateOutBin(){ // must close here since close() is overridden in this class close();}intStateOutBin::open(const char *f){ int r = StateOutFile::open(f); put_header(); return r;}voidStateOutBin::close(){ if (buf_ && use_directory()) { int dir_loc = tell(); seek(dir_loc_loc_); put_array_int(&dir_loc,1); seek(dir_loc); put_directory(); } StateOutFile::close();}intStateOutBin::tell(){ return file_position_;}voidStateOutBin::seek(int loc){ file_position_ = loc;#if defined(HAVE_PUBSEEKOFF) buf_->pubseekoff(loc,ios::beg,ios::out);#elif defined(HAVE_SEEKOFF) buf_->seekoff(loc,ios::beg,ios::out);#endif}intStateOutBin::seekable(){#if defined(HAVE_PUBSEEKOFF) || defined(HAVE_SEEKOFF) return 1;#else return 0;#endif}intStateOutBin::use_directory(){ return seekable();}////////////////////////////////////////////////////////////////static ClassDesc StateInBin_cd(typeid(StateInBin), "StateInBin",1,"public StateInFile", 0, create<StateInBin>);StateInBin::StateInBin() : StateInFile(){ file_position_ = 0;}StateInBin::StateInBin(istream& s) : StateInFile(s){ file_position_ = 0; get_header(); find_and_get_directory();}StateInBin::StateInBin(const char *path) : StateInFile(path){ file_position_ = 0; get_header(); find_and_get_directory();}StateInBin::StateInBin(const Ref<KeyVal> &keyval){ char *path = keyval->pcharvalue("file"); if (!path) { ExEnv::errn() << "StateInBin(const Ref<KeyVal>&): no path given" << endl; } open(path); delete[] path;}StateInBin::~StateInBin(){}intStateInBin::open(const char *f){ file_position_ = 0; int r = StateInFile::open(f); get_header(); find_and_get_directory(); return r;}intStateInBin::tell(){ return file_position_;}voidStateInBin::seek(int loc){ file_position_ = loc;#if defined(HAVE_PUBSEEKOFF) buf_->pubseekoff(loc,ios::beg,ios::in);#elif defined(HAVE_SEEKOFF) buf_->seekoff(loc,ios::beg,ios::in);#endif}intStateInBin::seekable(){#if defined(HAVE_PUBSEEKOFF) || defined(HAVE_SEEKOFF) return 1;#else return 0;#endif}intStateInBin::use_directory(){ return seekable();}////////////////////////////////////////////////////////////////int StateOutBin::put_array_void(const void*p,int size){ if (buf_->sputn((const char *)p,size) != size) { ExEnv::errn() << "StateOutBin::put_array_void: failed" << endl; abort(); } file_position_ += size; return size;}int StateInBin::get_array_void(void*p,int size){ if (buf_->sgetn((char*)p,size) != size) { ExEnv::errn() << "StateInBin::get_array_void: failed" << endl; abort(); }#if DEBUG ExEnv::outn() << "Read " << size << " bytes: "; for (int i=0; i<size; i++) { ExEnv::outn() << ((unsigned char*)p)[i]; } ExEnv::outn() << endl;#endif file_position_ += size; return size;}/////////////////////////////////////////////////////////////////////////////// Local Variables:// mode: c++// c-file-style: "CLJ"// End:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -