X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=include%2Fanna%2Fcore%2Ftracing%2FTraceWriter.hpp;h=6f237b0dfd9aae071d3b89a19f581067b365231c;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hp=5e17937df44078a390d10876e728d2b5b3bfb3f7;hpb=3e258840b15577cb8bda3cdedd0b9b88e16404b3;p=anna.git diff --git a/include/anna/core/tracing/TraceWriter.hpp b/include/anna/core/tracing/TraceWriter.hpp index 5e17937..6f237b0 100644 --- a/include/anna/core/tracing/TraceWriter.hpp +++ b/include/anna/core/tracing/TraceWriter.hpp @@ -1,37 +1,9 @@ -// ANNA - Anna is Not Nothingness Anymore -// -// (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo -// -// https://bitbucket.org/testillano/anna -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions -// are met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: eduardo.ramos.testillano@gmail.com -// cisco.tierra@gmail.com +// ANNA - Anna is Not Nothingness Anymore // +// // +// (c) Copyright 2005-2015 Eduardo Ramos Testillano & Francisco Ruiz Rayo // +// // +// See project site at http://redmine.teslayout.com/projects/anna-suite // +// See accompanying file LICENSE or copy at http://www.teslayout.com/projects/public/anna.LICENSE // #ifndef anna_core_tracing_TraceWriter_hpp @@ -75,7 +47,7 @@ public: Devuelve el tama�o maximo del fichero de trazas. \return El tama�o maximo del fichero de trazas. */ - int getMaxSize() const throw() { return a_maxSize; } + int getMaxSize() const { return a_maxSize; } /** Metodo para cambiar dinamicamente la configuracion del grabador de trazas. Las seccciones @@ -98,7 +70,7 @@ public: \warning La configuracion debera estar correctamente cargada. Ver Configuration::load. */ - void setup(const char* fileName, const Configuration& configuration) throw(); + void setup(const char* fileName, const Configuration& configuration) ; /** Metodo para cambiar dinamicamente la configuracion del grabador de trazas. @@ -112,12 +84,12 @@ public: \warning Solo deberia llamarse una vez para cambiar de la configuracion por defecto a la configuracion particular de cada proceso. */ - void setup(const char* fileName, const int maxSize = 0, const bool clean = true) throw(); + void setup(const char* fileName, const int maxSize = 0, const bool clean = true) ; /** Saca por pantalla la informacion relevente de este grabador de trazas. */ - void printResume() throw(); + void printResume() ; /** Conecta esta instancia con un TraceWriterObserver, lo que permitira que esta instancia @@ -131,7 +103,7 @@ public: \warning La instancia del TraceWriterObserver debera estar disponible durante toda la ejecucion. */ - void attach(TraceWriterObserver* observer) throw(); + void attach(TraceWriterObserver* observer) ; private: typedef std::vector ::iterator observer_iterator; @@ -156,15 +128,15 @@ private: std::vector a_observers; bool a_observed; - observer_iterator observer_begin() throw() { return a_observers.begin(); } - observer_iterator observer_end() throw() { return a_observers.end(); } + observer_iterator observer_begin() { return a_observers.begin(); } + observer_iterator observer_end() { return a_observers.end(); } - static TraceWriterObserver* observer(observer_iterator& ii) throw() { return *ii; } + static TraceWriterObserver* observer(observer_iterator& ii) { return *ii; } - void initialize(const char*) throw() { printResume(); } - void do_write(int level, const char* text, ...) throw(); - const char* getDate() throw(); - int prepareOutput(const char* date) throw(); + void initialize(const char*) { printResume(); } + void do_write(int level, const char* text, ...) ; + const char* getDate() ; + int prepareOutput(const char* date) ; }; }