--- parser3/src/classes/classes.h 2001/05/03 15:05:15 1.6 +++ parser3/src/classes/classes.h 2015/10/26 01:21:53 1.35 @@ -1,27 +1,24 @@ /** @file Parser: @b Methoded class decl. - Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com) - - Author: Alexander Petrosyan (http://design.ru/paf) - - $Id: classes.h,v 1.6 2001/05/03 15:05:15 paf Exp $ + Copyright (c) 2001-2015 Art. Lebedev Studio (http://www.artlebedev.com) + Author: Alexandr Petrosian (http://paf.design.ru) */ #ifndef CLASSES_H #define CLASSES_H +#define IDENT_CLASSES_H "$Id: classes.h,v 1.35 2015/10/26 01:21:53 moko Exp $" + +// include + #include "pa_vstateless_class.h" #include "pa_array.h" /** Pure virtual base for configurable Methoded descendants + @see Methoded_array */ -class Methoded : public VStateless_class { -public: // Value - - /// all: for error reporting after fail(), etc - const char *type() const { return "m_base"; } - +class Methoded: public VStateless_class { public: // Methoded /** should Methoded_array::register_directly_used register this class in @@ -29,33 +26,46 @@ public: // Methoded if not - global variable with Methoded descendant is used in VStateless_class parameter */ - virtual bool used_directly() =0; + virtual bool used_directly() { return true; } /// use this method to read parameters from root "auto.p"; access r.main_class - virtual void configure_admin(Request& r) {} + virtual void configure_admin(Request& ) {} /// use this method to read parameters from 'MAIN' class; access r.main_class - virtual void configure_user(Request& r) {} + virtual void configure_user(Request& ) {} + /// use it to construct static variables. check some static so that would be only ONCE! + virtual void construct_statics() {} public: // usage - Methoded(Pool& pool) : VStateless_class(pool) { + Methoded(const char* aname, VStateless_class* abase=0): + VStateless_class(new String(aname), abase) { } void register_directly_used(Request& r); }; - -class Methoded_array : public Array { +/// all Methoded registered here in autogenerated classes.C +class Methoded_array: public Array { public: - Methoded_array(Pool& pool); + Methoded_array(); public: // Methoded for_each-es + /// @see Methoded::configure_admin void configure_admin(Request& r); + /// @see Methoded::configure_user void configure_user(Request& r); + /// @see Methoded::register_directly_used void register_directly_used(Request& r); }; -extern Methoded_array *methoded_array; -void init_methoded_array(Pool& pool); +// globals + +Methoded_array& methoded_array(); + +// defines + +#define DECLARE_CLASS_VAR(name, self, base) \ + Methoded* name##_class=self; \ + Methoded* name##_base_class=base #endif