summaryrefslogtreecommitdiffstats
path: root/vpp-integration/api-docs/core/src/main/java/io/fd/hc2vpp/docs/core/CoverageScanner.java
blob: c1c67d77b48482d5938a195bae600862c4ab16a1 (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
/*
 * Copyright (c) 2017 Cisco and/or its affiliates.
 *
 * 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 io.fd.hc2vpp.docs.core;


import static java.lang.String.format;

import io.fd.hc2vpp.docs.api.Operation;
import java.io.IOException;
import java.io.InputStream;
import java.util.Collections;
import java.util.HashSet;
import java.util.Set;
import org.objectweb.asm.ClassReader;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Scans provided class for reference under specified crud method
 */
public class CoverageScanner {

    private static final Logger LOG = LoggerFactory.getLogger(CoverageScanner.class);

    private final Class<?> classToScan;
    private final Operation.CrudOperation crudOperation;
    private final Class<?> referenceClass;

    public CoverageScanner(final Class<?> classToScan,
                           final Operation.CrudOperation crudOperation,
                           final Class<?> referenceClass) {
        this.classToScan = classToScan;
        this.crudOperation = crudOperation;
        this.referenceClass = referenceClass;
    }

    static ClassReader loadClass(String className) {
        try (InputStream classStream =
                     CoverageScanner.class.getClassLoader().getResourceAsStream(className + ".class")) {
            return new ClassReader(classStream);
        } catch (IOException e) {
            throw new IllegalStateException(format("Unable to load bytecode for class %s", className), e);
        }
    }

    public Set<PluginMethodReference> scan() {
        LOG.debug("Scanning class {}", classToScan.getName());
        final ClassReader classReader = loadClass(byteCodeStyleReference(classToScan.getName()));
        final Set<PluginMethodReference> foundReferences = Collections.synchronizedSet(new HashSet<>());
        classReader.accept(new MethodDelegatingClassVisitor(byteCodeStyleReference(classToScan.getName()),
                crudOperation.getMethodReference(), byteCodeStyleReference(referenceClass.getPackage().getName()),
                foundReferences, null), ClassReader.SKIP_DEBUG);
        return foundReferences;
    }

    // converts java style reference to bytecode-style name(with slashes instead of dots)
    private static String byteCodeStyleReference(final String javaStyleName) {
        return javaStyleName.replace(".", "/");
    }
}