]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/input.cc
Run grand-replace (issue 3765)
[lilypond.git] / lily / input.cc
index ef78037fad33bbd9eb8baac75f37774bc9583f9e..b5d5dccc5ce122392a1a0766b9115f18885f2d0f 100644 (file)
@@ -1,9 +1,20 @@
 /*
-  input.cc -- implement Input
+  This file is part of LilyPond, the GNU music typesetter.
 
-  source file of the LilyPond music typesetter
+  Copyright (C) 1997--2014 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
-  (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  LilyPond 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, either version 3 of the License, or
+  (at your option) any later version.
+
+  LilyPond 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 LilyPond.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "input.hh"
@@ -12,8 +23,9 @@
 using namespace std;
 
 #include "international.hh"
+#include "program-option.hh"
 #include "source-file.hh"
-#include "source.hh"
+#include "sources.hh"
 #include "warn.hh"
 
 Input::Input (Input const &i)
@@ -66,36 +78,59 @@ Input::set_location (Input const &i_start, Input const &i_end)
 
   [file:line:column:][warning:]message
 */
-void
-Input::message (std::string s) const
+string
+Input::message_string (const string &msg) const
 {
   if (source_file_)
-    s = location_string () + ": " + s + "\n"
-      + source_file_->quote_input (start_);
-  ::message (s);
+    return msg + "\n" + source_file_->quote_input (start_);
+  else
+    return msg;
 }
 
+string
+Input::message_location () const
+{
+  return (source_file_) ? location_string () : "";
+}
 void
-Input::warning (std::string s) const
+Input::error (const string &s) const
 {
-  message (_f ("warning: %s", s));
+  ::non_fatal_error (message_string (s), message_location ());
+  // UGH, fix naming or usage (use non_fatal_error in most places, instead)
+  // exit (1);
 }
 
 void
-Input::error (std::string s) const
+Input::programming_error (const string &s) const
 {
-  message (_f ("error: %s", s));
-  // UGH, fix naming or usage
-  // exit (1);
+  ::programming_error (message_string (s), message_location ());
+}
+
+void
+Input::non_fatal_error (const string &s) const
+{
+  ::non_fatal_error (message_string (s), message_location ());
+}
+
+void
+Input::warning (const string &s) const
+{
+  ::warning (message_string (s), message_location ());
+}
+
+void
+Input::message (const string &s) const
+{
+  ::message (message_string (s), true, message_location ());
 }
 
 void
-Input::non_fatal_error (std::string s) const
+Input::debug_output (const string &s) const
 {
-  message (_f ("error: %s", s));
+  ::debug_output (message_string (s), true, message_location ());
 }
 
-std::string
+string
 Input::location_string () const
 {
   if (source_file_)
@@ -103,15 +138,15 @@ Input::location_string () const
   return " (" + _ ("position unknown") + ")";
 }
 
-std::string
+string
 Input::line_number_string () const
 {
   if (source_file_)
-    return to_string (source_file_->get_line (start_));
+    return ::to_string (source_file_->get_line (start_));
   return "?";
 }
 
-std::string
+string
 Input::file_string () const
 {
   if (source_file_)
@@ -130,8 +165,8 @@ Input::line_number () const
 int
 Input::column_number () const
 {
-  int line, chr, col = 0;
-  source_file_->get_counts (start_, &line, &chr, &col);
+  int line, chr, col, offset = 0;
+  source_file_->get_counts (start_, &line, &chr, &col, &offset);
 
   return col;
 }
@@ -147,16 +182,16 @@ Input::end_line_number () const
 int
 Input::end_column_number () const
 {
-  int line, chr, col = 0;
-  source_file_->get_counts (end_, &line, &chr, &col);
+  int line, chr, col, offset = 0;
+  source_file_->get_counts (end_, &line, &chr, &col, &offset);
 
   return col;
 }
 
 void
-Input::get_counts (int *line, int *chr, int *col) const
+Input::get_counts (int *line, int *chr, int *col, int *offset) const
 {
-  source_file_->get_counts (start_, line, chr, col);
+  source_file_->get_counts (start_, line, chr, col, offset);
 }
 
 void