blob: e97dc6374f6b67659c6694511171a176a4ed60c4 [file] [log] [blame]
PatrikBuhra2bc79c2019-10-29 13:39:00 +01001/*-
2 * ========================LICENSE_START=================================
3 * O-RAN-SC
4 * %%
5 * Copyright (C) 2019 AT&T Intellectual Property
6 * %%
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ========================LICENSE_END===================================
19 */
20
21import { CollectionViewer, DataSource } from '@angular/cdk/collections';
22import { HttpErrorResponse } from '@angular/common/http';
23import { MatSort } from '@angular/material/sort';
24import { Observable } from 'rxjs/Observable';
25import { BehaviorSubject } from 'rxjs/BehaviorSubject';
26import { merge } from 'rxjs';
27import { of } from 'rxjs/observable/of';
28import { catchError, finalize, map } from 'rxjs/operators';
29import { XappControlRow, XMDeployedApp, XMXappInstance } from '../interfaces/app-mgr.types';
30import { AppMgrService } from '../services/app-mgr/app-mgr.service';
31import { NotificationService } from '../services/ui/notification.service';
32
33export class AppControlDataSource extends DataSource<XappControlRow> {
34
35 private appControlSubject = new BehaviorSubject<XappControlRow[]>([]);
36
37 private loadingSubject = new BehaviorSubject<boolean>(false);
38
39 public loading$ = this.loadingSubject.asObservable();
40
41 public rowCount = 1; // hide footer during intial load
42
43 private emptyInstances: XMXappInstance =
44 { ip: null,
45 name: null,
46 port: null,
47 status: null,
48 rxMessages: [],
49 txMessages: [],
50 };
51
52 constructor(private appMgrSvc: AppMgrService,
53 private sort: MatSort,
54 private notificationService: NotificationService) {
55 super();
56 }
57
58 loadTable() {
59 this.loadingSubject.next(true);
60 this.appMgrSvc.getDeployed()
61 .pipe(
62 catchError( (her: HttpErrorResponse) => {
63 console.log('AppControlDataSource failed: ' + her.message);
64 this.notificationService.error('Failed to get applications: ' + her.message);
65 return of([]);
66 }),
67 finalize(() => this.loadingSubject.next(false))
68 )
69 .subscribe( (xApps: XMDeployedApp[]) => {
70 this.rowCount = xApps.length;
71 const flattenedApps = this.flatten(xApps);
72 this.appControlSubject.next(flattenedApps);
73 });
74 }
75
76 connect(collectionViewer: CollectionViewer): Observable<XappControlRow[]> {
77 const dataMutations = [
78 this.appControlSubject.asObservable(),
79 this.sort.sortChange
80 ];
81 return merge(...dataMutations).pipe(map(() => {
82 return this.getSortedData([...this.appControlSubject.getValue()]);
83 }));
84 }
85
86 disconnect(collectionViewer: CollectionViewer): void {
87 this.appControlSubject.complete();
88 this.loadingSubject.complete();
89 }
90
91 private flatten(allxappdata: XMDeployedApp[]): XappControlRow[] {
92 const xAppInstances: XappControlRow[] = [];
93 for (const xapp of allxappdata) {
94 if (!xapp.instances) {
95 const row: XappControlRow = {
96 xapp: xapp.name,
97 instance: this.emptyInstances
98 };
99 xAppInstances.push(row);
100 } else {
101 for (const ins of xapp.instances) {
102 const row: XappControlRow = {
103 xapp: xapp.name,
104 instance: ins
105 };
106 xAppInstances.push(row);
107 }
108 }
109 }
110 return xAppInstances;
111 }
112
113 private getSortedData(data: XappControlRow[]) {
114 if (!this.sort.active || this.sort.direction === '') {
115 return data;
116 }
117
118 return data.sort((a, b) => {
119 const isAsc = this.sort.direction === 'asc';
120 switch (this.sort.active) {
121 case 'xapp': return compare(a.xapp, b.xapp, isAsc);
122 case 'name': return compare(a.instance.name, b.instance.name, isAsc);
123 case 'status': return compare(a.instance.status, b.instance.status, isAsc);
124 case 'ip': return compare(a.instance.ip, b.instance.ip, isAsc);
125 case 'port': return compare(a.instance.port, b.instance.port, isAsc);
126 default: return 0;
127 }
128 });
129 }
130}
131
132function compare(a: any, b: any, isAsc: boolean) {
133 return (a < b ? -1 : 1) * (isAsc ? 1 : -1);
134}