/* grive: an GPL program to sync a local directory with Google Drive Copyright (C) 2012 Wan Wai Ho This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation version 2 of the License. This program 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 General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "ResponseLog.hh" #include "util/log/Log.hh" #include "util/DateTime.hh" #include namespace gr { namespace http { ResponseLog::ResponseLog( const std::string& prefix, const std::string& suffix ) { Reset( prefix, suffix ) ; } std::size_t ResponseLog::Write( const char *data, std::size_t count ) { if ( m_enabled ) { assert( m_log.rdbuf() != 0 ) ; m_log.rdbuf()->sputn( data, count ) ; m_log.flush(); } return count; } std::size_t ResponseLog::Read( char *data, std::size_t count ) { return 0 ; } std::string ResponseLog::Filename( const std::string& prefix, const std::string& suffix ) { return prefix + DateTime::Now().Format( "%F.%H%M%S" ) + suffix ; } void ResponseLog::Reset( const std::string& prefix, const std::string& suffix ) { if ( m_log.is_open() ) m_log.close() ; const std::string fname = Filename( prefix, suffix ) ; // reset previous stream state. don't care if file can be opened // successfully previously m_log.clear() ; // re-open the file m_log.open( fname.c_str() ) ; if ( m_log ) { Trace( "logging HTTP response: %1%", fname ) ; m_enabled = true ; } else { Trace( "cannot open log file %1%", fname ) ; m_enabled = false ; } } }} // end of namespace