blob: 90df1ddf4449e9d9272cf9765c0a24de359af518 [file] [log] [blame]
Yuta HIGUCHI89111d92017-05-04 11:29:17 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Yuta HIGUCHI89111d92017-05-04 11:29:17 -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.netconf.cli.impl.completers;
17
18import java.lang.reflect.Modifier;
19import java.util.Arrays;
20import java.util.List;
21import java.util.Objects;
22import java.util.stream.Collectors;
23
Ray Milkeyec20a292018-10-11 15:53:33 -070024import org.apache.karaf.shell.api.action.lifecycle.Service;
Yuta HIGUCHI89111d92017-05-04 11:29:17 -070025import org.onosproject.cli.AbstractChoicesCompleter;
26import org.onosproject.netconf.DatastoreId;
27
28/**
29 * Completer for predefined {@link DatastoreId}.
30 *
31 */
Ray Milkeyec20a292018-10-11 15:53:33 -070032@Service
Yuta HIGUCHI89111d92017-05-04 11:29:17 -070033public class DatastoreIdCompleter extends AbstractChoicesCompleter {
34
35 @Override
36 protected List<String> choices() {
37 // TODO: Ideally candidates should be chosen based on Device capability
38 return Arrays.asList(DatastoreId.class.getFields())
39 .stream()
40 .filter(f -> f.getType() == DatastoreId.class)
41 .filter(f -> Modifier.isStatic(f.getModifiers()))
42 .map(f -> {
43 try {
44 return (DatastoreId) f.get(null);
45 } catch (IllegalArgumentException | IllegalAccessException e) {
46 return null;
47 }
48 })
49 .filter(Objects::nonNull)
50 .map(DatastoreId::id)
51 .collect(Collectors.toList());
52 }
53
54}