summaryrefslogtreecommitdiffstats
path: root/java/jvpp-stats/io/fd/jvpp/stats/JVppStatsImpl.java
blob: 2b301827e82f6addbe47faa367242c62e01a864c (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
/*
 * Copyright (c) 2019 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.jvpp.stats;

import io.fd.jvpp.JVppRegistry;
import io.fd.jvpp.VppConnection;
import io.fd.jvpp.VppInvocationException;
import io.fd.jvpp.callback.JVppCallback;
import io.fd.jvpp.dto.ControlPing;
import io.fd.jvpp.dto.JVppRequest;
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardCopyOption;
import java.nio.file.attribute.PosixFilePermission;
import java.nio.file.attribute.PosixFilePermissions;
import java.util.Set;
import java.util.logging.Logger;

public class JVppStatsImpl implements io.fd.jvpp.stats.JVppStats {

    private final static Logger LOG = Logger.getLogger(JVppStatsImpl.class.getName());
    private static final java.lang.String LIBNAME = "libjvpp_stats.so";

    static {
        try {
            loadLibrary();
        } catch (Exception e) {
            LOG.severe("Can't find jvpp jni library: " + LIBNAME);
            throw new ExceptionInInitializerError(e);
        }
    }

    private VppConnection connection;
    private JVppRegistry registry;

    private static void loadStream(final InputStream is) throws IOException {
        final Set<PosixFilePermission> perms = PosixFilePermissions.fromString("rwxr-x---");
        final Path p = Files.createTempFile(LIBNAME, null, PosixFilePermissions.asFileAttribute(perms));
        try {
            Files.copy(is, p, StandardCopyOption.REPLACE_EXISTING);

            try {
                Runtime.getRuntime().load(p.toString());
            } catch (UnsatisfiedLinkError e) {
                throw new IOException("Failed to load library " + p, e);
            }
        } finally {
            try {
                Files.deleteIfExists(p);
            } catch (IOException e) {
            }
        }
    }

    private static void loadLibrary() throws IOException {
        try (final InputStream is = JVppStatsImpl.class.getResourceAsStream('/' + LIBNAME)) {
            if (is == null) {
                throw new IOException("Failed to open library resource " + LIBNAME);
            }
            loadStream(is);
        }
    }

    private static native void init0(final JVppCallback callback, final long queueAddress, final int clientIndex);

    private static native int interfaceStatisticsDump0() throws io.fd.jvpp.VppInvocationException;

    private static native int interfaceNamesDump0() throws io.fd.jvpp.VppInvocationException;

    private static native void close0();

    @Override
    public int send(final JVppRequest request) throws VppInvocationException {
        return request.send(this);
    }

    @Override
    public void init(final JVppRegistry registry, final JVppCallback callback, final long queueAddress,
                     final int clientIndex) {
        this.registry = java.util.Objects.requireNonNull(registry, "registry should not be null");
        this.connection = java.util.Objects.requireNonNull(registry.getConnection(), "connection should not be null");
        connection.checkActive();
        init0(callback, queueAddress, clientIndex);
    }

    @Override
    public int controlPing(final ControlPing controlPing) {
        return 1;
    }

    @Override
    public int interfaceStatisticsDump() throws VppInvocationException {
        connection.checkActive();
        LOG.fine("Sending interfaceStatisticsDump event message");
        int result = interfaceStatisticsDump0();
        if (result < 0) {
            throw new io.fd.jvpp.VppInvocationException("interfaceStatisticsDump", result);
        }
        return result;
    }

    @Override
    public int interfaceNamesDump() throws VppInvocationException {
        connection.checkActive();
        LOG.fine("Sending interfaceNamesDump event message");
        int result = interfaceNamesDump0();
        if (result < 0) {
            throw new io.fd.jvpp.VppInvocationException("interfaceNamesDump", result);
        }
        return result;
    }

    @Override
    public void close() {
        close0();
    }
}