report_ostream.cc

Go to the documentation of this file.
00001 /*
00002    The lestes compiler suite
00003    Copyright (C) 2002, 2003, 2004, 2005 Miroslav Tichy
00004    Copyright (C) 2002, 2003, 2004, 2005 Petr Zika
00005    Copyright (C) 2002, 2003, 2004, 2005 Vojtech Hala
00006    Copyright (C) 2002, 2003, 2004, 2005 Jiri Kosina
00007    Copyright (C) 2002, 2003, 2004, 2005 Pavel Sanda
00008    Copyright (C) 2002, 2003, 2004, 2005 Jan Zouhar
00009    Copyright (C) 2002, 2003, 2004, 2005 Rudolf Thomas
00010 
00011    This program is free software; you can redistribute it and/or modify
00012    it under the terms of the GNU General Public License as published by
00013    the Free Software Foundation; version 2 of the License.
00014 
00015    This program is distributed in the hope that it will be useful,
00016    but WITHOUT ANY WARRANTY; without even the implied warranty of
00017    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00018    GNU General Public License for more details.
00019 
00020    See the full text of the GNU General Public License version 2, and
00021    the limitations in the file doc/LICENSE.
00022 
00023    By accepting the license the licensee waives any and all claims
00024    against the copyright holder(s) related in whole or in part to the
00025    work, its use, and/or the inability to use it.
00026  
00027  */
00028 /*! \file
00029   \brief Report stream output. 
00030 
00031   Definition of report_ostream class representing report output to stream.
00032   \author pt
00033 */
00034 #include <lestes/common.hh>
00035 #include <lestes/std/source_location.hh>
00036 #include <lestes/msg/message.hh>
00037 #include <lestes/msg/report_ostream.hh>
00038 #include <lestes/msg/formatter.hh>
00039 
00040 package(lestes);
00041 package(msg);
00042 
00043 /*! 
00044   Creates the report stream output.
00045   \param a_output  The output of the filter.
00046   \param a_stream  The stream to write to.
00047 */
00048 report_ostream::report_ostream(const ptr<report_filter> &a_output, 
00049                 const ptr<ostream_wrapper> &a_stream):
00050         report_filter(checked(a_output)),
00051         stream(checked(a_stream))
00052 {
00053 }
00054         
00055 /*!
00056   Writes the report to a stream.
00057   \pre a_message != NULL
00058   \pre a_location != NULL
00059   \param a_message  The message to write.
00060   \param a_location  The location to write.
00061 */
00062 void report_ostream::process(const ptr<message> &a_message,
00063                 const ptr<source_location> &a_location)
00064 {
00065         lassert(a_message);
00066         lassert(a_location);
00067   
00068         ostream_wrapper::stream_type o(stream->stream_get());
00069 
00070         ptr<source_location> parent = a_location->file_get()->origin_get();
00071         if (parent) {
00072                 ptr<file_info> file;
00073                 bool first = true;
00074                 
00075                 while (parent) {
00076                         file = parent->file_get();
00077                         // TODO make this via symbols, so that it needs not be localized
00078                         // not to mention that the current text is too long
00079                         (*o) << 
00080                                 (first ?
00081                                         "In file included from " : 
00082                                 ",\n                 from " ) << 
00083                                         file->name_get() << 
00084                                 ':' << parent->line_get();
00085                         parent = file->origin_get();
00086                         first = false;
00087                 }
00088 
00089                 (*o) << ":\n";
00090         }
00091 
00092         (*o) << a_location->file_get()->name_get() << ':' << 
00093                           a_location->line_get() << ':' << 
00094                           a_location->column_get() << 
00095                           (a_message->flags_get() == message::FLG_WARNING ? ": warning: " : ": ") <<
00096                           a_message->text_get() << '\n';
00097         
00098         // continue processing
00099         process_output(a_message,a_location);
00100 }
00101 
00102 /*!
00103   Marks the object.
00104 */
00105 void report_ostream::gc_mark(void)
00106 {
00107         stream.gc_mark();
00108         report_filter::gc_mark();
00109 }
00110 /*! 
00111   Creates the report stream output, initializes with output and stream.
00112   \pre a_output != NULL
00113   \pre a_stream != NULL
00114   \param a_output  The output of the filter.
00115   \param a_stream  The stream to write to.
00116   \return New report stream output filter.
00117 */
00118 ptr<report_ostream> report_ostream::create(const ptr<report_filter> &a_output, 
00119                 const ptr<ostream_wrapper> &a_stream)
00120 {
00121         return new report_ostream(a_output,a_stream);
00122 }
00123 
00124 end_package(msg);
00125 end_package(lestes);
00126 /* vim: set ft=lestes : */

Generated on Mon Feb 12 18:23:11 2007 for lestes by doxygen 1.5.1-20070107