Removed code smell
[portal.git] / ecomp-portal-BE-common / src / main / java / org / onap / portalapp / music / conf / MusicSessionRepositoryHandler.java
1 /*
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright © 2018 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  * Modifications Copyright (c) 2020 IBM
8  * ===================================================================
9  *
10  * Unless otherwise specified, all software contained herein is licensed
11  * under the Apache License, Version 2.0 (the "License");
12  * you may not use this software except in compliance with the License.
13  * You may obtain a copy of the License at
14  * 
15  *             http://www.apache.org/licenses/LICENSE-2.0
16  *
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  *
23  * Unless otherwise specified, all documentation contained herein is licensed
24  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
25  * you may not use this documentation except in compliance with the License.
26  * You may obtain a copy of the License at
27  *
28  *             https://creativecommons.org/licenses/by/4.0/
29  *
30  * Unless required by applicable law or agreed to in writing, documentation
31  * distributed under the License is distributed on an "AS IS" BASIS,
32  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33  * See the License for the specific language governing permissions and
34  * limitations under the License.
35  *
36  * ============LICENSE_END============================================
37  *
38  * 
39  */
40 package org.onap.portalapp.music.conf;
41
42 import java.util.Map;
43 import java.util.concurrent.ConcurrentHashMap;
44
45 import org.onap.music.eelf.logging.EELFLoggerDelegate;
46 import org.onap.music.exceptions.MusicLockingException;
47 import org.onap.portalapp.music.service.MusicService;
48 import org.onap.portalapp.music.util.MusicUtil;
49 import org.springframework.session.Session;
50
51 public class MusicSessionRepositoryHandler {
52         
53         private static final EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(MusicSessionRepositoryHandler.class);
54         private final Map<String, Session> sessions = new ConcurrentHashMap<>();
55         private boolean musicCache = MusicUtil.isCached();
56         
57         
58         public Session get(String id) {
59                 if(musicCache){
60                  // need to add the clean up for "sessions" map if musicCache is enabled
61                         return this.sessions.get(id);
62                 }else{
63                         try {
64                                 return MusicService.getMetaAttribute(id);
65                         } catch (Exception e) {
66                                 logger.error(EELFLoggerDelegate.errorLogger, "get failed with id " + id, e);
67                                 return null;
68                         }
69                 }
70         }
71
72
73
74         public void remove(String id) {
75                 if(musicCache){
76                          // need to add the clean up for "sessions" map if musicCache is enabled
77                         sessions.remove(id);    
78                 }else{
79                         try {
80                                 MusicService.removeSession(id);
81                         } catch (MusicLockingException e) {
82                                 logger.error(EELFLoggerDelegate.errorLogger, "removeSession locking failed with id " + id, e);
83                         } 
84                 }
85         }
86
87
88
89         public void put(String id, MusicSession musicSession) {
90                 if(musicCache){
91                          //need to add the clean up for "sessions" map if musicCache is enabled
92                         sessions.put(id, musicSession);         
93                 }else{
94                         try {
95                                 MusicService.setMetaAttribute(musicSession);
96                                 MusicService.cleanUpMusic();
97                         } catch (Exception e) {
98                                 logger.error(EELFLoggerDelegate.errorLogger, "setMetaAttribute failed with id " + id, e);
99                         }
100                 }
101         }
102
103 }