~ubuntu-branches/ubuntu/saucy/drizzle/saucy-proposed

1 by Monty Taylor
Import upstream version 2010.03.1347
1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
1.2.4 by Monty Taylor
Import upstream version 2010.12.06
4
 *  Copyright (C) 2010 Sun Microsystems, Inc.
1 by Monty Taylor
Import upstream version 2010.03.1347
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; either version 2 of the License, or
9
 *  (at your option) any later version.
10
 *
11
 *  This program is distributed in the hope that it will be useful,
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 *  GNU General Public License for more details.
15
 *
16
 *  You should have received a copy of the GNU General Public License
17
 *  along with this program; if not, write to the Free Software
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
 */
20
1.2.10 by Monty Taylor
Import upstream version 2011.03.13
21
#pragma once
1 by Monty Taylor
Import upstream version 2010.03.1347
22
23
class CollationsTool : public CharacterSetsTool
24
{
25
public:
26
27
  CollationsTool();
28
29
  class Generator : public CharacterSetsTool::Generator 
30
  {
31
    drizzled::CHARSET_INFO **collation_iter;
32
    bool is_collation_primed;
33
34
    bool nextCollationCore();
35
    inline bool end();
36
37
    void prime(bool arg= true)
38
    {
39
      is_collation_primed= arg;
40
    }
41
42
  public:
43
    Generator(drizzled::Field **arg);
44
45
    bool populate();
46
    bool next();
47
    bool check();
48
    virtual void fill();
49
50
    drizzled::CHARSET_INFO const * collation()
51
    {
52
      return collation_iter[0];
53
    }
54
55
    bool isPrimed()
56
    {
57
      return is_collation_primed;
58
    }
59
60
  };
61
62
  Generator *generator(drizzled::Field **arg)
63
  {
64
    return new Generator(arg);
65
  }
66
67
};
68