📄 timenamedfilestream.hpp
字号:
#pragma ident "$Id$"/** * @file TimeNamedFileStream.hpp * Writes data to a file whose name is derived from a pattern and a nominal epoch. */#ifndef GPSTK_TIME_NAMED_FILE_STREAM_HPP#define GPSTK_TIME_NAMED_FILE_STREAM_HPP//============================================================================//// This file is part of GPSTk, the GPS Toolkit.//// The GPSTk 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 2.1 of the License, or// any later version.//// The GPSTk 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 GPSTk; if not, write to the Free Software Foundation,// Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA//// Copyright 2004, The University of Texas at Austin////============================================================================//============================================================================////This software developed by Applied Research Laboratories at the University of//Texas at Austin, under contract to an agency or agencies within the U.S.//Department of Defense. The U.S. Government retains all rights to use,//duplicate, distribute, disclose, or release this software.////Pursuant to DoD Directive 523024//// DISTRIBUTION STATEMENT A: This software has been approved for public// release, distribution is unlimited.////=============================================================================#include <string>#include "Exception.hpp"#include "DayTime.hpp"#include "FFStream.hpp"namespace gpstk{ /** @addtogroup FFStream */ //@{ template <class BaseStream> class TimeNamedFileStream : public BaseStream { public: TimeNamedFileStream() : omode(std::ios::in), debugLevel(0) {}; TimeNamedFileStream( const std::string fs, std::ios::openmode mode = std::ios::in) : filespec(fs), omode(mode), debugLevel(0) {}; virtual ~TimeNamedFileStream(void) {}; /// overrides open to just set the filespec, Note that this does /// not actually open a file virtual void open(const char* fs, std::ios::openmode mode = std::ios::in) { setFilespec(fs); omode = mode; }; void setFilespec(const std::string fs) { filespec=fs; currentFilename=""; } std::string getFilespec(void) const { return filespec;} // Get the filename of the current file std::string getCurrentFilename(void) const { return currentFilename; }; // Return the time used to generate the current file name DayTime getCurrentTime(void) const { return currentTime; }; // Update the file name, returns true if the file name changed bool updateFileName(const DayTime& t=DayTime()) { bool openedNewFile = false; const std::string newFilename=t.printf(filespec); if (currentFilename.size() == 0 && newFilename.size() > 0) { currentFilename = newFilename; currentTime = t; BaseStream::open(currentFilename.c_str(), omode); if (debugLevel) std::cout << "Opened " << currentFilename << std::endl; openedNewFile=true; } else if (newFilename == currentFilename) { currentTime = t; openedNewFile=false; } else { if (debugLevel) std::cout << "Closing " << currentFilename << std::endl; BaseStream::close(); currentFilename = newFilename; currentTime = t; BaseStream::open(currentFilename.c_str(), omode); if (debugLevel) std::cout << "Opened " << currentFilename << std::endl; openedNewFile=true; } return openedNewFile; }; int debugLevel; private: /// Pattern on which to create new files std::string filespec; /// Name of the current output file. std::string currentFilename; /// The time used to generate currentFilename DayTime currentTime; // The flags to use when opening the files std::ios::openmode omode; }; // end class TimeNamedFileStream //@}} // end namespace gpstk#endif // GPSTK_TIME_NAMED_FILE_STREAM_HPP
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -