forked from linvi/tweetinvi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCredentialsAccessor.cs
97 lines (81 loc) · 3.26 KB
/
CredentialsAccessor.cs
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
using System;
using Tweetinvi.Core.Credentials;
using Tweetinvi.Models;
namespace Tweetinvi.Credentials
{
public class CredentialsAccessor : ICredentialsAccessor
{
private static ITwitterCredentials StaticApplicationCredentials { get; set; }
public CredentialsAccessor()
{
CurrentThreadCredentials = StaticApplicationCredentials;
}
public ITwitterCredentials ApplicationCredentials
{
get { return StaticApplicationCredentials; }
set
{
StaticApplicationCredentials = value;
if (_currentThreadCredentials == null)
{
_currentThreadCredentials = value;
}
}
}
[ThreadStatic] // Ensures that the thread initialization is performed only once!
private static bool? _currentThreadCredentialsInitialized;
[ThreadStatic]
private static ITwitterCredentials _currentThreadCredentials;
public ITwitterCredentials CurrentThreadCredentials
{
get
{
if (_currentThreadCredentialsInitialized == null)
{
_currentThreadCredentials = ApplicationCredentials;
_currentThreadCredentialsInitialized = true;
}
return _currentThreadCredentials;
}
set
{
_currentThreadCredentials = value;
if (!HasTheApplicationCredentialsBeenInitialized() && _currentThreadCredentials != null)
{
StaticApplicationCredentials = value;
}
}
}
public T ExecuteOperationWithCredentials<T>(ITwitterCredentials credentials, Func<T> operation)
{
// This operation does not need any lock because the Credentials are unique per thread
// We can therefore change the value safely without affecting any other thread
var initialCredentials = CurrentThreadCredentials;
CurrentThreadCredentials = credentials;
var result = operation();
bool hasUserChangedCredentialsDuringOpertion = CurrentThreadCredentials != credentials;
if (!hasUserChangedCredentialsDuringOpertion)
{
CurrentThreadCredentials = initialCredentials;
}
return result;
}
public void ExecuteOperationWithCredentials(ITwitterCredentials credentials, Action operation)
{
// This operation does not need any lock because the Credentials are unique per thread
// We can therefore change the value safely without affecting any other thread
var initialCredentials = CurrentThreadCredentials;
CurrentThreadCredentials = credentials;
operation();
bool hasUserChangedCredentialsDuringOpertion = CurrentThreadCredentials != credentials;
if (!hasUserChangedCredentialsDuringOpertion)
{
CurrentThreadCredentials = initialCredentials;
}
}
private bool HasTheApplicationCredentialsBeenInitialized()
{
return StaticApplicationCredentials != null;
}
}
}