]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/source-file.cc
*** empty log message ***
[lilypond.git] / lily / source-file.cc
index 334d10d40f509b38ccda2ea0bb5f150be0cecf24..c350248065cea64211dfe5f73c5a29cd51950f0f 100644 (file)
@@ -27,8 +27,9 @@
 #endif
 using namespace std;
 
-#include "warn.hh"
 #include "file-name-map.hh"
+#include "international.hh"
+#include "warn.hh"
 
 void
 Source_file::load_stdin ()
@@ -46,7 +47,7 @@ Source_file::load_stdin ()
 }
 
 char *
-gulp_file (String filename, int *filesize)
+gulp_file (std::string filename, int *filesize)
 {
   /* "b" must ensure to open literally, avoiding text (CR/LF)
      conversions.  */
@@ -78,12 +79,12 @@ gulp_file (String filename, int *filesize)
   return str;
 }
 
-Source_file::Source_file (String filename, String data)
+Source_file::Source_file (std::string filename, std::string data)
 {
   name_ = filename;
   istream_ = 0;
-  contents_str0_ = data.get_copy_str0 ();
   length_ = data.length ();
+  contents_str0_ = string_copy (data);
   pos_str0_ = c_str ();
   init_port ();
 
@@ -92,7 +93,7 @@ Source_file::Source_file (String filename, String data)
       newline_locations_.push (contents_str0_ + i);
 }
 
-Source_file::Source_file (String filename_string)
+Source_file::Source_file (std::string filename_string)
 {
   name_ = filename_string;
   istream_ = 0;
@@ -120,7 +121,7 @@ Source_file::init_port ()
 {
   SCM str = scm_makfrom0str (contents_str0_);
   str_port_ = scm_mkstrport (SCM_INUM0, str, SCM_OPN | SCM_RDNG, __FUNCTION__);
-  scm_set_port_filename_x (str_port_, scm_makfrom0str (name_.get_str0 ()));
+  scm_set_port_filename_x (str_port_, scm_makfrom0str (name_.c_str ()));
 }
 
 int
@@ -146,7 +147,7 @@ Source_file::get_istream ()
   return istream_;
 }
 
-String
+std::string
 Source_file::file_line_column_string (char const *context_str0) const
 {
   if (!c_str ())
@@ -161,7 +162,7 @@ Source_file::file_line_column_string (char const *context_str0) const
     }
 }
 
-String
+std::string
 Source_file::quote_input (char const *pos_str0) const
 {
   if (!contains (pos_str0))
@@ -169,15 +170,15 @@ Source_file::quote_input (char const *pos_str0) const
 
   int l, ch, col;
   get_counts (pos_str0, &l, &ch, &col);
-  String line = line_string (pos_str0);
-  String context = line.left_string (ch)
+  std::string line = line_string (pos_str0);
+  std::string context = line.substr (0, ch)
     + to_string ('\n')
     + to_string (' ', col)
-    + line.cut_string (ch, INT_MAX);
+    + line.substr (ch);
   return context;
 }
 
-String
+std::string
 Source_file::name_string () const
 {
   return map_file_name (name_);
@@ -220,7 +221,7 @@ Source_file::line_slice (char const *pos_str0) const
   return Slice (begin_str0 - data_str0, end_str0 - data_str0);
 }
 
-String
+std::string
 Source_file::line_string (char const *pos_str0) const
 {
   if (!contains (pos_str0))
@@ -228,7 +229,7 @@ Source_file::line_string (char const *pos_str0) const
 
   Slice line = line_slice (pos_str0);
   char const *data_str0 = c_str ();
-  return String ((Byte const *)data_str0 + line[LEFT], line.length ());
+  return std::string (data_str0 + line[LEFT], line.length ());
 }
 
 void
@@ -248,10 +249,10 @@ Source_file::get_counts (char const *pos_str0,
 
   Slice line = line_slice (pos_str0);
   char const *data = c_str ();
-  Byte const *line_start = (Byte const *)data + line[LEFT];
+  char const *line_start = (char const *)data + line[LEFT];
 
-  int left = (Byte const *) pos_str0 - line_start;
-  String line_begin (line_start, left);
+  ssize left = (char const *) pos_str0 - line_start;
+  std::string line_begin (line_start, left);
   char const *line_chars = line_begin.c_str ();
 
   *column = 0;
@@ -380,10 +381,10 @@ Source_file::forward_str0 (int n)
   return old_pos;
 }
 
-String
+std::string
 Source_file::get_string (int n)
 {
-  String str = String ((Byte const *)forward_str0 (n), n);
+  std::string str = std::string ((char const *)forward_str0 (n), n);
   return str;
 }