~ubuntu-branches/ubuntu/quantal/mysql-workbench/quantal

« back to all changes in this revision

Viewing changes to backend/wbpublic/grtsqlparser/sql_facade.cpp

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2012-03-01 21:57:30 UTC
  • Revision ID: package-import@ubuntu.com-20120301215730-o7y8av8y38n162ro
Tags: upstream-5.2.38+dfsg
ImportĀ upstreamĀ versionĀ 5.2.38+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU General Public License as
 
6
 * published by the Free Software Foundation; version 2 of the
 
7
 * License.
 
8
 * 
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
12
 * GNU General Public License for more details.
 
13
 * 
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 
17
 * 02110-1301  USA
 
18
 */
 
19
 
 
20
 
 
21
#include "stdafx.h"
 
22
 
 
23
#include "sql_facade.h"
 
24
#include "base/string_utilities.h"
 
25
 
 
26
using namespace grt;
 
27
 
 
28
 
 
29
SqlFacade::Ref SqlFacade::instance_for_db_obj(db_DatabaseObjectRef db_obj)
 
30
{
 
31
  db_mgmt_RdbmsRef rdbms;
 
32
 
 
33
  if (db_obj.is_instance(db_Table(db_obj.get_grt()).get_metaclass())
 
34
    || db_obj.is_instance(db_View(db_obj.get_grt()).get_metaclass())
 
35
    || db_obj.is_instance(db_Routine(db_obj.get_grt()).get_metaclass())
 
36
    || db_obj.is_instance(db_RoutineGroup(db_obj.get_grt()).get_metaclass()))
 
37
  {
 
38
    rdbms= db_mgmt_RdbmsRef::cast_from(db_obj->owner()->owner()->owner()->get_member("rdbms"));
 
39
  }
 
40
  else if (db_obj.is_instance(db_Schema(db_obj.get_grt()).get_metaclass()))
 
41
  {
 
42
    rdbms= db_mgmt_RdbmsRef::cast_from(db_obj->owner()->owner()->get_member("rdbms"));
 
43
  }
 
44
 
 
45
  return instance_for_rdbms(rdbms);
 
46
}
 
47
 
 
48
 
 
49
SqlFacade::Ref SqlFacade::instance_for_rdbms(db_mgmt_RdbmsRef rdbms)
 
50
{
 
51
  return  instance_for_rdbms_name(rdbms->get_grt(), rdbms->name());
 
52
}
 
53
 
 
54
 
 
55
SqlFacade::Ref SqlFacade::instance_for_rdbms_name(GRT *grt, const std::string &name)
 
56
{
 
57
  const char *def_module_name= "SqlFacade";
 
58
  std::string module_name= name + def_module_name;
 
59
  SqlFacade::Ref module= dynamic_cast<SqlFacade::Ref>(grt->get_module(module_name));
 
60
  if (!module)
 
61
                throw std::runtime_error(base::strfmt("Can't get '%s' module.", module_name.c_str()));
 
62
  return module;
 
63
}