blob: 3d0144528dc7b1cfe40f4ec6101962f3e898322e (
plain)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef mozilla_mscom_ActivationContext_h
#define mozilla_mscom_ActivationContext_h
#include <utility>
#include "mozilla/Attributes.h"
#include "mozilla/mscom/ActCtxResource.h"
#if defined(MOZILLA_INTERNAL_API)
# include "mozilla/ResultVariant.h"
# include "nsString.h"
#endif // defined(MOZILLA_INTERNAL_API)
#include <windows.h>
namespace mozilla {
namespace mscom {
class ActivationContext final {
public:
// This is the default resource ID that the Windows dynamic linker searches
// for when seeking a manifest while loading a DLL.
static constexpr WORD kDllManifestDefaultResourceId = 2;
ActivationContext() : mActCtx(INVALID_HANDLE_VALUE) {}
explicit ActivationContext(ActCtxResource aResource);
explicit ActivationContext(HMODULE aLoadFromModule,
WORD aResourceId = kDllManifestDefaultResourceId);
ActivationContext(ActivationContext&& aOther);
ActivationContext& operator=(ActivationContext&& aOther);
ActivationContext(const ActivationContext& aOther);
ActivationContext& operator=(const ActivationContext& aOther);
~ActivationContext();
explicit operator bool() const { return mActCtx != INVALID_HANDLE_VALUE; }
#if defined(MOZILLA_INTERNAL_API)
static Result<uintptr_t, HRESULT> GetCurrent();
static HRESULT GetCurrentManifestPath(nsAString& aOutManifestPath);
#endif // defined(MOZILLA_INTERNAL_API)
private:
void Init(ACTCTXW& aActCtx);
void AddRef();
void Release();
private:
HANDLE mActCtx;
friend class ActivationContextRegion;
};
class MOZ_NON_TEMPORARY_CLASS ActivationContextRegion final {
public:
template <typename... Args>
explicit ActivationContextRegion(Args&&... aArgs)
: mActCtx(std::forward<Args>(aArgs)...), mActCookie(0) {
Activate();
}
ActivationContextRegion();
explicit ActivationContextRegion(const ActivationContext& aActCtx);
ActivationContextRegion& operator=(const ActivationContext& aActCtx);
explicit ActivationContextRegion(ActivationContext&& aActCtx);
ActivationContextRegion& operator=(ActivationContext&& aActCtx);
ActivationContextRegion(ActivationContextRegion&& aRgn);
ActivationContextRegion& operator=(ActivationContextRegion&& aRgn);
~ActivationContextRegion();
explicit operator bool() const { return !!mActCookie; }
ActivationContextRegion(const ActivationContextRegion&) = delete;
ActivationContextRegion& operator=(const ActivationContextRegion&) = delete;
bool Deactivate();
private:
void Activate();
ActivationContext mActCtx;
ULONG_PTR mActCookie;
};
} // namespace mscom
} // namespace mozilla
#endif // mozilla_mscom_ActivationContext_h
|