~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/generator/table_definition_cache.h

  • Committer: Brian Aker
  • Date: 2010-11-19 03:03:40 UTC
  • mto: (1945.2.1 quick)
  • mto: This revision was merged to the branch mainline in revision 1944.
  • Revision ID: brian@tangent.org-20101119030340-vw9l27v75r317o55
Added generator for table_definition cache. Now no one can touch the guts :)

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 Brian Aker
 
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
 
 
21
#ifndef DRIZZLED_GENERATOR_TABLE_DEFINITION_CACHE_H
 
22
#define DRIZZLED_GENERATOR_TABLE_DEFINITION_CACHE_H
 
23
 
 
24
#include <boost/bind.hpp>
 
25
#include <boost/thread/mutex.hpp>
 
26
#include "drizzled/definition/cache.h"
 
27
 
 
28
namespace drizzled {
 
29
namespace generator {
 
30
 
 
31
class TableDefinitionCache
 
32
{
 
33
  drizzled::TableShare::vector local_vector;
 
34
  drizzled::TableShare::vector::iterator iter;
 
35
 
 
36
public:
 
37
 
 
38
  TableDefinitionCache()
 
39
  {
 
40
    boost::mutex::scoped_lock scopedLock(definition::Cache::singleton().mutex());
 
41
 
 
42
    local_vector.reserve(definition::Cache::singleton().size());
 
43
 
 
44
    std::transform(definition::Cache::singleton().getCache().begin(),
 
45
                   definition::Cache::singleton().getCache().end(),
 
46
                   std::back_inserter(local_vector),
 
47
                   boost::bind(&definition::Cache::Map::value_type::second, _1) );
 
48
    assert(local_vector.size() == definition::Cache::singleton().getCache().size());
 
49
 
 
50
    iter= local_vector.begin();
 
51
  }
 
52
 
 
53
  ~TableDefinitionCache()
 
54
  {
 
55
  }
 
56
 
 
57
  operator drizzled::TableShare::shared_ptr()
 
58
  {
 
59
    while (iter != local_vector.end())
 
60
    {
 
61
      drizzled::TableShare::shared_ptr ret(*iter);
 
62
      iter++;
 
63
      return ret;
 
64
    }
 
65
 
 
66
    return drizzled::TableShare::shared_ptr();
 
67
  }
 
68
};
 
69
 
 
70
} /* namespace generator */
 
71
} /* namespace drizzled */
 
72
 
 
73
#endif /* DRIZZLED_GENERATOR_TABLE_DEFINITION_CACHE_H */