]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/translator-group.hh
Issue 4842/4: Replace Translator_method et al
[lilypond.git] / lily / include / translator-group.hh
index 36ac26cf2f874126c4dd2610a278c40fa8753715..6eec2333a6a9b0cf0f2c6789dc6a8baa7ed26d82 100644 (file)
@@ -1,92 +1,86 @@
 /*
-  translator-group.hh -- declare Translator_group
+  This file is part of LilyPond, the GNU music typesetter.
 
-  source file of the GNU LilyPond music typesetter
+  Copyright (C) 1997--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
-  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.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/>.
+*/
 
 #ifndef TRANSLATOR_GROUP_HH
 #define TRANSLATOR_GROUP_HH
 
-#include "string.hh"
-#include "lily-proto.hh"
-#include "virtual-methods.hh"
+#include "callback.hh"
+#include "listener.hh"
 #include "translator.hh"
-#include "parray.hh"
-#include "smobs.hh"
-
-// egcs
-typedef void (Translator::*Method_pointer) (void);
-#define set_property(x,y) internal_set_property(ly_symbol2scm(x),y)
-
-class Scheme_hash_table;
-
 
-/** Make some kind of Elements from Events. Elements are made by
-  hierarchically grouped Translators
-  */
-class Translator_group : public virtual Translator {
+class Translator_group : public Smob<Translator_group>
+{
 public:
-  String id_string_;
+  SCM mark_smob () const;
+  int print_smob (SCM, scm_print_state *) const;
+  static const char type_p_name_[];
+  virtual ~Translator_group ();
 private:
-  int iterator_count_;
-  friend class Interpretation_context_handle;
+  void precompute_method_bindings ();
+  vector<Method_instance>
+  precomputed_method_bindings_[TRANSLATOR_METHOD_PRECOMPUTE_COUNT];
 
-  Scheme_hash_table *properties_dict () const;
-  SCM add_translator (SCM, Translator*);
-protected:
-  ~Translator_group ();
+  SCM
+  precomputed_self_method_bindings_[TRANSLATOR_METHOD_PRECOMPUTE_COUNT];
 
-  virtual SCM get_simple_trans_list ();
+  SCM protected_events_;
 
-public:
-  void execute_pushpop_property (SCM prop, SCM sym, SCM val);
-  SCM internal_get_property (SCM name_sym) const;
-  SCM properties_as_alist () const;
-  void unset_property (SCM var_sym);
-  void internal_set_property (SCM var_sym, SCM value);  
-
-  Translator_group *where_defined (SCM name_sym) const;
-  String context_name () const;  
-  Translator_group (Translator_group const &);
-  Translator_group ();
+  void create_child_translator (SCM);
 
-  bool is_alias (SCM) const;
-  void add_fresh_group_translator (Translator *trans);
-  void add_used_group_translator (Translator *trans);
-  bool is_bottom_context () const;
-  bool is_removable () const;
-  void terminate_translator (Translator*r);
-  Translator *remove_translator (Translator*trans);
-  void check_removal ();
-  Translator_group *find_existing_translator (SCM context_name, String id);
-  Translator_group *find_create_translator (SCM context_name,
-                                           String id, SCM ops);
-  Link_array<Translator_group>
-    path_to_acceptable_translator (SCM alias,
-                                  Music_output_def*) const;
-  Translator_group*get_default_interpreter ();
-  VIRTUAL_COPY_CONS (Translator);
 public:
-  bool try_music_on_nongroup_children (Music *m);
-  
-  virtual void do_announces ();
-  virtual bool try_music (Music* req);       
-  virtual void stop_translation_timestep ();
-  virtual void start_translation_timestep ();   
+  DECLARE_CLASSNAME (Translator_group);
+
+  virtual void connect_to_context (Context *c);
+  virtual void disconnect_from_context ();
+  virtual SCM get_simple_trans_list ();
   virtual void initialize ();
   virtual void finalize ();
-  virtual void each (Method_pointer);
+
+  void protect_event (SCM ev);
+
+  void stop_translation_timestep ();
+  void start_translation_timestep ();
+
+  virtual void fetch_precomputable_methods (SCM []);
+
+  Translator_group ();
+
+  void precomputed_translator_foreach (Translator_precompute_index);
+  void call_precomputed_self_method (Translator_precompute_index);
+
+  Context *context () const { return context_; }
+protected:
+  SCM simple_trans_list_;
+  Context *context_;
+
+  friend class Context_def;
+  virtual void derived_mark () const;
 };
 
+SCM names_to_translators (SCM namelist, Context *tg);
+void recurse_over_translators (Context *c, SCM tr_method,
+                               SCM tr_group_method, Direction);
+void precomputed_recurse_over_translators (Context *c, Translator_precompute_index idx, Direction dir);
+Translator_group *get_translator_group (SCM sym);
+
+#define foobar
+#define ADD_TRANSLATOR_GROUP(classname, desc, grobs, read, write) foobar
 
-bool melisma_busy (Translator* tr); // where to put this? --hwn
-void apply_property_operations (Translator_group*tg, SCM pre_init_ops);
-SCM names_to_translators (SCM namelist, Translator_group*tg);
-void execute_pushpop_property (Translator_group * trg,
-                              SCM prop, SCM eltprop, SCM val);
-SCM updated_grob_properties (Translator_group* tg, SCM sym);
 
 #endif // TRANSLATOR_GROUP_HH