aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils/libservice/src/service.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/libservice/src/service.cpp')
-rw-r--r--utils/libservice/src/service.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/utils/libservice/src/service.cpp b/utils/libservice/src/service.cpp
index 1f7cbef..efe645f 100644
--- a/utils/libservice/src/service.cpp
+++ b/utils/libservice/src/service.cpp
@@ -95,6 +95,31 @@ namespace libservice
throw std::system_error(ec, WinErrorCategory::get(), LIBSERVICE_ERROR_PREFIX);
}
}
+
+ bool does_service_exist(const ServiceManager& mgr,
+ const std::string& name)
+ {
+ const auto raw = OpenService(static_cast<SC_HANDLE>(mgr),
+ name.c_str(),
+ SERVICE_QUERY_STATUS);
+
+ if (NULL != raw)
+ {
+ ServiceHandle handle(raw);
+ return true;
+ }
+
+ const auto ec = GetLastError();
+
+ switch (ec)
+ {
+ case ERROR_SERVICE_DOES_NOT_EXIST:
+ return false;
+
+ default:
+ throw std::system_error(ec, WinErrorCategory::get(), LIBSERVICE_ERROR_PREFIX);
+ }
+ }
SERVICE_STATUS_PROCESS query_service_status(const ServiceHandle& handle)
{
@@ -174,6 +199,12 @@ namespace libservice
return Service(install_service(mgr, name, bin_path));
}
+ bool Service::does_exist(const ServiceManager& mgr,
+ const std::string& name)
+ {
+ return does_service_exist(mgr, name);
+ }
+
void Service::start() const
{
const auto state = query_service_state(m_handle);