ONOS-1820 - GUI -- Base port stats view created. Navigate to it using device or topo view.

Change-Id: I87b1caea74dc4974b0a4fd1fdde7b7bd3269ca86
diff --git a/web/gui/src/main/webapp/app/view/port/port.css b/web/gui/src/main/webapp/app/view/port/port.css
new file mode 100644
index 0000000..860f879
--- /dev/null
+++ b/web/gui/src/main/webapp/app/view/port/port.css
@@ -0,0 +1,31 @@
+/*
+ * Copyright 2015 Open Networking Laboratory
+ *
+ * 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.
+ */
+
+/*
+ ONOS GUI -- Port View -- CSS file
+ */
+
+#ov-port h2 {
+    display: inline-block;
+}
+
+#ov-port div.ctrl-btns {
+    width: 45px;
+}
+
+#ov-port tr:not(.no-data) td {
+    text-align: right;
+}
\ No newline at end of file
diff --git a/web/gui/src/main/webapp/app/view/port/port.html b/web/gui/src/main/webapp/app/view/port/port.html
new file mode 100644
index 0000000..b8d4322
--- /dev/null
+++ b/web/gui/src/main/webapp/app/view/port/port.html
@@ -0,0 +1,73 @@
+<!--
+  ~ Copyright 2015 Open Networking Laboratory
+  ~
+  ~ 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.
+  -->
+
+<!-- Port partial HTML -->
+<div id="ov-port">
+    <div class="tabular-header">
+        <h2>
+            Ports for Device {{devId || "(No device selected)"}}
+            ({{tableData.length}} total)
+        </h2>
+        <div class="ctrl-btns">
+            <div class="refresh active"
+                 icon icon-size="36" icon-id="refresh"
+                 ng-click="refresh()"></div>
+        </div>
+    </div>
+
+    <div class="summary-list" onos-fixed-header>
+
+        <div class="table-header"
+             onos-sortable-header sort-callback="sortCallback(requestParams)">
+            <table>
+                <tr>
+                    <td colId="id" col-width="60px" sortable>Port ID </td>
+                    <td colId="pkt_rx" sortable>Pkts Received </td>
+                    <td colId="pkt_tx" sortable>Pkts Sent </td>
+                    <td colId="bytes_rx" sortable>Bytes Received </td>
+                    <td colId="bytes_tx" sortable>Bytes Sent </td>
+                    <td colId="pkt_rx_drp" sortable>Pkts Received Dropped </td>
+                    <td colId="pkt_tx_drp" sortable>Pkts Sent Dropped </td>
+                    <td colId="duration" sortable>Duration (sec) </td>
+                </tr>
+            </table>
+        </div>
+
+        <div class="table-body">
+            <table>
+                <tr ng-hide="tableData.length" class="no-data ignore-width">
+                    <td colspan="8">
+                        No Ports found
+                    </td>
+                </tr>
+
+                <tr ng-repeat="port in tableData"
+                    ng-repeat-done>
+                    <td>{{port.id}}</td>
+                    <td>{{port.pkt_rx}}</td>
+                    <td>{{port.pkt_tx}}</td>
+                    <td>{{port.bytes_rx}}</td>
+                    <td>{{port.bytes_tx}}</td>
+                    <td>{{port.pkt_rx_drp}}</td>
+                    <td>{{port.pkt_tx_drp}}</td>
+                    <td>{{port.duration}}</td>
+                </tr>
+            </table>
+        </div>
+
+    </div>
+
+</div>
diff --git a/web/gui/src/main/webapp/app/view/port/port.js b/web/gui/src/main/webapp/app/view/port/port.js
new file mode 100644
index 0000000..857f846
--- /dev/null
+++ b/web/gui/src/main/webapp/app/view/port/port.js
@@ -0,0 +1,60 @@
+/*
+ * Copyright 2015 Open Networking Laboratory
+ *
+ * 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.
+ */
+
+/*
+ ONOS GUI -- Port View Module
+ */
+
+(function () {
+    'use strict';
+
+    // injected references
+    var $log, $scope, $location, fs, ts, tbs;
+
+    angular.module('ovPort', [])
+    .controller('OvPortCtrl',
+        ['$log', '$scope', '$location',
+            'FnService', 'TableService', 'TableBuilderService',
+
+        function (_$log_, _$scope_, _$location_, _fs_, _ts_, _tbs_) {
+            var params;
+            $log = _$log_;
+            $scope = _$scope_;
+            $location = _$location_;
+            fs = _fs_;
+            ts = _ts_;
+            tbs = _tbs_;
+
+            params = $location.search();
+            if (params.hasOwnProperty('devId')) {
+                $scope.devId = params['devId'];
+            }
+
+            tbs.buildTable({
+                scope: $scope,
+                tag: 'port',
+                query: params
+            });
+
+            $scope.refresh = function () {
+                $log.debug('Refreshing ports page');
+                ts.resetSortIcons();
+                $scope.sortCallback();
+            };
+            
+            $log.log('OvPortCtrl has been created');
+        }]);
+}());