forked from googleapis/google-cloud-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResourceManagerImpl.java
More file actions
215 lines (192 loc) · 8.01 KB
/
ResourceManagerImpl.java
File metadata and controls
215 lines (192 loc) · 8.01 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/*
* Copyright 2015 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.gcloud.resourcemanager;
import static com.google.common.base.Preconditions.checkArgument;
import static com.google.gcloud.RetryHelper.runWithRetries;
import com.google.common.base.Function;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Iterables;
import com.google.common.collect.Maps;
import com.google.gcloud.BaseService;
import com.google.gcloud.ExceptionHandler;
import com.google.gcloud.ExceptionHandler.Interceptor;
import com.google.gcloud.Page;
import com.google.gcloud.PageImpl;
import com.google.gcloud.PageImpl.NextPageFetcher;
import com.google.gcloud.RetryHelper.RetryHelperException;
import com.google.gcloud.spi.ResourceManagerRpc;
import com.google.gcloud.spi.ResourceManagerRpc.Tuple;
import java.util.Map;
import java.util.concurrent.Callable;
final class ResourceManagerImpl
extends BaseService<ResourceManagerOptions> implements ResourceManager {
private static final Interceptor EXCEPTION_HANDLER_INTERCEPTOR = new Interceptor() {
private static final long serialVersionUID = 2091576149969931704L;
@Override
public RetryResult afterEval(Exception exception, RetryResult retryResult) {
return Interceptor.RetryResult.CONTINUE_EVALUATION;
}
@Override
public RetryResult beforeEval(Exception exception) {
if (exception instanceof ResourceManagerException) {
boolean retriable = ((ResourceManagerException) exception).retryable();
return retriable ? Interceptor.RetryResult.RETRY : Interceptor.RetryResult.NO_RETRY;
}
return Interceptor.RetryResult.CONTINUE_EVALUATION;
}
};
static final ExceptionHandler EXCEPTION_HANDLER = ExceptionHandler.builder()
.abortOn(RuntimeException.class)
.interceptor(EXCEPTION_HANDLER_INTERCEPTOR)
.build();
private final ResourceManagerRpc resourceManagerRpc;
ResourceManagerImpl(ResourceManagerOptions options) {
super(options);
resourceManagerRpc = options.rpc();
}
@Override
public ProjectInfo create(final ProjectInfo project) {
try {
return ProjectInfo.fromPb(runWithRetries(
new Callable<com.google.api.services.cloudresourcemanager.model.Project>() {
@Override
public com.google.api.services.cloudresourcemanager.model.Project call() {
return resourceManagerRpc.create(project.toPb());
}
}, options().retryParams(), EXCEPTION_HANDLER));
} catch (RetryHelperException e) {
throw ResourceManagerException.translateAndThrow(e);
}
}
@Override
public void delete(final String projectId) {
try {
runWithRetries(new Callable<Void>() {
@Override
public Void call() {
resourceManagerRpc.delete(projectId);
return null;
}
}, options().retryParams(), EXCEPTION_HANDLER);
} catch (RetryHelperException e) {
throw ResourceManagerException.translateAndThrow(e);
}
}
@Override
public ProjectInfo get(final String projectId, ProjectGetOption... options) {
final Map<ResourceManagerRpc.Option, ?> optionsMap = optionMap(options);
try {
com.google.api.services.cloudresourcemanager.model.Project answer = runWithRetries(
new Callable<com.google.api.services.cloudresourcemanager.model.Project>() {
@Override
public com.google.api.services.cloudresourcemanager.model.Project call() {
return resourceManagerRpc.get(projectId, optionsMap);
}
}, options().retryParams(), EXCEPTION_HANDLER);
return answer == null ? null : ProjectInfo.fromPb(answer);
} catch (RetryHelperException e) {
throw ResourceManagerException.translateAndThrow(e);
}
}
private static class ProjectPageFetcher implements NextPageFetcher<ProjectInfo> {
private static final long serialVersionUID = 2158209410430566961L;
private final Map<ResourceManagerRpc.Option, ?> requestOptions;
private final ResourceManagerOptions serviceOptions;
ProjectPageFetcher(ResourceManagerOptions serviceOptions, String cursor,
Map<ResourceManagerRpc.Option, ?> optionMap) {
this.requestOptions =
PageImpl.nextRequestOptions(ResourceManagerRpc.Option.PAGE_TOKEN, cursor, optionMap);
this.serviceOptions = serviceOptions;
}
@Override
public Page<ProjectInfo> nextPage() {
return listProjects(serviceOptions, requestOptions);
}
}
@Override
public Page<ProjectInfo> list(ProjectListOption... options) {
return listProjects(options(), optionMap(options));
}
private static Page<ProjectInfo> listProjects(final ResourceManagerOptions serviceOptions,
final Map<ResourceManagerRpc.Option, ?> optionsMap) {
try {
Tuple<String, Iterable<com.google.api.services.cloudresourcemanager.model.Project>> result =
runWithRetries(new Callable<Tuple<String,
Iterable<com.google.api.services.cloudresourcemanager.model.Project>>>() {
@Override
public Tuple<String,
Iterable<com.google.api.services.cloudresourcemanager.model.Project>> call() {
return serviceOptions.rpc().list(optionsMap);
}
},
serviceOptions.retryParams(), EXCEPTION_HANDLER);
String cursor = result.x();
Iterable<ProjectInfo> projects =
result.y() == null
? ImmutableList.<ProjectInfo>of() : Iterables.transform(
result.y(),
new Function<com.google.api.services.cloudresourcemanager.model.Project,
ProjectInfo>() {
@Override
public ProjectInfo apply(
com.google.api.services.cloudresourcemanager.model.Project projectPb) {
return ProjectInfo.fromPb(projectPb);
}
});
return new PageImpl<>(
new ProjectPageFetcher(serviceOptions, cursor, optionsMap), cursor, projects);
} catch (RetryHelperException e) {
throw ResourceManagerException.translateAndThrow(e);
}
}
@Override
public ProjectInfo replace(final ProjectInfo newProject) {
try {
return ProjectInfo.fromPb(runWithRetries(
new Callable<com.google.api.services.cloudresourcemanager.model.Project>() {
@Override
public com.google.api.services.cloudresourcemanager.model.Project call() {
return resourceManagerRpc.replace(newProject.toPb());
}
}, options().retryParams(), EXCEPTION_HANDLER));
} catch (RetryHelperException e) {
throw ResourceManagerException.translateAndThrow(e);
}
}
@Override
public void undelete(final String projectId) {
try {
runWithRetries(new Callable<Void>() {
@Override
public Void call() {
resourceManagerRpc.undelete(projectId);
return null;
}
}, options().retryParams(), EXCEPTION_HANDLER);
} catch (RetryHelperException e) {
throw ResourceManagerException.translateAndThrow(e);
}
}
private Map<ResourceManagerRpc.Option, ?> optionMap(Option... options) {
Map<ResourceManagerRpc.Option, Object> temp = Maps.newEnumMap(ResourceManagerRpc.Option.class);
for (Option option : options) {
Object prev = temp.put(option.rpcOption(), option.value());
checkArgument(prev == null, "Duplicate option %s", option);
}
return ImmutableMap.copyOf(temp);
}
}