~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to storage/ndb/include/kernel/signaldata/ManagementServer.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-03-17 14:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20100317145602-x7e30l1b2sb5s6w6
Tags: upstream-5.1.45
ImportĀ upstreamĀ versionĀ 5.1.45

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 2003 MySQL AB
 
2
 
 
3
   This program is free software; you can redistribute it and/or modify
 
4
   it under the terms of the GNU General Public License as published by
 
5
   the Free Software Foundation; version 2 of the License.
 
6
 
 
7
   This program is distributed in the hope that it will be useful,
 
8
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
   GNU General Public License for more details.
 
11
 
 
12
   You should have received a copy of the GNU General Public License
 
13
   along with this program; if not, write to the Free Software
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
15
 
 
16
#ifndef MANAGEMENTSERVER_HPP
 
17
#define MANAGEMENTSERVER_HPP
 
18
 
 
19
#include "SignalData.hpp"
 
20
 
 
21
/**
 
22
 * Request to lock configuration
 
23
 */
 
24
class MgmLockConfigReq {
 
25
  friend class MgmtSrvr;
 
26
 
 
27
public:
 
28
  STATIC_CONST( SignalLength = 1 );
 
29
 
 
30
private:
 
31
  Uint32 newConfigGeneration;
 
32
};
 
33
 
 
34
/**
 
35
 * Confirm configuration lock
 
36
 */
 
37
class MgmLockConfigRep {
 
38
  friend class MgmtSrvr;
 
39
public:
 
40
  STATIC_CONST( SignalLength = 1 );
 
41
 
 
42
  /* Error codes */
 
43
  enum ErrorCode {
 
44
    OK,
 
45
    UNKNOWN_ERROR,
 
46
    GENERATION_MISMATCH,
 
47
    ALREADY_LOCKED
 
48
  };
 
49
 
 
50
private:
 
51
  Uint32 errorCode;
 
52
};
 
53
 
 
54
/**
 
55
 * Unlock configuration
 
56
 */
 
57
class MgmUnlockConfigReq {
 
58
  friend class MgmtSrvr;
 
59
 
 
60
public:
 
61
  STATIC_CONST( SignalLength = 1 );
 
62
 
 
63
private:
 
64
  Uint32 commitConfig;
 
65
};
 
66
 
 
67
/**
 
68
 * Confirm config unlock
 
69
 */
 
70
class MgmUnlockConfigRep {
 
71
  friend class MgmtSrvr;
 
72
public:
 
73
  STATIC_CONST( SignalLength = 1 );
 
74
 
 
75
  /* Error codes */
 
76
  enum ErrorCode {
 
77
    OK,
 
78
    UNKNOWN_ERROR,
 
79
    NOT_LOCKED
 
80
  };
 
81
 
 
82
private:
 
83
  Uint32 errorCode;
 
84
};
 
85
 
 
86
#endif /* !MANAGEMENTSERVER_HPP */