blob: f8dc2398431ec3e065e483f2dadabec132216c2d [file] [log] [blame]
Jon Hall78b300c2015-08-04 15:52:55 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Jon Hall78b300c2015-08-04 15:52:55 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.distributedprimitives.cli;
17
Ray Milkey86ad7bb2018-09-27 12:32:28 -070018import org.apache.karaf.shell.api.action.Argument;
19import org.apache.karaf.shell.api.action.Command;
Ray Milkey7a2dee52018-09-28 10:58:28 -070020import org.apache.karaf.shell.api.action.lifecycle.Service;
Jon Hall78b300c2015-08-04 15:52:55 -070021import org.onosproject.cli.AbstractShellCommand;
22import org.onosproject.store.serializers.KryoNamespaces;
23import org.onosproject.store.service.Serializer;
24import org.onosproject.store.service.StorageService;
25import org.onosproject.store.service.TransactionContext;
26import org.onosproject.store.service.TransactionalMap;
27
28/**
29 * CLI command to get a value associated with a specific key in a transactional map.
30 */
Ray Milkey7a2dee52018-09-28 10:58:28 -070031@Service
Jon Hall78b300c2015-08-04 15:52:55 -070032@Command(scope = "onos", name = "transactional-map-test-get",
33 description = "Get a value associated with a specific key in a transactional map")
34public class TransactionalMapTestGetCommand extends AbstractShellCommand {
35
Jon Hall78b300c2015-08-04 15:52:55 -070036 @Argument(index = 0, name = "key",
37 description = "Key to get the value of",
38 required = true, multiValued = false)
39 private String key = null;
40
41 TransactionalMap<String, String> map;
42 String mapName = "Test-Map";
43 Serializer serializer = Serializer.using(KryoNamespaces.BASIC);
44
45 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070046 protected void doExecute() {
Jon Hall78b300c2015-08-04 15:52:55 -070047 StorageService storageService = get(StorageService.class);
48 TransactionContext context;
Madan Jampani54c5e232016-07-11 15:35:25 -070049 context = storageService.transactionContextBuilder().build();
Jon Hall78b300c2015-08-04 15:52:55 -070050 context.begin();
51 try {
52 map = context.getTransactionalMap(mapName, serializer);
53 String response = map.get(key);
54 context.commit();
55
56 if (response == null) {
57 print("Key %s not found.", key);
58 } else {
59 print("Key-value pair (%s, %s) found.", key, response);
60 }
61 } catch (Exception e) {
62 context.abort();
63 throw e;
64 }
65 }
66}