Skip to main content
summaryrefslogtreecommitdiffstats
blob: 454aed304965d9c6992707abc33a0bd314bece22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/*******************************************************************************
 * Copyright (c) 2014 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.jaxrs.server.internal.applications;

import java.util.Iterator;
import java.util.concurrent.ConcurrentHashMap;
import javax.ws.rs.core.Application;
import org.eclipse.osee.authorization.admin.AuthorizationAdmin;
import org.eclipse.osee.jaxrs.server.internal.JaxRsConfiguration;
import org.eclipse.osee.jaxrs.server.internal.JaxRsConstants;
import org.eclipse.osee.jaxrs.server.internal.JaxRsVisitable;
import org.eclipse.osee.jaxrs.server.internal.JaxRsVisitor;
import org.eclipse.osee.jaxrs.server.internal.ext.JerseyJaxRsFactory;
import org.eclipse.osee.jaxrs.server.internal.filters.SecurityContextFilter;
import org.eclipse.osee.jaxrs.server.internal.filters.SecurityContextProviderImpl;
import org.eclipse.osee.logger.Log;
import org.osgi.framework.Bundle;
import org.osgi.service.http.HttpService;

/**
 * @author Roberto E. Escobar
 */
public class JaxRsApplicationRegistry implements JaxRsVisitable {

   public static interface JaxRsContainerProvider {

      JaxRsContainer get();

      JaxRsContainer unSet();

      boolean hasContainer();
   }

   public static interface JaxRsContainer {

      String getServletContext();

      void setServletContext(String contextName);

      void addApplication(String componentName, String applicationContext, Bundle bundle, Application application);

      void removeApplication(String componentName);

      boolean isEmpty();

      void start();

      void stop();

      void accept(JaxRsVisitor visitor);
   }

   private final ConcurrentHashMap<String, JaxRsContainerProvider> servlets =
      new ConcurrentHashMap<String, JaxRsContainerProvider>();

   private Log logger;
   private HttpService httpService;
   private AuthorizationAdmin authorizationAdmin;

   private JaxRsFactory factory;
   private String baseContext = JaxRsConstants.DEFAULT_JAXRS_BASE_CONTEXT;

   public void setHttpService(HttpService httpService) {
      this.httpService = httpService;
   }

   public void setLogger(Log logger) {
      this.logger = logger;
   }

   public void setAuthorizationAdmin(AuthorizationAdmin authorizationAdmin) {
      this.authorizationAdmin = authorizationAdmin;
   }

   public void start() {
      logger.trace("Starting [%s]...", getClass().getSimpleName());
      SecurityContextProviderImpl provider = new SecurityContextProviderImpl(logger, authorizationAdmin);
      SecurityContextFilter filter = new SecurityContextFilter(provider);

      factory = new JerseyJaxRsFactory(logger, httpService, filter);
   }

   public void stop() {
      logger.trace("Stopping [%s]...", getClass().getSimpleName());
      this.factory = null;
   }

   public String getBaseContext() {
      return baseContext;
   }

   public synchronized void configure(JaxRsConfiguration config) {
      logger.trace("Configuring [%s]...", getClass().getSimpleName());
      final String oldBaseContext = baseContext;
      final String newBaseContext = config.getBaseContext();
      if (!oldBaseContext.equals(newBaseContext)) {
         logger.trace("Configuration Changed for [%s] - [%s]", getClass().getSimpleName(), config);
         baseContext = newBaseContext;
         JaxRsContainerProvider removed = servlets.remove(oldBaseContext);
         if (removed != null) {
            if (removed.hasContainer()) {
               JaxRsContainer container = removed.get();
               container.stop();
               container.accept(new JaxRsVisitor() {
                  @Override
                  public void onApplication(String applicationContext, String componentName, Bundle bundle, Application application) {
                     final String contextName = getBaseContext();
                     JaxRsContainer newContainer = getContainerInitIfNull(contextName);
                     newContainer.addApplication(componentName, applicationContext, bundle, application);
                  }
               });
            }
         }
      }
   }

   public void register(String componentName, String contextName, Bundle bundle, Application application) {
      final String baseContext = getBaseContext();
      JaxRsContainer container = getContainerInitIfNull(baseContext);
      container.addApplication(componentName, contextName, bundle, application);
   }

   public void deregister(String componentName) {
      final String contextName = getBaseContext();
      JaxRsContainer container = getContainerOrNull(contextName);
      if (container != null) {
         container.removeApplication(componentName);
         if (container.isEmpty()) {
            servlets.remove(contextName);
         }
      }
   }

   public void deregisterAll() {
      Iterator<JaxRsContainerProvider> iterator = servlets.values().iterator();
      while (iterator.hasNext()) {
         JaxRsContainer container = iterator.next().get();
         if (container != null) {
            container.stop();
         }
         iterator.remove();
      }
   }

   @Override
   public void accept(JaxRsVisitor visitor) {
      visitor.onStartRegistry();
      try {
         for (JaxRsContainerProvider provider : servlets.values()) {
            if (provider.hasContainer()) {
               JaxRsContainer container = provider.get();
               container.accept(visitor);
            }
         }
      } finally {
         visitor.onEndRegistry();
      }
   }

   private JaxRsContainer getContainerOrNull(String contextName) {
      JaxRsContainer toReturn = null;
      JaxRsContainerProvider reference = servlets.get(contextName);
      if (reference != null) {
         toReturn = reference.get();
      }
      return toReturn;
   }

   private JaxRsContainer getContainerInitIfNull(String contextName) {
      JaxRsContainerProvider reference = servlets.get(contextName);
      if (reference == null) {
         JaxRsContainerProvider newContainer = factory.newJaxRsContainerProvider(contextName);
         reference = servlets.putIfAbsent(contextName, newContainer);
         if (reference == null) {
            reference = newContainer;
         }
      }
      return reference.get();
   }

}

Back to the top