~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2008-07-08 16:17:31 UTC
  • Revision ID: brian@tangent.org-20080708161731-io36j7igglok79py
DATE cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (c) 2010 PrimeBase Technologies GmbH, Germany
2
 
 *
3
 
 * PrimeBase Media Stream for MySQL
4
 
 *
5
 
 * This program is free software; you can redistribute it and/or modify
6
 
 * it under the terms of the GNU General Public License as published by
7
 
 * the Free Software Foundation; either version 2 of the License, or
8
 
 * (at your option) any later version.
9
 
 *
10
 
 * This program is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 * GNU General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU General Public License
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
18
 
 *
19
 
 * Barry Leslie
20
 
 *
21
 
 * 2010-05-25
22
 
 *
23
 
 * PBMS daemon global parameters.
24
 
 *
25
 
 */
26
 
 
27
 
#ifndef __PARAMETERS_MS_H__
28
 
#define __PARAMETERS_MS_H__
29
 
 
30
 
class PBMSParameters {
31
 
        public:
32
 
        static void startUp();
33
 
        
34
 
        static void shutDown(){}
35
 
        
36
 
        static uint32_t getPortNumber();
37
 
 
38
 
        static uint32_t getServerID();
39
 
        
40
 
        static uint64_t getRepoThreshold();
41
 
 
42
 
        static uint64_t getTempLogThreshold();
43
 
        
44
 
        static uint32_t getTempBlobTimeout();
45
 
        
46
 
        static uint32_t getGarbageThreshold();
47
 
        
48
 
        static uint32_t getMaxKeepAlive();
49
 
        
50
 
        static uint32_t getBackupDatabaseID();
51
 
        static void setBackupDatabaseID(uint32_t id);
52
 
        
53
 
        static const char *getDefaultMetaDataHeaders();
54
 
        
55
 
#ifdef DRIZZLED
56
 
        static void blackListedDB(const char *db);
57
 
 
58
 
        static bool isBlackListedDB(const char *db);
59
 
        
60
 
        static bool isBLOBDatabase(const char *db);
61
 
        
62
 
        static bool isBLOBTable(const char *db, const char *table);
63
 
 
64
 
        static bool isPBMSEventsEnabled();
65
 
        
66
 
        static int32_t getBeforeUptateEventPosition();
67
 
        
68
 
        static int32_t getBeforeInsertEventPosition();  
69
 
#endif
70
 
};
71
 
 
72
 
#endif // __PARAMETERS_MS_H__