1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; version 2 of the
* License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#include "editor_schema.h"
#include "base/string_utilities.h"
using namespace grt;
using namespace bec;
using namespace base;
//--------------------------------------------------------------------------------------------------
SchemaEditorBE::SchemaEditorBE(GRTManager *grtm, const db_SchemaRef &schema)
: DBObjectEditorBE(grtm, schema)
{
}
//--------------------------------------------------------------------------------------------------
void SchemaEditorBE::set_name(const std::string &name)
{
if (is_editing_live_object() && get_schema()->oldName() != "")
return;
DBObjectEditorBE::set_name(name);
}
//--------------------------------------------------------------------------------------------------
void SchemaEditorBE::set_schema_option_by_name(const std::string& name, const std::string& value)
{
if(name.compare("CHARACTER SET - COLLATE") == 0)
{
// Shortcut that sets both CHARACTER SET and COLLATE separated by a dash.
if (value != get_schema_option_by_name(name))
{
std::string charset, collation;
parse_charset_collation(value, charset, collation);
if (charset != *get_schema()->defaultCharacterSetName() || collation != *get_schema()->defaultCollationName())
{
RefreshUI::Blocker block(*this);
AutoUndoEdit undo(this);
get_schema()->defaultCharacterSetName(charset);
get_schema()->defaultCollationName(collation);
update_change_date();
undo.end(strfmt(_("Change Charset/Collation for '%s'"), get_schema()->name().c_str()));
}
}
}
else if(name.compare("CHARACTER SET") == 0)
{
AutoUndoEdit undo(this);
get_schema()->defaultCharacterSetName(value);
update_change_date();
undo.end(strfmt(_("Set Default Character Set for Schema '%s'"), get_name().c_str()));
}
else if(name.compare("COLLATE") == 0)
{
AutoUndoEdit undo(this);
get_schema()->defaultCollationName(grt::StringRef(value));
update_change_date();
undo.end(strfmt(_("Set Default Collation for Schema '%s'"), get_name().c_str()));
}
}
//--------------------------------------------------------------------------------------------------
std::string SchemaEditorBE::get_schema_option_by_name(const std::string& name)
{
if(name.compare("CHARACTER SET") == 0)
return get_schema()->defaultCharacterSetName();
else if(name.compare("COLLATE") == 0)
return get_schema()->defaultCollationName();
else if(name.compare("CHARACTER SET - COLLATE") == 0)
return format_charset_collation(get_schema()->defaultCharacterSetName(),
get_schema()->defaultCollationName());
return std::string();
}
//--------------------------------------------------------------------------------------------------
std::string SchemaEditorBE::get_title()
{
return get_name() + " - Schema";
}
//--------------------------------------------------------------------------------------------------
|