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 "services_impl.h"
29 //-----------------------------------------------------------------------------
30 SERVICES_IMPL::SERVICES_IMPL(STORE * st)
34 WriteServLog(GetStgLogger()),
40 pthread_mutex_init(&mutex, NULL);
43 //-----------------------------------------------------------------------------
44 int SERVICES_IMPL::Add(const SERVICE_CONF & service, const ADMIN * admin)
46 STG_LOCKER lock(&mutex);
47 const PRIV * priv = admin->GetPriv();
49 if (!priv->serviceChg)
51 std::string s = admin->GetLogStr() + " Add service \'" + service.name + "\'. Access denied.";
52 strError = "Access denied.";
53 WriteServLog(s.c_str());
57 iterator si(std::find(data.begin(), data.end(), service));
61 strError = "Service \'" + service.name + "\' cannot not be added. Service already exist.";
62 WriteServLog("%s %s", admin->GetLogStr().c_str(), strError.c_str());
67 data.push_back(service);
69 if (store->AddService(service.name) == 0)
71 WriteServLog("%s Service \'%s\' added.",
72 admin->GetLogStr().c_str(), service.name.c_str());
76 strError = "Service \'" + service.name + "\' was not added. Error: " + store->GetStrError();
77 WriteServLog("%s %s", admin->GetLogStr().c_str(), strError.c_str());
81 //-----------------------------------------------------------------------------
82 int SERVICES_IMPL::Del(const std::string & name, const ADMIN * admin)
84 STG_LOCKER lock(&mutex);
85 const PRIV * priv = admin->GetPriv();
87 if (!priv->serviceChg)
89 std::string s = admin->GetLogStr() + " Delete service \'" + name + "\'. Access denied.";
90 strError = "Access denied.";
91 WriteServLog(s.c_str());
95 iterator si(std::find(data.begin(), data.end(), SERVICE_CONF(name)));
99 strError = "Service \'" + name + "\' cannot be deleted. Service does not exist.";
100 WriteServLog("%s %s", admin->GetLogStr().c_str(), strError.c_str());
104 std::map<int, const_iterator>::iterator csi;
105 csi = searchDescriptors.begin();
106 while (csi != searchDescriptors.end())
108 if (csi->second == si)
114 if (store->DelService(name) < 0)
116 strError = "Service \'" + name + "\' was not deleted. Error: " + store->GetStrError();
117 WriteServLog("%s %s", admin->GetLogStr().c_str(), strError.c_str());
122 WriteServLog("%s Service \'%s\' deleted.", admin->GetLogStr().c_str(), name.c_str());
125 //-----------------------------------------------------------------------------
126 int SERVICES_IMPL::Change(const SERVICE_CONF & service, const ADMIN * admin)
128 STG_LOCKER lock(&mutex);
129 const PRIV * priv = admin->GetPriv();
131 if (!priv->serviceChg)
133 std::string s = admin->GetLogStr() + " Change service \'" + service.name + "\'. Access denied.";
134 strError = "Access denied.";
135 WriteServLog(s.c_str());
139 iterator si(std::find(data.begin(), data.end(), service));
141 if (si == data.end())
143 strError = "Service \'" + service.name + "\' cannot be changed " + ". Service does not exist.";
144 WriteServLog("%s %s", admin->GetLogStr().c_str(), strError.c_str());
148 printfd(__FILE__, "Old cost = %f, old pay day = %d\n", si->cost, (unsigned)si->payDay);
150 printfd(__FILE__, "New cost = %f, New pay day = %d\n", si->cost, (unsigned)si->payDay);
151 if (store->SaveService(service))
153 WriteServLog("Cannot write service %s.", service.name.c_str());
154 WriteServLog("%s", store->GetStrError().c_str());
158 WriteServLog("%s Service \'%s\' changed.",
159 admin->GetLogStr().c_str(), service.name.c_str());
163 //-----------------------------------------------------------------------------
164 bool SERVICES_IMPL::Read()
166 STG_LOCKER lock(&mutex);
167 std::vector<std::string> servicesList;
168 if (store->GetServicesList(&servicesList) < 0)
170 WriteServLog(store->GetStrError().c_str());
174 for (size_t i = 0; i < servicesList.size(); i++)
176 SERVICE_CONF service;
178 if (store->RestoreService(&service, servicesList[i]))
180 WriteServLog(store->GetStrError().c_str());
184 data.push_back(service);
188 //-----------------------------------------------------------------------------
189 bool SERVICES_IMPL::Find(const std::string & name, SERVICE_CONF * service) const
191 assert(service != NULL && "Pointer to service is not null");
193 STG_LOCKER lock(&mutex);
197 const_iterator si(std::find(data.begin(), data.end(), SERVICE_CONF(name)));
199 if (si != data.end())
207 //-----------------------------------------------------------------------------
208 bool SERVICES_IMPL::Find(const std::string & name, SERVICE_CONF_RES * service) const
210 assert(service != NULL && "Pointer to service is not null");
212 STG_LOCKER lock(&mutex);
216 const_iterator si(std::find(data.begin(), data.end(), SERVICE_CONF(name)));
218 if (si != data.end())
226 //-----------------------------------------------------------------------------
227 bool SERVICES_IMPL::Exists(const std::string & name) const
229 STG_LOCKER lock(&mutex);
232 printfd(__FILE__, "No services in the system!\n");
236 const_iterator si(std::find(data.begin(), data.end(), SERVICE_CONF(name)));
238 if (si != data.end())
243 //-----------------------------------------------------------------------------
244 int SERVICES_IMPL::OpenSearch() const
246 STG_LOCKER lock(&mutex);
248 searchDescriptors[handle] = data.begin();
251 //-----------------------------------------------------------------------------
252 int SERVICES_IMPL::SearchNext(int h, SERVICE_CONF * service) const
254 STG_LOCKER lock(&mutex);
255 if (searchDescriptors.find(h) == searchDescriptors.end())
257 WriteServLog("SERVICES. Incorrect search handle.");
261 if (searchDescriptors[h] == data.end())
264 *service = *searchDescriptors[h]++;
268 //-----------------------------------------------------------------------------
269 int SERVICES_IMPL::CloseSearch(int h) const
271 STG_LOCKER lock(&mutex);
272 if (searchDescriptors.find(h) != searchDescriptors.end())
274 searchDescriptors.erase(searchDescriptors.find(h));
278 WriteServLog("SERVICES. Incorrect search handle.");
281 //-----------------------------------------------------------------------------