~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump_mysql.h

  • Committer: Andrew Hutchings
  • Date: 2010-09-22 19:58:16 UTC
  • mto: (1792.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1793.
  • Revision ID: andrew@linuxjedi.co.uk-20100922195816-uc3aud8va2sxponn
Put drizzle and mysql processes in seperate classes/files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  Copyright (C) 2010 Andrew Hutchings
 
5
 *
 
6
 *  This program is free software; you can redistribute it and/or modify
 
7
 *  it under the terms of the GNU General Public License as published by
 
8
 *  the Free Software Foundation; version 2 of the License.
 
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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
18
 */
 
19
 
 
20
#ifndef CLIENT_DRIZZLEDUMP_MYSQL_H
 
21
#define CLIENT_DRIZZLEDUMP_MYSQL_H
 
22
 
 
23
#include "drizzledump_data.h"
 
24
 
 
25
class DrizzleDumpDatabaseMySQL;
 
26
class DrizzleDumpDataMySQL;
 
27
 
 
28
class DrizzleDumpIndexMySQL : public DrizzleDumpIndex
 
29
{
 
30
  public:
 
31
    DrizzleDumpIndexMySQL(std::string &index) : DrizzleDumpIndex(index)
 
32
    { }
 
33
 
 
34
    ~DrizzleDumpIndexMySQL()
 
35
    {
 
36
      columns.clear();
 
37
    }
 
38
 
 
39
};
 
40
 
 
41
class DrizzleDumpFieldMySQL : public DrizzleDumpField
 
42
{
 
43
  public:
 
44
    DrizzleDumpFieldMySQL(std::string &field) : DrizzleDumpField(field)
 
45
    { }
 
46
 
 
47
    ~DrizzleDumpFieldMySQL() { }
 
48
 
 
49
    void dateTimeConvert(const char* oldDefault);
 
50
    void setCollate(const char* newCollate);
 
51
    void setType(const char* raw_type, const char* collation);
 
52
};
 
53
 
 
54
class DrizzleDumpTableMySQL : public DrizzleDumpTable
 
55
{
 
56
  public:
 
57
    DrizzleDumpTableMySQL(std::string &table) : DrizzleDumpTable(table)
 
58
    { }
 
59
 
 
60
    ~DrizzleDumpTableMySQL()
 
61
    {
 
62
      fields.clear();
 
63
      indexes.clear();
 
64
    }
 
65
 
 
66
    bool populateFields();
 
67
    bool populateIndexes();
 
68
    void setEngine(const char* newEngine);
 
69
    void setCollate(const char* newCollate);
 
70
    DrizzleDumpData* getData(void);
 
71
};
 
72
 
 
73
class DrizzleDumpDatabaseMySQL : public DrizzleDumpDatabase
 
74
{
 
75
  public:
 
76
    DrizzleDumpDatabaseMySQL(const std::string &database) : DrizzleDumpDatabase(database)
 
77
    { }
 
78
    ~DrizzleDumpDatabaseMySQL()
 
79
    {
 
80
      tables.clear();
 
81
    }
 
82
    bool populateTables();
 
83
    void setCollate(const char* newCollate);
 
84
};
 
85
 
 
86
class DrizzleDumpDataMySQL : public DrizzleDumpData
 
87
{
 
88
  public:
 
89
    DrizzleDumpDataMySQL(DrizzleDumpTable *dataTable);
 
90
    ~DrizzleDumpDataMySQL();
 
91
 
 
92
    /* For 0000-00-00 -> NULL conversion */
 
93
    std::string convertDate(const char* oldDate) const;
 
94
    /* For xx:xx:xx -> INT conversion */
 
95
    long convertTime(const char* oldTime) const;
 
96
    std::ostream& checkDateTime(std::ostream &os, const char* item, uint32_t field) const;
 
97
};
 
98
 
 
99
#endif /* CLIENT_DRIZZLEDUMP_MYSQL_H */