provided interface now sets its own unique id.
[utils] / system / general / src / main / java / org / wamblee / system / core / DefaultProvidedInterface.java
1 /*
2  * Copyright 2007 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */ 
16 package org.wamblee.system.core;
17
18 import java.util.ArrayList;
19 import java.util.Arrays;
20 import java.util.Collections;
21 import java.util.List;
22 import java.util.UUID;
23
24
25 /**
26  * Default implementation of a service descriptor.
27  *
28  * @author Erik Brakkee
29  */
30 public class DefaultProvidedInterface implements ProvidedInterface {
31         
32         private String _name; 
33         private Class[] _interfaces;
34         private String _uniqueId; 
35         
36         /**
37          * Constructs the descriptor. 
38          * @param aInterface Type of service. 
39          */
40         public DefaultProvidedInterface(String aName, Class aInterface) {
41                 this(aName, new Class[] { aInterface }); 
42         }
43         
44         public DefaultProvidedInterface(String aName, Class[] aInterfaces) { 
45                 _name = aName; 
46                 _interfaces = Arrays.copyOf(aInterfaces, aInterfaces.length);
47                 _uniqueId = UUID.randomUUID().toString(); 
48         }
49
50         @Override
51         public String getName() {
52                 return _name;
53         }
54         
55         @Override
56         public Class[] getInterfaceTypes() {
57                 return _interfaces;
58         }
59         
60         @Override
61         public String getUniqueId() {
62                 return _uniqueId;
63         }
64         
65         @Override
66         public void publish(Object aImplementation, Scope aScope) {
67                 aScope.publishInterface(this, aImplementation);
68         }
69         
70         @Override
71         public String toString() {
72                 StringBuffer buf = new StringBuffer();
73                 buf.append(getName());
74                 buf.append(":");
75                 for (Class intf: _interfaces) { 
76                         buf.append(" " + intf.getName());
77                 }
78                 return buf.toString();
79         }
80         
81         @Override
82         public boolean equals(Object aObj) {
83             if ( !(aObj instanceof DefaultProvidedInterface)) { 
84                 return false; 
85             }
86             DefaultProvidedInterface provided = (DefaultProvidedInterface)aObj; 
87             return getEqualsRepresentation().equals(provided.getEqualsRepresentation());
88         }
89         
90         @Override
91         public int hashCode() {
92             return getEqualsRepresentation().hashCode();
93         }
94         
95         
96         private String getEqualsRepresentation() { 
97             List<String> result = new ArrayList<String>(); 
98             for (Class cls: _interfaces) { 
99                 result.add(cls.getName());
100             }
101             Collections.sort(result); 
102             String value = ""; 
103             for (String str: result) { 
104                 value += ":" + str; 
105             }
106             return value; 
107         }
108 }