View Javadoc
1   /*
2    *   Licensed to the Apache Software Foundation (ASF) under one
3    *   or more contributor license agreements.  See the NOTICE file
4    *   distributed with this work for additional information
5    *   regarding copyright ownership.  The ASF licenses this file
6    *   to you under the Apache License, Version 2.0 (the
7    *   "License"); you may not use this file except in compliance
8    *   with the License.  You may obtain a copy of the License at
9    *
10   *     https://www.apache.org/licenses/LICENSE-2.0
11   *
12   *   Unless required by applicable law or agreed to in writing,
13   *   software distributed under the License is distributed on an
14   *   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   *   KIND, either express or implied.  See the License for the
16   *   specific language governing permissions and limitations
17   *   under the License.
18   *
19   */
20  package org.apache.directory.api.ldap.codec.protocol.mina;
21  
22  
23  import org.apache.directory.api.ldap.codec.api.LdapApiService;
24  import org.osgi.framework.BundleActivator;
25  import org.osgi.framework.BundleContext;
26  import org.osgi.framework.ServiceReference;
27  import org.osgi.framework.ServiceRegistration;
28  import org.osgi.util.tracker.ServiceTracker;
29  import org.osgi.util.tracker.ServiceTrackerCustomizer;
30  
31  
32  /**
33   * The {@link org.osgi.framework.BundleActivator} for the codec.
34   *
35   * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
36   */
37  public class LdapProtocolCodecActivator implements BundleActivator
38  {
39      private ServiceTracker<LdapApiService, LdapApiService> serviceTracker;
40  
41      class LdapApiServiceTracker implements ServiceTrackerCustomizer<LdapApiService, LdapApiService>
42      {
43          private BundleContext bundleContext;
44          private ServiceRegistration<?> registration;
45  
46  
47          LdapApiServiceTracker( BundleContext context )
48          {
49              this.bundleContext = context;
50          }
51  
52  
53          @Override
54          public LdapApiService addingService( ServiceReference<LdapApiService> reference )
55          {
56              LdapApiService ldapApiService = bundleContext.getService( reference );
57              LdapProtocolCodecFactory factory = new LdapProtocolCodecFactory( ldapApiService );
58              registration = bundleContext.registerService( LdapProtocolCodecFactory.class.getName(), factory, null );
59              ldapApiService.registerProtocolCodecFactory( factory );
60              return ldapApiService;
61          }
62  
63  
64          @Override
65          public void modifiedService( ServiceReference<LdapApiService> reference, LdapApiService service )
66          {
67              // Do nothing ATM
68          }
69  
70  
71          @Override
72          public void removedService( ServiceReference<LdapApiService> reference, LdapApiService service )
73          {
74              // TODO should we unregister the LdapProtocolCodecFactory at LdapApiService?
75              // ldapApiService.unregisterProtocolCodecFactory( factory );
76              registration.unregister();
77          }
78      }
79  
80  
81      /**
82       * Create a new instance of a LdapProtocolCodecActivator 
83       */
84      public LdapProtocolCodecActivator()
85      {
86          // Default constructor
87      }
88  
89  
90      /**
91       * {@inheritDoc}
92       */
93      @Override
94      public void start( BundleContext bundleContext ) throws Exception
95      {
96          LdapApiServiceTracker ldapApiServiceTracker = new LdapApiServiceTracker( bundleContext );
97          serviceTracker = new ServiceTracker<>( bundleContext, LdapApiService.class,
98              ldapApiServiceTracker );
99          serviceTracker.open();
100     }
101 
102 
103     /**
104      * {@inheritDoc}
105      */
106     @Override
107     public void stop( BundleContext bundleContext ) throws Exception
108     {
109         serviceTracker.close();
110     }
111 }