]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/smobs.hh
Run fixcc.py with astyle 2.02
[lilypond.git] / lily / include / smobs.hh
index 3c760cf33969953db4d8a31b7a3ca9c9a2c8cf2e..cd28a29c3f0af531de7cb954f65e538fb1c80b02 100644 (file)
@@ -1,9 +1,20 @@
 /*
-  smobs.hh -- declare smob related stuff.
+  This file is part of LilyPond, the GNU music typesetter.
 
-  source file of the GNU LilyPond music typesetter
+  Copyright (C) 1999--2012 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
-  (c) 1999--2008 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/>.
 */
 
 #ifndef SMOBS_HH
   from file "ly-smobs.icc"
 */
 
-#define DECLARE_SIMPLE_SMOBS(CL)               \
-  public:                                      \
-  SCM smobbed_copy () const;                   \
+#define DECLARE_SIMPLE_SMOBS(CL)                \
+  public:                                       \
+  SCM smobbed_copy () const;                    \
   DECLARE_BASE_SMOBS (CL)
 
-#define DECLARE_BASE_SMOBS(CL)                                 \
-  friend class Non_existent_class;                             \
-  private:                                                     \
+#define DECLARE_BASE_SMOBS(CL)                                  \
+  friend class Non_existent_class;                              \
+  private:                                                      \
   static const char* smob_name_; \
-  static scm_t_bits smob_tag_;                                 \
-  static SCM mark_smob (SCM);                                  \
-  static size_t free_smob (SCM s);                             \
-  static int print_smob (SCM s, SCM p, scm_print_state*);      \
-  public:                                                      \
-  static SCM equal_p (SCM a, SCM b);                           \
-  static CL *unsmob (SCM s) __attribute__((pure))              \
-  {                                                            \
-    if (SCM_NIMP (s) && SCM_CELL_TYPE (s) == smob_tag_)                \
-      return (CL *) SCM_CELL_WORD_1 (s);                       \
-    else                                                       \
-      return 0;                                                        \
-  }                                                            \
-  static SCM smob_p (SCM);                                     \
-  static void init_smobs ();                                   \
+  static scm_t_bits smob_tag_;                                  \
+  static SCM mark_smob (SCM);                                   \
+  static size_t free_smob (SCM s);                              \
+  static int print_smob (SCM s, SCM p, scm_print_state*);       \
+  public:                                                       \
+  static SCM equal_p (SCM a, SCM b);                            \
+  static CL *unsmob (SCM s) __attribute__((pure))               \
+  {                                                             \
+    if (SCM_NIMP (s) && SCM_CELL_TYPE (s) == smob_tag_)         \
+      return (CL *) SCM_CELL_WORD_1 (s);                        \
+    else                                                        \
+      return 0;                                                 \
+  }                                                             \
+  static SCM smob_p (SCM);                                      \
+  static void init_smobs ();                                    \
   private:
 
-#define DECLARE_SMOBS(CL)                      \
-  DECLARE_BASE_SMOBS (CL)                      \
-    protected:                                 \
-  virtual ~CL ();                              \
-  SCM unprotected_smobify_self ();             \
-  private:                                     \
-  void smobify_self ();                                \
-  SCM self_scm_;                               \
-  SCM protection_cons_;                                \
-  public:                                      \
-  SCM unprotect ();                            \
-  void protect ();                             \
-  SCM self_scm () const { return self_scm_; }  \
+#define DECLARE_SMOBS(CL)                       \
+  DECLARE_BASE_SMOBS (CL)                       \
+    protected:                                  \
+  virtual ~CL ();                               \
+  SCM unprotected_smobify_self ();              \
+  private:                                      \
+  void smobify_self ();                         \
+  SCM self_scm_;                                \
+  SCM protection_cons_;                         \
+  public:                                       \
+  SCM unprotect ();                             \
+  void protect ();                              \
+  SCM self_scm () const { return self_scm_; }   \
   private:
 
-#define DECLARE_UNSMOB(CL, name)               \
-  inline CL *                                  \
-  unsmob_ ## name (SCM s)                      \
-  {                                            \
-    return CL::unsmob (s);                     \
+#define DECLARE_UNSMOB(CL, name)                \
+  inline CL *                                   \
+  unsmob_ ## name (SCM s)                       \
+  {                                             \
+    return CL::unsmob (s);                      \
   }
 
 #define DECLARE_TYPE_P(CL) extern SCM CL ## _type_p_proc
@@ -142,16 +153,35 @@ void protect_smob (SCM smob, SCM *prot_cons);
 void unprotect_smob (SCM smob, SCM *prot_cons);
 
 extern bool parsed_objects_should_be_dead;
+class parsed_dead
+{
+  static vector<parsed_dead *> elements;
+  SCM data;
+  SCM readout_one ()
+  {
+    SCM res = data;
+    data = SCM_UNDEFINED;
+    return res;
+  }
+public:
+  parsed_dead () : data (SCM_UNDEFINED)
+  {
+    elements.push_back (this);
+  }
+  void checkin (SCM arg) { data = arg; }
+  static SCM readout ();
+};
 
 #ifndef NDEBUG
-#define ASSERT_LIVE_IS_ALLOWED()     \
-  static bool passed_here_once;\
-  if (parsed_objects_should_be_dead && !passed_here_once) { \
-    ::programming_error (string ("Parsed object should be dead: ")  + __PRETTY_FUNCTION__ ); \
-    passed_here_once = true;\
-  }    
+#define ASSERT_LIVE_IS_ALLOWED(arg)                                     \
+  do {                                                                  \
+    static parsed_dead pass_here;                                       \
+    if (parsed_objects_should_be_dead)                                  \
+      pass_here.checkin (arg);                                          \
+  } while (0)
 #else
-#define ASSERT_LIVE_IS_ALLOWED()
+#define ASSERT_LIVE_IS_ALLOWED(arg) do { } \
+  while (0)
 #endif
 
 #endif /* SMOBS_HH */