]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/identifier.cc
release: 1.0.1
[lilypond.git] / lily / identifier.cc
index 59f1ff5d83c0cfdc288728f995b74d11e3c066d3..71f093fdfef0fa6fdcf59bb2da7ff204eaa5561f 100644 (file)
 /*
   identifier.cc -- implement identifier and derived classes
 
-  source file of the LilyPond music typesetter
+  source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 #include <assert.h>
-
+#include "midi-def.hh"
+#include "paper-def.hh"
+#include "score.hh"
 #include "identifier.hh"
-#include "lexer.hh"
+#include "my-lily-lexer.hh"
 #include "debug.hh"
+#include "symtable.hh"
+#include "lookup.hh"
+#include "script-def.hh"
+#include "request.hh"
+#include "translator.hh"
 
-void
-Identifier::error(String expect)
+
+IMPLEMENT_IS_TYPE_B(Identifier);
+
+Identifier::Identifier (int code)
 {
-    String e("Wrong identifier type: ");
-    e += String(classname()) + "(expected " + expect + ")";
-    ::error(e);
+  token_code_i_ = code;
+  accessed_b_ = 0;
+  init_b_ = 0;
 }
 
-void
-Identifier::print()const
+
+
+Identifier::Identifier (Identifier const&s)
+  : Input (s)
 {
-    mtor << "identifier \'" << name << "\'=";
-    do_print();
+  token_code_i_ = s.token_code_i_;
+  accessed_b_ = s.accessed_b_;
+  init_b_ = s.init_b_;
 }
 
-/* ugh. */
-#define DEFAULT_PRINT(Class, Content_type, accessor) \
-void \
-Class::do_print() const { \
-    ((Class*)this)->accessor(false)->print(); \
-} \
-class Class
-
-DEFAULT_PRINT(Script_id, Script_def, script);
-DEFAULT_PRINT(Lookup_id, Lookup, lookup);
-DEFAULT_PRINT(Symtables_id, Symtables, symtables);
-DEFAULT_PRINT(Staff_id, Input_staff, staff);
-DEFAULT_PRINT(M_chord_id, Music_general_chord, mchord);
-DEFAULT_PRINT(M_voice_id, Music_voice, mvoice);
+Identifier::~Identifier()
+{
+}
 
 void
-Real_id::do_print() const
+Identifier::error (String expect) const
+{
+  String e (_("Wrong identifier type: "));
+  e += _f ("%s expected", expect);
+  ::error (e);
+}
+
+String
+Identifier::str () const
+{
+  return do_str ();
+}
+
+String
+Identifier::do_str () const
 {
-    Identifier::print();
-    mtor << *((Real_id*)this)->real(false)<< "\n";
+  return "";
 }
 
 void
-Notetab_id::do_print() const
+Identifier::print () const
+{
+  DOUT << "identifier ";
+  do_print ();
+}
+void
+Identifier::do_print () const
 {
-    mtor << "unknown" << "\n";
 }
+
+/* ugh. */
+#define DEFAULT_PRINT(Class) \
+void \
+Class ## _identifier::do_print () const { \
+  Class *cl = ((Class ## _identifier *)this)->access_ ## Class(false);\
+  cl->print (); \
+}
+
+
+
+DEFAULT_PRINT(General_script_def);
+DEFAULT_PRINT(Lookup);
+DEFAULT_PRINT(Translator);
+DEFAULT_PRINT(Symtables);
+DEFAULT_PRINT(Music);
+DEFAULT_PRINT(Request);
+DEFAULT_PRINT(Score);
+DEFAULT_PRINT(Midi_def);
+DEFAULT_PRINT(Paper_def);
+
+/* ugh. */
+#define DUMMY_STR(Class) \
+String \
+Class ## _identifier::do_str () const { \
+  return String (#Class); \
+}
+
+
+
+DUMMY_STR(General_script_def);
+DUMMY_STR(Lookup);
+DUMMY_STR(Translator);
+DUMMY_STR(Symtables);
+DUMMY_STR(Music);
+DUMMY_STR(Request);
+DUMMY_STR(Score);
+DUMMY_STR(Midi_def);
+DUMMY_STR(Paper_def);
+DUMMY_STR(Duration);
+
+#define STRING_PRINT(Class) \
+void \
+Class ## _identifier::do_print () const\
+{\
+  DOUT << do_str () << '\n';\
+}\
+
+
+STRING_PRINT(Duration);
+STRING_PRINT(Real);
+STRING_PRINT(int);
+STRING_PRINT(String);
+
+#define DEFAULT_STR(Class) \
+String \
+Class ## _identifier::do_str () const\
+{\
+  return to_str (*data_p_);\
+}
+
+DEFAULT_STR(int);
+DEFAULT_STR(Real);
+DEFAULT_STR(String);
+  
+
+/*
+  fucking C++ blows me.
+ */
+
+#define DEFAULT_ACCESSOR(Class)\
+Class*\
+Class ## _identifier::access_ ## Class (bool copy_b) const {\
+  ((Class ## _identifier*)this)->accessed_b_ = true;\
+  return copy_b ? new Class (*data_p_) : data_p_;\
+}
+
+#define VIRTUAL_ACCESSOR(Class)\
+Class*\
+Class ## _identifier::access_ ## Class (bool copy_b) const{\
+  ((Class ## _identifier*)this)->accessed_b_ = true;\
+  return copy_b ? (Class*)data_p_->clone() : data_p_;\
+}
+
+#define IMPLEMENT_ID_CLASS(Class)      \
+       IMPLEMENT_IS_TYPE_B1(Class ## _identifier,Identifier)\
+       Class ## _identifier::~Class ## _identifier() { delete data_p_; }\
+       Class ## _identifier::Class ## _identifier (Class*st, int code) \
+         :Identifier (code)\
+       {\
+         data_p_ = st;\
+       }\
+Class ## _identifier::Class ## _identifier (Class ## _identifier const &s) \
+  : Identifier (s)\
+{\
+   data_p_ = s.access_ ## Class (true);\
+} 
+
+
+IMPLEMENT_ID_CLASS(Duration);
+IMPLEMENT_ID_CLASS(Translator);
+IMPLEMENT_ID_CLASS(int);
+IMPLEMENT_ID_CLASS(Real);
+IMPLEMENT_ID_CLASS(String);
+IMPLEMENT_ID_CLASS(General_script_def);
+IMPLEMENT_ID_CLASS(Lookup);
+IMPLEMENT_ID_CLASS(Symtables);
+IMPLEMENT_ID_CLASS(Music);
+IMPLEMENT_ID_CLASS(Score);
+IMPLEMENT_ID_CLASS(Request);
+IMPLEMENT_ID_CLASS(Midi_def);
+IMPLEMENT_ID_CLASS(Paper_def);
+
+VIRTUAL_ACCESSOR(Music);
+VIRTUAL_ACCESSOR(Request);
+VIRTUAL_ACCESSOR(Translator);
+VIRTUAL_ACCESSOR(General_script_def);
+
+DEFAULT_ACCESSOR(Duration);
+DEFAULT_ACCESSOR(int);
+DEFAULT_ACCESSOR(Real);
+DEFAULT_ACCESSOR(String);
+DEFAULT_ACCESSOR(Lookup);
+DEFAULT_ACCESSOR(Symtables);
+DEFAULT_ACCESSOR(Score);
+DEFAULT_ACCESSOR(Midi_def);
+DEFAULT_ACCESSOR(Paper_def);
+