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>
21 #include "corps_impl.h"
23 #include "stg/admin.h"
24 #include "stg/admin_conf.h"
25 #include "stg/store.h"
26 #include "stg/common.h"
31 using STG::CorporationsImpl;
33 //-----------------------------------------------------------------------------
34 CorporationsImpl::CorporationsImpl(Store * st)
36 WriteServLog(Logger::get()),
41 //-----------------------------------------------------------------------------
42 int CorporationsImpl::Add(const CorpConf & corp, const Admin * admin)
44 std::lock_guard<std::mutex> lock(mutex);
45 const auto& priv = admin->priv();
49 std::string s = admin->logStr() + " Add corporation \'" + corp.name + "\'. Access denied.";
50 strError = "Access denied.";
51 WriteServLog(s.c_str());
55 crp_iter si(find(data.begin(), data.end(), corp));
59 strError = "Corporation \'" + corp.name + "\' cannot not be added. Corporation already exist.";
60 WriteServLog("%s %s", admin->logStr().c_str(), strError.c_str());
67 if (store->AddCorp(corp.name) == 0)
69 WriteServLog("%s Corporation \'%s\' added.",
70 admin->logStr().c_str(), corp.name.c_str());
74 strError = "Corporation \'" + corp.name + "\' was not added. Error: " + store->GetStrError();
75 WriteServLog("%s %s", admin->logStr().c_str(), strError.c_str());
79 //-----------------------------------------------------------------------------
80 int CorporationsImpl::Del(const std::string & name, const Admin * admin)
82 std::lock_guard<std::mutex> lock(mutex);
83 const auto& priv = admin->priv();
87 std::string s = admin->logStr() + " Delete corporation \'" + name + "\'. Access denied.";
88 strError = "Access denied.";
89 WriteServLog(s.c_str());
93 crp_iter si(find(data.begin(), data.end(), CorpConf(name)));
97 strError = "Corporation \'" + name + "\' cannot be deleted. Corporation does not exist.";
98 WriteServLog("%s %s", admin->logStr().c_str(), strError.c_str());
102 std::map<int, const_crp_iter>::iterator csi;
103 csi = searchDescriptors.begin();
104 while (csi != searchDescriptors.end())
106 if (csi->second == si)
112 if (store->DelCorp(name) < 0)
114 strError = "Corporation \'" + name + "\' was not deleted. Error: " + store->GetStrError();
115 WriteServLog("%s %s", admin->logStr().c_str(), strError.c_str());
120 WriteServLog("%s Corporation \'%s\' deleted.", admin->logStr().c_str(), name.c_str());
123 //-----------------------------------------------------------------------------
124 int CorporationsImpl::Change(const CorpConf & corp, const Admin * admin)
126 std::lock_guard<std::mutex> lock(mutex);
127 const auto& priv = admin->priv();
131 std::string s = admin->logStr() + " Change corporation \'" + corp.name + "\'. Access denied.";
132 strError = "Access denied.";
133 WriteServLog(s.c_str());
137 crp_iter si(find(data.begin(), data.end(), corp));
139 if (si == data.end())
141 strError = "Corporation \'" + corp.name + "\' cannot be changed " + ". Corporation does not exist.";
142 WriteServLog("%s %s", admin->logStr().c_str(), strError.c_str());
147 if (store->SaveCorp(corp))
149 WriteServLog("Cannot write corporation %s.", corp.name.c_str());
150 WriteServLog("%s", store->GetStrError().c_str());
154 WriteServLog("%s Corporation \'%s\' changed.",
155 admin->logStr().c_str(), corp.name.c_str());
159 //-----------------------------------------------------------------------------
160 bool CorporationsImpl::Read()
162 std::lock_guard<std::mutex> lock(mutex);
163 std::vector<std::string> corpsList;
164 if (store->GetCorpsList(&corpsList) < 0)
166 WriteServLog(store->GetStrError().c_str());
170 for (size_t i = 0; i < corpsList.size(); i++)
174 if (store->RestoreCorp(&corp, corpsList[i]))
176 WriteServLog(store->GetStrError().c_str());
180 data.push_back(corp);
184 //-----------------------------------------------------------------------------
185 bool CorporationsImpl::Find(const std::string & name, CorpConf * corp)
187 assert(corp != NULL && "Pointer to corporation is not null");
189 std::lock_guard<std::mutex> lock(mutex);
193 crp_iter si(find(data.begin(), data.end(), CorpConf(name)));
195 if (si != data.end())
203 //-----------------------------------------------------------------------------
204 bool CorporationsImpl::Exists(const std::string & name) const
206 std::lock_guard<std::mutex> lock(mutex);
209 printfd(__FILE__, "no corporations in system!\n");
213 const_crp_iter si(find(data.begin(), data.end(), CorpConf(name)));
215 if (si != data.end())
220 //-----------------------------------------------------------------------------
221 int CorporationsImpl::OpenSearch() const
223 std::lock_guard<std::mutex> lock(mutex);
225 searchDescriptors[handle] = data.begin();
228 //-----------------------------------------------------------------------------
229 int CorporationsImpl::SearchNext(int h, CorpConf * corp) const
231 std::lock_guard<std::mutex> lock(mutex);
232 if (searchDescriptors.find(h) == searchDescriptors.end())
234 WriteServLog("CORPORATIONS. Incorrect search handle.");
238 if (searchDescriptors[h] == data.end())
241 *corp = *searchDescriptors[h]++;
245 //-----------------------------------------------------------------------------
246 int CorporationsImpl::CloseSearch(int h) const
248 std::lock_guard<std::mutex> lock(mutex);
249 if (searchDescriptors.find(h) != searchDescriptors.end())
251 searchDescriptors.erase(searchDescriptors.find(h));
255 WriteServLog("CORPORATIONS. Incorrect search handle.");
258 //-----------------------------------------------------------------------------