~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/parameters_ms.h

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:26:39 UTC
  • mfrom: (2157.2.2 give-in-to-pkg-config)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172639-nhy7i72sfhoq13ms
Merged in pkg-config fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (c) 2010 PrimeBase Technologies GmbH, Germany
 
1
/* Copyright (C) 2010 PrimeBase Technologies GmbH, Germany
2
2
 *
3
3
 * PrimeBase Media Stream for MySQL
4
4
 *
14
14
 *
15
15
 * You should have received a copy of the GNU General Public License
16
16
 * along with this program; if not, write to the Free Software
17
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
17
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
18
 *
19
19
 * Barry Leslie
20
20
 *
27
27
#ifndef __PARAMETERS_MS_H__
28
28
#define __PARAMETERS_MS_H__
29
29
 
 
30
#ifdef DRIZZLED
 
31
namespace drizzled { namespace module {
 
32
class Context;
 
33
class option_context;
 
34
}}
 
35
#endif
 
36
 
30
37
class PBMSParameters {
31
38
        public:
32
 
        static void startUp();
 
39
#ifdef DRIZZLED
 
40
        static void startUp(drizzled::module::Context &context);
 
41
 
 
42
        static void initOptions(drizzled::module::option_context &context);
33
43
        
 
44
#else   
 
45
        static void startUp();
 
46
 
 
47
#endif
34
48
        static void shutDown(){}
35
 
        
 
49
 
36
50
        static uint32_t getPortNumber();
37
51
 
38
52
        static uint32_t getServerID();
66
80
        static int32_t getBeforeUptateEventPosition();
67
81
        
68
82
        static int32_t getBeforeInsertEventPosition();  
 
83
        
 
84
        private:
 
85
        static bool try_LocateDB(CSThread *self, const char *db, bool *found);
 
86
        static bool try_LocateTable(CSThread *self, const char *db, const char *table, bool *found);
 
87
 
69
88
#endif
70
89
};
71
90