Used a more uniform of logging and added a commandline parser.
[UnsignedByte.git] / src / DB / Savables / Cluster.cpp
blob3e03b2d60e7931ef7463d196f8abcbcf8097f7b9
1 /***************************************************************************
2 * Copyright (C) 2008 by Sverre Rabbelier *
3 * sverre@rabbelier.nl *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
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 *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
21 #include "Cluster.h"
22 #include "Global.h"
23 #include "FieldImpls.h"
24 #include "TableImpls.h"
26 using mud::Cluster;
28 Cluster::Cluster(SavableManagerPtr cluster) :
29 m_cluster(cluster)
31 Assert(cluster);
34 Cluster::~Cluster(void)
36 Unlock();
39 value_type Cluster::getID() const
41 return m_cluster->getValue(db::TableImpls::Get()->CLUSTERS->CLUSTERID)->getIntegerValue();
44 const std::string& Cluster::getName() const
46 return m_cluster->getValue(db::TableImpls::Get()->CLUSTERS->NAME)->getStringValue();
49 const std::string& Cluster::getDescription() const
51 return m_cluster->getValue(db::TableImpls::Get()->CLUSTERS->DESCRIPTION)->getStringValue();
54 value_type Cluster::getArea() const
56 return m_cluster->getValue(db::TableImpls::Get()->CLUSTERS->FKAREAS)->getIntegerValue();
59 void Cluster::setName(const std::string& name)
61 Lock();
62 ValuePtr value(new FieldValue(db::TableImpls::Get()->CLUSTERS->NAME, name));
63 m_cluster->setValue(value);
66 void Cluster::setDescription(const std::string& description)
68 Lock();
69 ValuePtr value(new FieldValue(db::TableImpls::Get()->CLUSTERS->DESCRIPTION, description));
70 m_cluster->setValue(value);
73 void Cluster::setArea(value_type area)
75 Lock();
76 ValuePtr value(new FieldValue(db::TableImpls::Get()->CLUSTERS->FKAREAS, area));
77 m_cluster->setValue(value);
80 void Cluster::Delete()
82 Lock();
83 m_cluster->erase();
86 void Cluster::Save()
88 Lock();
89 m_cluster->save();
92 void Cluster::Discard()
94 Lock();
95 m_cluster->discard();
98 bool Cluster::Exists()
100 return m_cluster->exists();
103 SavableManagerPtr Cluster::getManager() const
105 return m_cluster;
108 TableImplPtr Cluster::getTable() const
110 return m_cluster->getTable();