2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 * Author : Maxim Mamontov <faust@stargazer.dp.ua>
25 #include "stg/admin.h"
26 #include "stg/common.h"
27 #include "corps_impl.h"
29 //-----------------------------------------------------------------------------
30 CORPORATIONS_IMPL::CORPORATIONS_IMPL(STORE * st)
34 WriteServLog(GetStgLogger()),
40 pthread_mutex_init(&mutex, NULL);
43 //-----------------------------------------------------------------------------
44 int CORPORATIONS_IMPL::Add(const CORP_CONF & corp, const ADMIN * admin)
46 STG_LOCKER lock(&mutex);
47 const PRIV * priv = admin->GetPriv();
51 std::string s = admin->GetLogStr() + " Add corporation \'" + corp.name + "\'. Access denied.";
52 strError = "Access denied.";
53 WriteServLog(s.c_str());
57 crp_iter si(find(data.begin(), data.end(), corp));
61 strError = "Corporation \'" + corp.name + "\' cannot not be added. Corporation already exist.";
62 WriteServLog("%s %s", admin->GetLogStr().c_str(), strError.c_str());
69 if (store->AddCorp(corp.name) == 0)
71 WriteServLog("%s Corporation \'%s\' added.",
72 admin->GetLogStr().c_str(), corp.name.c_str());
76 strError = "Corporation \'" + corp.name + "\' was not added. Error: " + store->GetStrError();
77 WriteServLog("%s %s", admin->GetLogStr().c_str(), strError.c_str());
81 //-----------------------------------------------------------------------------
82 int CORPORATIONS_IMPL::Del(const std::string & name, const ADMIN * admin)
84 STG_LOCKER lock(&mutex);
85 const PRIV * priv = admin->GetPriv();
89 std::string s = admin->GetLogStr() + " Delete corporation \'" + name + "\'. Access denied.";
90 strError = "Access denied.";
91 WriteServLog(s.c_str());
95 crp_iter si(find(data.begin(), data.end(), CORP_CONF(name)));
99 strError = "Corporation \'" + name + "\' cannot be deleted. Corporation does not exist.";
100 WriteServLog("%s %s", admin->GetLogStr().c_str(), strError.c_str());
104 std::map<int, const_crp_iter>::iterator csi;
105 csi = searchDescriptors.begin();
106 while (csi != searchDescriptors.end())
108 if (csi->second == si)
114 if (store->DelCorp(name) < 0)
116 strError = "Corporation \'" + name + "\' was not deleted. Error: " + store->GetStrError();
117 WriteServLog("%s %s", admin->GetLogStr().c_str(), strError.c_str());
122 WriteServLog("%s Corporation \'%s\' deleted.", admin->GetLogStr().c_str(), name.c_str());
125 //-----------------------------------------------------------------------------
126 int CORPORATIONS_IMPL::Change(const CORP_CONF & corp, const ADMIN * admin)
128 STG_LOCKER lock(&mutex);
129 const PRIV * priv = admin->GetPriv();
133 std::string s = admin->GetLogStr() + " Change corporation \'" + corp.name + "\'. Access denied.";
134 strError = "Access denied.";
135 WriteServLog(s.c_str());
139 crp_iter si(find(data.begin(), data.end(), corp));
141 if (si == data.end())
143 strError = "Corporation \'" + corp.name + "\' cannot be changed " + ". Corporation does not exist.";
144 WriteServLog("%s %s", admin->GetLogStr().c_str(), strError.c_str());
149 if (store->SaveCorp(corp))
151 WriteServLog("Cannot write corporation %s.", corp.name.c_str());
152 WriteServLog("%s", store->GetStrError().c_str());
156 WriteServLog("%s Corporation \'%s\' changed.",
157 admin->GetLogStr().c_str(), corp.name.c_str());
161 //-----------------------------------------------------------------------------
162 bool CORPORATIONS_IMPL::Read()
164 STG_LOCKER lock(&mutex);
165 std::vector<std::string> corpsList;
166 if (store->GetCorpsList(&corpsList) < 0)
168 WriteServLog(store->GetStrError().c_str());
172 for (size_t i = 0; i < corpsList.size(); i++)
176 if (store->RestoreCorp(&corp, corpsList[i]))
178 WriteServLog(store->GetStrError().c_str());
182 data.push_back(corp);
186 //-----------------------------------------------------------------------------
187 bool CORPORATIONS_IMPL::Find(const std::string & name, CORP_CONF * corp)
189 assert(corp != NULL && "Pointer to corporation is not null");
191 STG_LOCKER lock(&mutex);
195 crp_iter si(find(data.begin(), data.end(), CORP_CONF(name)));
197 if (si != data.end())
205 //-----------------------------------------------------------------------------
206 bool CORPORATIONS_IMPL::Exists(const std::string & name) const
208 STG_LOCKER lock(&mutex);
211 printfd(__FILE__, "no admin in system!\n");
215 const_crp_iter si(find(data.begin(), data.end(), CORP_CONF(name)));
217 if (si != data.end())
222 //-----------------------------------------------------------------------------
223 int CORPORATIONS_IMPL::OpenSearch() const
225 STG_LOCKER lock(&mutex);
227 searchDescriptors[handle] = data.begin();
230 //-----------------------------------------------------------------------------
231 int CORPORATIONS_IMPL::SearchNext(int h, CORP_CONF * corp) const
233 STG_LOCKER lock(&mutex);
234 if (searchDescriptors.find(h) == searchDescriptors.end())
236 WriteServLog("CORPORATIONS. Incorrect search handle.");
240 if (searchDescriptors[h] == data.end())
243 *corp = *searchDescriptors[h]++;
247 //-----------------------------------------------------------------------------
248 int CORPORATIONS_IMPL::CloseSearch(int h) const
250 STG_LOCKER lock(&mutex);
251 if (searchDescriptors.find(h) != searchDescriptors.end())
253 searchDescriptors.erase(searchDescriptors.find(h));
257 WriteServLog("CORPORATIONS. Incorrect search handle.");
260 //-----------------------------------------------------------------------------