blob: 943716dcc18c13cb3bab9424e82d764a065b5e12 [file] [log] [blame]
Thomas Vachuskaad37e372017-08-03 12:07:01 -07001#!/bin/bash
Thomas Vachuskaad37e372017-08-03 12:07:01 -07002#
3# Copyright 2015-present Open Networking Foundation
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17
18# -----------------------------------------------------------------------------
19# Tool to compile the specified YANG file(s) using the ONOS live compilation.
20# -----------------------------------------------------------------------------
Thomas Vachuskaa7be50d2018-04-16 14:02:18 -070021function usage {
22 echo "usage: onos-compile-yang [-P port] [-u user] [-p password] [-v] \\"
23 echo " <yang-file|zip-file|jar-file|directory>" >&2
24 exit 1
25}
Thomas Vachuskaad37e372017-08-03 12:07:01 -070026
Thomas Vachuskaa7be50d2018-04-16 14:02:18 -070027. $(dirname $0)/_rest-port
Thomas Vachuska7f2a3562018-02-28 10:02:16 -080028. $(dirname $0)/_find-node
Thomas Vachuskaad37e372017-08-03 12:07:01 -070029
30node=$(find_node $1)
31yang=$2
32
Thomas Vachuskaa7be50d2018-04-16 14:02:18 -070033export URL=http://$node:$port/onos/yang/models
34export curl="curl $fail -sSL --user $user:$password --noproxy ${node} "
Thomas Vachuskaad37e372017-08-03 12:07:01 -070035
36[ -z $node -o "$node" = "-h" -o "$node" = "--help" -o "$node" = "-?" ] && usage
37
38if [ -d $yang ]; then
39 newYang=/tmp/$(basename $yang).jar
40 jar cf $newYang $yang
41 yang=$newYang
42fi
43
44file=$(basename $yang)
45modelId="$(echo $file | sed -E 's/(.zip|.jar|.yang)$//g')"
Thomas Vachuska67484d92018-07-17 11:51:54 -070046$curl $URL?modelId=$modelId -F"file=@$yang"