blob: 706ccfcac142c2e5b6b84ea9a0c9f46294c2ad26 [file] [log] [blame]
Thomas Vachuska3ece3732015-09-22 23:58:50 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Thomas Vachuska3ece3732015-09-22 23:58:50 -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 */
16
17/*
18 ONOS GUI -- Packet Processor View Module
19 */
20
21(function () {
22 'use strict';
23
24 // injected references
25 var $log, $scope, $location, fs, tbs, ns;
26
27 angular.module('ovProcessor', [])
28 .controller('OvProcessorCtrl',
29 ['$log', '$scope', '$location',
30 'FnService', 'TableBuilderService', 'NavService',
31
32 function (_$log_, _$scope_, _$location_, _fs_, _tbs_, _ns_) {
33 var params;
34 $log = _$log_;
35 $scope = _$scope_;
36 $location = _$location_;
37 fs = _fs_;
38 tbs = _tbs_;
39 ns = _ns_;
40 $scope.requestTip = 'Show packet requests';
41
42 params = $location.search();
43
44 tbs.buildTable({
45 scope: $scope,
46 tag: 'processor',
47 query: params
48 });
49
50 $scope.nav = function (path) {
51 if ($scope.devId) {
52 ns.navTo(path);
53 }
54 };
55
56 $log.log('OvProcessorCtrl has been created');
57 }]);
58}());