aboutsummaryrefslogtreecommitdiffstats
path: root/graph-inventory/aai-client/src/main/java/org/onap/aaiclient/client/graphinventory/GraphInventoryResourcesClient.java
blob: 343e888ce18d61fff787c147987d4bcff3c3d2b9 (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
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
/*-
 * ============LICENSE_START=======================================================
 * ONAP - SO
 * ================================================================================
 * Copyright (C) 2017 - 2019 AT&T Intellectual Property. 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.
 * ============LICENSE_END=========================================================
 */

package org.onap.aaiclient.client.graphinventory;

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import javax.ws.rs.NotFoundException;
import javax.ws.rs.core.GenericType;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.Status;
import org.onap.aai.domain.yang.Relationship;
import org.onap.aaiclient.client.graphinventory.entities.GraphInventoryEdgeLabel;
import org.onap.aaiclient.client.graphinventory.entities.GraphInventoryResultWrapper;
import org.onap.aaiclient.client.graphinventory.entities.uri.GraphInventoryPluralResourceUri;
import org.onap.aaiclient.client.graphinventory.entities.uri.GraphInventoryResourceUri;
import org.onap.aaiclient.client.graphinventory.entities.uri.GraphInventorySingleResourceUri;
import org.onap.aaiclient.client.graphinventory.entities.uri.HttpAwareUri;
import org.onap.aaiclient.client.graphinventory.exceptions.GraphInventoryMultipleItemsException;
import org.onap.so.client.RestClient;
import org.onap.so.client.RestProperties;

public abstract class GraphInventoryResourcesClient<Self, Uri extends GraphInventoryResourceUri<?, ?>, SingleUri extends GraphInventorySingleResourceUri<?, ?, ?, ?, ?, ?>, PluralUri extends GraphInventoryPluralResourceUri<?, ?>, EdgeLabel extends GraphInventoryEdgeLabel, Wrapper extends GraphInventoryResultWrapper, TransactionalClient, SingleTransactionClient> {

    protected GraphInventoryClient client;

    protected GraphInventoryResourcesClient(GraphInventoryClient client) {
        this.client = client;
    }

    /**
     * creates a new object in GraphInventory
     * 
     * @param obj - can be any object which will marshal into a valid GraphInventory payload
     * @param uri
     * @return
     */
    public void create(SingleUri uri, Object obj) {
        RestClient giRC = client.createClient(uri);
        giRC.put(obj);
    }

    /**
     * creates a new object in GraphInventory with no payload body
     * 
     * @param uri
     * @return
     */
    public void createEmpty(SingleUri uri) {
        RestClient giRC = client.createClient(uri);
        giRC.put("");
    }

    /**
     * returns false if the object does not exist in GraphInventory
     * 
     * @param uri
     * @return
     */
    public boolean exists(Uri uri) {
        GraphInventoryResourceUri<?, ?> forceMinimal = (Uri) uri.clone();
        forceMinimal.format(Format.COUNT);
        forceMinimal.limit(1);
        try {
            RestClient giRC = client.createClient(forceMinimal);

            return giRC.get().getStatus() == Status.OK.getStatusCode();
        } catch (NotFoundException e) {
            return false;
        }
    }

    /**
     * Adds a relationship between two objects in GraphInventory
     * 
     * @param uriA
     * @param uriB
     * @return
     */
    public void connect(SingleUri uriA, SingleUri uriB) {
        GraphInventorySingleResourceUri<?, ?, ?, ?, ?, ?> uriAClone = (SingleUri) uriA.clone();
        RestClient giRC = client.createClient(uriAClone.relationshipAPI());
        giRC.put(this.buildRelationship(uriB));
    }

    /**
     * Adds a relationship between two objects in GraphInventory with a given edge label
     * 
     * @param uriA
     * @param uriB
     * @param edge label
     * @return
     */
    public void connect(SingleUri uriA, SingleUri uriB, EdgeLabel label) {
        GraphInventorySingleResourceUri<?, ?, ?, ?, ?, ?> uriAClone = (SingleUri) uriA.clone();
        RestClient giRC = client.createClient(uriAClone.relationshipAPI());
        giRC.put(this.buildRelationship(uriB, label));
    }

    /**
     * Removes relationship from two objects in GraphInventory
     * 
     * @param uriA
     * @param uriB
     * @return
     */
    public void disconnect(SingleUri uriA, SingleUri uriB) {
        GraphInventorySingleResourceUri<?, ?, ?, ?, ?, ?> uriAClone = (SingleUri) uriA.clone();
        RestClient giRC = client.createClient(uriAClone.relationshipAPI());
        giRC.delete(this.buildRelationship(uriB));
    }

    /**
     * Deletes object from GraphInventory. Automatically handles resource-version.
     * 
     * @param uri
     * @return
     */
    public void delete(SingleUri uri) {
        GraphInventorySingleResourceUri<?, ?, ?, ?, ?, ?> clone = (SingleUri) uri.clone();
        RestClient giRC = client.createClient(clone);
        Map<String, Object> result = giRC.get(new GenericType<Map<String, Object>>() {}).orElseThrow(
                () -> new NotFoundException(clone.build() + " does not exist in " + client.getGraphDBName()));
        String resourceVersion = (String) result.get("resource-version");
        giRC = client.createClient(clone.resourceVersion(resourceVersion));
        giRC.delete();
    }

    /**
     * @param obj - can be any object which will marshal into a valid GraphInventory payload
     * @param uri
     * @return
     */
    public void update(SingleUri uri, Object obj) {
        RestClient giRC = client.createClient(uri);
        giRC.patch(obj);
    }

    /**
     * Retrieves an object from GraphInventory and unmarshalls it into the Class specified
     * 
     * @param clazz
     * @param uri
     * @return
     */
    public <T> Optional<T> get(Class<T> clazz, Uri uri) {
        try {
            return client.createClient(uri).get(clazz);
        } catch (NotFoundException e) {
            if (this.getRestProperties().mapNotFoundToEmpty()) {
                return Optional.empty();
            } else {
                throw e;
            }
        }
    }

    /**
     * Retrieves an object from GraphInventory and returns complete response
     * 
     * @param uri
     * @return
     */
    public Response getFullResponse(Uri uri) {
        try {
            return client.createClient(uri).get();
        } catch (NotFoundException e) {
            if (this.getRestProperties().mapNotFoundToEmpty()) {
                return e.getResponse();
            } else {
                throw e;
            }
        }
    }

    /**
     * Retrieves an object from GraphInventory and automatically unmarshalls it into a Map or List
     * 
     * @param resultClass
     * @param uri
     * @return
     */
    public <T> Optional<T> get(GenericType<T> resultClass, Uri uri) {
        try {
            return client.createClient(uri).get(resultClass);
        } catch (NotFoundException e) {
            if (this.getRestProperties().mapNotFoundToEmpty()) {
                return Optional.empty();
            } else {
                throw e;
            }
        }
    }

    public <T, R> Optional<R> getOne(Class<T> pluralClass, Class<R> resultClass, PluralUri uri) {
        Optional<List<R>> result = unwrapPlural(pluralClass, resultClass, uri);

        if (result.isPresent()) {
            if (result.get().size() == 1) {
                return Optional.of(result.get().get(0));
            } else {
                throw new GraphInventoryMultipleItemsException(result.get().size(), uri);
            }
        }

        return Optional.empty();
    }

    public <T, R> Optional<R> getFirst(Class<T> pluralClass, Class<R> resultClass, PluralUri uri) {
        Optional<List<R>> result = unwrapPlural(pluralClass, resultClass, uri);

        if (result.isPresent() && !result.get().isEmpty()) {
            return Optional.of(result.get().get(0));
        }

        return Optional.empty();
    }

    public <T, R> Optional<Wrapper> getFirstWrapper(Class<T> pluralClass, Class<R> resultClass, PluralUri uri) {

        Optional<R> result = getFirst(pluralClass, resultClass, uri);
        if (result.isPresent()) {
            return Optional.of(this.createWrapper(result.get()));
        } else {
            return Optional.empty();
        }
    }

    public <T, R> Optional<Wrapper> getOneWrapper(Class<T> pluralClass, Class<R> resultClass, PluralUri uri) {

        Optional<R> result = getOne(pluralClass, resultClass, uri);
        if (result.isPresent()) {
            return Optional.of(this.createWrapper(result.get()));
        } else {
            return Optional.empty();
        }
    }

    protected <T, R> Optional<List<R>> unwrapPlural(Class<T> pluralClass, Class<R> resultClass, PluralUri uri) {
        try {
            PluralUri clone = (PluralUri) uri.clone().limit(1);
            Optional<T> obj = client.createClient(clone).get(pluralClass);
            if (obj.isPresent()) {
                Optional<Method> listMethod = Arrays.stream(obj.get().getClass().getMethods()).filter(method -> {

                    Type returnType = method.getGenericReturnType();
                    if (returnType instanceof ParameterizedType) {
                        Type[] types = ((ParameterizedType) returnType).getActualTypeArguments();
                        if (types != null && types[0] instanceof Class) {
                            Class<?> listClass = (Class<?>) types[0];
                            return resultClass.equals(listClass);
                        }
                    }

                    return false;
                }).findFirst();
                if (listMethod.isPresent()) {
                    try {
                        return Optional.of((List<R>) listMethod.get().invoke(obj.get()));

                    } catch (IllegalAccessException | IllegalArgumentException | InvocationTargetException e) {
                        throw new RuntimeException(e);
                    }
                }
            }
            return Optional.empty();

        } catch (NotFoundException e) {
            if (this.getRestProperties().mapNotFoundToEmpty()) {
                return Optional.empty();
            } else {
                throw e;
            }
        }
    }

    /**
     * Retrieves an object from GraphInventory wrapped in a helper class which offer additional features
     * 
     * @param uri
     * @return
     */
    public Wrapper get(Uri uri) {
        String json;
        try {
            json = client.createClient(uri).get(String.class).orElse(null);
        } catch (NotFoundException e) {
            if (this.getRestProperties().mapNotFoundToEmpty()) {
                json = null;
            } else {
                throw e;
            }
        }
        return this.createWrapper(json);
    }

    /**
     * Retrieves an object from GraphInventory wrapped in a helper class which offer additional features If the object
     * cannot be found in GraphInventory the method will throw the runtime exception included as an argument
     * 
     * @param uri
     * @return
     */
    public Wrapper get(Uri uri, Class<? extends RuntimeException> c) {
        String json;
        try {
            json = client.createClient(uri).get(String.class).orElseThrow(() -> createException(c,
                    uri.build() + " not found in " + client.getGraphDBName(), Optional.empty()));
        } catch (NotFoundException e) {
            throw createException(c, "could not construct uri for use with " + client.getGraphDBName(), Optional.of(e));
        }

        return this.createWrapper(json);
    }

    private RuntimeException createException(Class<? extends RuntimeException> c, String message,
            Optional<Throwable> t) {
        RuntimeException e;
        try {
            if (t.isPresent()) {
                e = c.getConstructor(String.class, Throwable.class).newInstance(message, t.get());
            } else {
                e = c.getConstructor(String.class).newInstance(message);
            }
        } catch (InstantiationException | IllegalAccessException | IllegalArgumentException | InvocationTargetException
                | NoSuchMethodException | SecurityException e1) {
            throw new IllegalArgumentException("could not create instance for " + c.getName());
        }

        return e;
    }

    /**
     * Will automatically create the object if it does not exist
     * 
     * @param obj - Optional object which serializes to a valid GraphInventory payload
     * @param uri
     * @return
     */
    public Self createIfNotExists(SingleUri uri, Optional<Object> obj) {
        if (!this.exists((Uri) uri)) {
            if (obj.isPresent()) {
                this.create(uri, obj.get());
            } else {
                this.createEmpty(uri);
            }

        }
        return (Self) this;
    }

    protected Relationship buildRelationship(SingleUri uri) {
        return buildRelationship(uri, Optional.empty());
    }

    protected Relationship buildRelationship(SingleUri uri, GraphInventoryEdgeLabel label) {
        return buildRelationship(uri, Optional.of(label));
    }

    protected Relationship buildRelationship(SingleUri uri, Optional<GraphInventoryEdgeLabel> label) {
        final Relationship result = new Relationship();
        if (uri instanceof HttpAwareUri) {
            result.setRelatedLink(((HttpAwareUri) uri).locateAndBuild().toString());
        } else {
            result.setRelatedLink(uri.build().toString());
        }
        if (label.isPresent()) {
            result.setRelationshipLabel(label.get().toString());
        }
        return result;
    }

    public abstract Wrapper createWrapper(String json);

    public abstract Wrapper createWrapper(Object json);

    /**
     * Starts a transaction which encloses multiple GraphInventory mutations
     * 
     * @return
     */
    public abstract TransactionalClient beginTransaction();

    /**
     * Starts a transaction groups multiple GraphInventory mutations
     * 
     * @return
     */
    public abstract SingleTransactionClient beginSingleTransaction();

    public <T extends RestProperties> T getRestProperties() {
        return client.getRestProperties();
    }

}