summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.0/modules/contribution-osgi/src/main/java/org/apache/tuscany/sca/contribution/osgi/BundleReference.java
blob: 1e52a20d16f153a815a2181b70726acbf966e262 (plain)
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
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.    
 */

package org.apache.tuscany.sca.contribution.osgi;


/**
 * A weak reference to a class, which should be used to register classes
 * with an ArtifactResolver and resolve these classes later.
 *
 * @version $Rev$ $Date$
 */
public class BundleReference {
    
    private Object bundle;
    private String bundleName;
    private String bundleVersion;
    private String bundleUniqueName;
    private String bundleRelativePath;

    /**
     * Constructs a new BundleReference.
     * 
     * @param bundle The bundle reference
     */
    public BundleReference(Object bundle, String bundleName, String bundleVersion, String bundleRelativePath) {
        this.bundle = bundle;
        this.bundleName = bundleName;
        this.bundleVersion = bundleVersion;       
        this.bundleRelativePath = bundleRelativePath;
        this.bundleUniqueName = bundleName + "(" + (bundleVersion == null?"0.0.0":bundleVersion) + ")";
    }
    
    /**
     * Constructs a new BundleReference.
     * 
     * @param className The class name
     */
    public BundleReference(String bundleName, String bundleVersion) {
        this.bundleName = bundleName;
        this.bundleVersion = bundleVersion;
        this.bundleUniqueName = bundleName + "(" + (bundleVersion == null?"0.0.0":bundleVersion) + ")";
    }
    
    /**
     * Get the referenced bundle.
     * 
     * @return The referenced bundle
     */
    public Object getBundle() {
        return bundle;
    }
    
    /**
     * Get the referenced bundle name.
     * 
     * @return The bundle name
     */
    public String getBundleName() {
        return bundleName;
    }
    
    /**
     * Get the referenced bundle version.
     * 
     * @return The bundle version
     */
    public String getBundleVersion() {
        return bundleVersion;
    }
    
    /**
     * Get the referenced bundle name and version.
     * 
     * @return The bundle name
     */
    public String getBundleUniqueName() {
        return bundleUniqueName;
    }
    
    /**
     * Get the relative location of the bundle inside its contribution
     * 
     * @return The bundle path
     */
    public String getBundleRelativePath() {
        return bundleRelativePath;
    }
    
    
    
    /**
     * Returns true if the bundle reference is unresolved.
     * 
     * @return Whether or not the bundle has been resolved
     */
    public boolean isUnresolved() {
        return bundle == null;
    }

    @Override
    public int hashCode() {
        return bundleUniqueName.hashCode();
    }
    
    @Override
    public boolean equals(Object obj) {
        if (obj == this) {
            return true;
        } else {
            if (obj instanceof BundleReference) {
                BundleReference ref = (BundleReference)obj;
                return bundleName.equals(ref.bundleName) &&
                       (bundleVersion == null || ref.bundleVersion == null ||
                        bundleVersion.equals(ref.bundleVersion));
            } else {
                return false;
            }
        }
    }

}