aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/um/service/include/service/service_manager.hpp
blob: f33817e0ff0517d087ad7b62a64121d0a11e63f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "Windows 7 drivers" project.
// For details, see https://github.com/egor-tensin/windows7-drivers.
// Distributed under the MIT License.

#pragma once

#include "common.hpp"
#include "service_handle.hpp"

#include <Windows.h>

#include <utility>

namespace service
{
    class ServiceManager
    {
    public:
        static ServiceManager open();

        ServiceManager(ServiceManager&& other) LIBSERVICE_NOEXCEPT
        {
            swap(other);
        }

        ServiceManager& operator=(ServiceManager other) LIBSERVICE_NOEXCEPT
        {
            swap(other);
            return *this;
        }

        void swap(ServiceManager& other) LIBSERVICE_NOEXCEPT
        {
            using std::swap;
            swap(handle, other.handle);
        }

        operator SC_HANDLE() const
        {
            return handle;
        }

    private:
        ServiceManager(ServiceHandle handle)
            : handle(std::move(handle))
        { }

        ServiceHandle handle;

        ServiceManager(const ServiceManager&) = delete;
    };

    inline void swap(ServiceManager& a, ServiceManager& b) LIBSERVICE_NOEXCEPT
    {
        a.swap(b);
    }
}

namespace std
{
    template <>
    inline void swap<service::ServiceManager>(
        service::ServiceManager& a,
        service::ServiceManager& b) LIBSERVICE_NOEXCEPT
    {
        a.swap(b);
    }
}