blob: 3ffa18bf67275689bca9d1fc534e0b50576cd5dc (
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
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_COCOA_SCOPED_AUTHORIZATIONREF_H_
#define CHROME_BROWSER_COCOA_SCOPED_AUTHORIZATIONREF_H_
#pragma once
#include <Security/Authorization.h>
#include "base/basictypes.h"
#include "base/compiler_specific.h"
// scoped_AuthorizationRef maintains ownership of an AuthorizationRef. It is
// patterned after the scoped_ptr interface.
class scoped_AuthorizationRef {
public:
explicit scoped_AuthorizationRef(AuthorizationRef authorization = NULL)
: authorization_(authorization) {
}
~scoped_AuthorizationRef() {
if (authorization_) {
AuthorizationFree(authorization_, kAuthorizationFlagDestroyRights);
}
}
void reset(AuthorizationRef authorization = NULL) {
if (authorization_ != authorization) {
if (authorization_) {
AuthorizationFree(authorization_, kAuthorizationFlagDestroyRights);
}
authorization_ = authorization;
}
}
bool operator==(AuthorizationRef that) const {
return authorization_ == that;
}
bool operator!=(AuthorizationRef that) const {
return authorization_ != that;
}
operator AuthorizationRef() const {
return authorization_;
}
AuthorizationRef* operator&() {
return &authorization_;
}
AuthorizationRef get() const {
return authorization_;
}
void swap(scoped_AuthorizationRef& that) {
AuthorizationRef temp = that.authorization_;
that.authorization_ = authorization_;
authorization_ = temp;
}
// scoped_AuthorizationRef::release() is like scoped_ptr<>::release. It is
// NOT a wrapper for AuthorizationFree(). To force a
// scoped_AuthorizationRef object to call AuthorizationFree(), use
// scoped_AuthorizaitonRef::reset().
AuthorizationRef release() WARN_UNUSED_RESULT {
AuthorizationRef temp = authorization_;
authorization_ = NULL;
return temp;
}
private:
AuthorizationRef authorization_;
DISALLOW_COPY_AND_ASSIGN(scoped_AuthorizationRef);
};
#endif // CHROME_BROWSER_COCOA_SCOPED_AUTHORIZATIONREF_H_
|