00001 // OSB library ************************************************ -*- C++ -*- 00006 /* 00007 AUTHOR(S): Stephan Broennimann (vb) 00008 00009 RCS information 00010 $Name: OSB_060808 $ 00011 $Revision: 1.13 $ 00012 00013 License 00014 OSB rating and billing library for communication networks 00015 Copyright (C) 2004, 2005, 2006 OSB systems 00016 00017 This file may be distributed and/or modify under the terms of the 00018 GNU General Public License (GPL) as published by the Free Software 00019 Foundation which is provided in the file LICENSE.GPL included in the 00020 packaging of this file. 00021 00022 The file is distributed in the hope that it will be useful, but WITHOUT 00023 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00024 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 00025 for more details. 00026 00027 Holders of a OSB Commercial License may use this file under the terms 00028 and conditions of this commercial license. 00029 */ 00030 #ifndef _FILECDRINPUT_H_ 00031 #define _FILECDRINPUT_H_ 00032 00033 // ************************************************************************ 00034 // included header files 00035 // + standard includes 00036 00037 // + libraries 00038 00039 // + local headers 00040 #include "cdrfile.h" 00041 #include "recordstream.h" 00042 00043 // + class declarations 00044 namespace OSB_LIB { 00045 class OsbErrors; 00046 } 00047 00048 // ************************************************************************ 00049 // namespace extensions 00050 namespace OSB_LIB { 00051 00052 // ************************************************************************ 00053 // forward declarations 00054 00055 // ************************************************************************ 00056 // type definitions 00057 00058 // ************************************************************************ 00059 // class definitions 00063 class FileCdrInput { 00064 public: 00066 enum GetRet { 00067 grOk = 0, 00068 grEof = 1, 00069 grErr = 2 00070 }; 00071 00072 public: 00074 FileCdrInput(); 00075 00076 private: 00078 FileCdrInput(const FileCdrInput&); 00080 FileCdrInput& operator=(const FileCdrInput&); 00081 00082 public: 00093 bool getNextStream( 00094 const OSB_DB::Session& session, 00095 const ModuleId processor 00096 ); 00097 00106 OsbError openFile( 00107 const std::string& baseDir 00108 ); 00109 00118 GetRet getAsn1( 00119 Asn1Reader& reader, 00120 OsbError& error 00121 ); 00122 00130 GetRet getLine( 00131 std::string& dest, 00132 OsbError& error 00133 ); 00134 00142 bool setFailed( 00143 const OSB_DB::Session& session 00144 ); 00145 00154 OsbError closeFile(bool rename); 00155 00164 OsbError saveStream( 00165 const OSB_DB::Session& session 00166 ); 00167 00179 OsbError endStream(); 00180 00201 bool restore(OSB_DB::Session& session); 00202 00203 public: 00205 RecordStreamInfo rsInfo_; 00206 private: 00208 CdrInputFile inFile_; 00214 std::string orgInputName_; 00215 }; // class FileCdrInput 00216 } // namespace OSB_LIB 00217 #endif // #ifndef _FILECDRINPUT_H_