Skip to main content
summaryrefslogtreecommitdiffstats
blob: 68a11ccd5afa88f52518f109d79022c99e73c021 (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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
/*******************************************************************************
 * Copyright (c) 2004, 2007 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.framework.jini.service.core;

import java.net.InetAddress;
import java.net.UnknownHostException;
import java.rmi.RemoteException;
import java.util.ArrayList;
import java.util.Dictionary;
import java.util.List;
import net.jini.core.entry.Entry;
import net.jini.core.lookup.ServiceID;
import net.jini.id.Uuid;
import net.jini.id.UuidFactory;
import net.jini.lookup.entry.Comment;
import net.jini.lookup.entry.Name;
import net.jini.lookup.entry.ServiceInfo;
import org.eclipse.osee.framework.jini.discovery.RelaxedSecurity;
import org.eclipse.osee.framework.jini.service.interfaces.IService;
import org.eclipse.osee.framework.plugin.core.config.JiniLookupGroupConfig;
import org.eclipse.osee.framework.plugin.core.server.ClassServer;
import org.eclipse.osee.framework.plugin.core.server.PathResourceFinder;

public abstract class JiniService implements IService {
   protected JiniJoinManager joinManager;
   protected Object keepAlive;
   protected ClassServer messageClassServer;
   protected String codeBase;
   protected String hostName;
   private final ServiceID serviceID;

   /**
    * Creates a Service with the serviceID specified. Note, this does not register the service.
    * 
    * @param serviceID the serviceID to assign to the service.
    */
   public JiniService(ServiceID serviceID) {
      this.serviceID = serviceID;
   }

   /**
    * Creates a Service with the serviceID specified. Note, this does not register the service.
    * 
    * @param uuid The unique identifier used for the serviceID.
    */
   public JiniService(Uuid uuid) {
      Long lsb = new Long(uuid.getLeastSignificantBits());
      Long msb = new Long(uuid.getMostSignificantBits());
      serviceID = new ServiceID(msb.longValue(), lsb.longValue());
   }

   /**
    * Creates a Service. The serviceID will be generated automatically. Note, this does not register the service.
    */
   public JiniService() {
      this(UuidFactory.generate());
   }

   public void stayAlive() {
      keepAlive = new Object();
      synchronized (keepAlive) {
         try {
            keepAlive.wait();
         } catch (InterruptedException e) {
            e.printStackTrace();
         }
      }
   }

   public void commitSuicide() {
      if (keepAlive != null) {
         synchronized (keepAlive) {
            keepAlive.notify();
         }
      }
   }

   public Entry[] registerService(Entry[] entry) {
      return registerService(entry, null);
   }

   public Entry[] registerService(Entry[] entry, Dictionary dictionary) {
      try {
         System.setSecurityManager(new RelaxedSecurity());
         // find ServiceInfo
         List<Entry> entries = new ArrayList<Entry>();
         entries.add(new OwnerEntry());
         GroupEntry group = null;

         if (dictionary != null) {
            ServiceInfo info = null;
            Name name = null;
            Comment comment = null;
            VersionEntry version = null;

            if (entry != null) {
               for (int i = 0; i < entry.length; i++) {
                  if (entry[i] instanceof ServiceInfo) {
                     info = (ServiceInfo) entry[i];
                  }
                  if (entry[i] instanceof Name) {
                     name = (Name) entry[i];
                  }
                  if (entry[i] instanceof Comment) {
                     comment = (Comment) entry[i];
                  }
                  if (entry[i] instanceof VersionEntry) {
                     version = (VersionEntry) entry[i];
                  }
                  if (entry[i] instanceof GroupEntry) {
                     group = (GroupEntry) entry[i];
                  }
                  entries.add(entry[i]);
               }
            }
            if (info == null) {
               info = new ServiceInfo();
               entries.add(info);
            }
            if (name == null) {
               name = new Name();
               entries.add(name);
            }
            if (comment == null) {
               comment = new Comment();
               entries.add(comment);
            }
            if (version == null) {
               version = new VersionEntry();
               entries.add(version);
            }
            Object obj = null;
            obj = dictionary.get("Bundle-Name");
            if (obj != null) {
               info.name = obj.toString();
            }
            obj = dictionary.get("Bundle-Vendor");
            if (obj != null) {
               info.vendor = obj.toString();
            }
            obj = dictionary.get("Bundle-Description");
            if (obj != null) {
               comment.comment = obj.toString();
            }
            info.version = dictionary.get("Bundle-Version").toString();
            info.serialNumber = info.version;
            version.version = info.version;
            name.name = dictionary.get("Bundle-Name").toString();
         } else {
            if (entry != null) {
               for (int i = 0; i < entry.length; i++) {
                  entries.add(entry[i]);
               }
            }
         }

         if (group == null) {
            group = new GroupEntry();
            entries.add(group);
         }
         group.group = JiniLookupGroupConfig.getOseeJiniServiceGroups();

         entry = new Entry[entries.size()];
         for (int i = 0; i < entries.size(); i++) {
            entry[i] = entries.get(i);
         }
         joinManager = new JiniJoinManager(serviceID, this, entry);
         joinManager.addGroup(group.group);
         Runtime.getRuntime().addShutdownHook(new KillService(joinManager));
      } catch (UnknownHostException ex) {
         ex.printStackTrace();
         System.exit(1);
      } catch (Exception ex) {
         ex.printStackTrace();
         System.exit(1);
      }
      return entry;
   }

   protected void startClassServer(String[] jarsToServe) throws Exception {
      messageClassServer = new ClassServer(0, InetAddress.getLocalHost());
      PathResourceFinder resource = new PathResourceFinder(jarsToServe, true);
      messageClassServer.addResourceFinder(resource);
      messageClassServer.start();
      codeBase =
         "http://" + InetAddress.getLocalHost().getCanonicalHostName() + ":" + messageClassServer.getPort() + "/";
      hostName = InetAddress.getLocalHost().getHostAddress();
      System.setProperty("java.rmi.server.hostname", hostName);
      System.setProperty("java.rmi.server.codebase", codeBase);
   }

   public void deregisterService() {
      try {
         if (joinManager != null) {
            joinManager.terminate();
            joinManager = null;

         } else {
            System.out.println("service already removed JiniService.deregister");
         }
      } catch (RemoteException ex) {
         ex.printStackTrace();
      } catch (Exception ex) {
         ex.printStackTrace();
      }
   }

   public void cleanup() {
      if (messageClassServer != null) {
         messageClassServer.terminate();
      }
   }

   @Override
   public ServiceID getServiceID() {
      return serviceID;
   }

   @Override
   public boolean equals(Object object) {
      if (object instanceof JiniService) {
         return ((JiniService) object).serviceID.equals(this.serviceID);
      }
      return false;
   }

   @Override
   public int hashCode() {
      return serviceID.hashCode();
   }

   public JiniJoinManager getJoinManager() {
      return joinManager;
   }

}

Back to the top