|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
|
|
package sun.security.jca; |
|
|
|
import java.util.*; |
|
|
|
import java.security.*; |
|
import java.security.Provider.Service; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public class GetInstance { |
|
|
|
private GetInstance() { |
|
// empty |
|
} |
|
|
|
|
|
|
|
*/ |
|
public static final class Instance { |
|
|
|
public final Provider provider; |
|
public final Object impl; |
|
private Instance(Provider provider, Object impl) { |
|
this.provider = provider; |
|
this.impl = impl; |
|
} |
|
// Return Provider and implementation as an array as used in the |
|
|
|
public Object[] toArray() { |
|
return new Object[] {impl, provider}; |
|
} |
|
} |
|
|
|
public static Service getService(String type, String algorithm) |
|
throws NoSuchAlgorithmException { |
|
ProviderList list = Providers.getProviderList(); |
|
Service s = list.getService(type, algorithm); |
|
if (s == null) { |
|
throw new NoSuchAlgorithmException |
|
(algorithm + " " + type + " not available"); |
|
} |
|
return s; |
|
} |
|
|
|
public static Service getService(String type, String algorithm, |
|
String provider) throws NoSuchAlgorithmException, |
|
NoSuchProviderException { |
|
if ((provider == null) || (provider.length() == 0)) { |
|
throw new IllegalArgumentException("missing provider"); |
|
} |
|
Provider p = Providers.getProviderList().getProvider(provider); |
|
if (p == null) { |
|
throw new NoSuchProviderException("no such provider: " + provider); |
|
} |
|
Service s = p.getService(type, algorithm); |
|
if (s == null) { |
|
throw new NoSuchAlgorithmException("no such algorithm: " |
|
+ algorithm + " for provider " + provider); |
|
} |
|
return s; |
|
} |
|
|
|
public static Service getService(String type, String algorithm, |
|
Provider provider) throws NoSuchAlgorithmException { |
|
if (provider == null) { |
|
throw new IllegalArgumentException("missing provider"); |
|
} |
|
Service s = provider.getService(type, algorithm); |
|
if (s == null) { |
|
throw new NoSuchAlgorithmException("no such algorithm: " |
|
+ algorithm + " for provider " + provider.getName()); |
|
} |
|
return s; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public static List<Service> getServices(String type, String algorithm) { |
|
ProviderList list = Providers.getProviderList(); |
|
return list.getServices(type, algorithm); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
@Deprecated |
|
public static List<Service> getServices(String type, |
|
List<String> algorithms) { |
|
ProviderList list = Providers.getProviderList(); |
|
return list.getServices(type, algorithms); |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public static List<Service> getServices(List<ServiceId> ids) { |
|
ProviderList list = Providers.getProviderList(); |
|
return list.getServices(ids); |
|
} |
|
|
|
/* |
|
* For all the getInstance() methods below: |
|
* @param type the type of engine (e.g. MessageDigest) |
|
* @param clazz the Spi class that the implementation must subclass |
|
* (e.g. MessageDigestSpi.class) or null if no superclass check |
|
* is required |
|
* @param algorithm the name of the algorithm (or alias), e.g. MD5 |
|
* @param provider the provider (String or Provider object) |
|
* @param param the parameter to pass to the Spi constructor |
|
* (for CertStores) |
|
* |
|
* There are overloaded methods for all the permutations. |
|
*/ |
|
|
|
public static Instance getInstance(String type, Class<?> clazz, |
|
String algorithm) throws NoSuchAlgorithmException { |
|
// in the almost all cases, the first service will work |
|
|
|
ProviderList list = Providers.getProviderList(); |
|
Service firstService = list.getService(type, algorithm); |
|
if (firstService == null) { |
|
throw new NoSuchAlgorithmException |
|
(algorithm + " " + type + " not available"); |
|
} |
|
NoSuchAlgorithmException failure; |
|
try { |
|
return getInstance(firstService, clazz); |
|
} catch (NoSuchAlgorithmException e) { |
|
failure = e; |
|
} |
|
// if we cannot get the service from the preferred provider, |
|
|
|
for (Service s : list.getServices(type, algorithm)) { |
|
if (s == firstService) { |
|
|
|
continue; |
|
} |
|
try { |
|
return getInstance(s, clazz); |
|
} catch (NoSuchAlgorithmException e) { |
|
failure = e; |
|
} |
|
} |
|
throw failure; |
|
} |
|
|
|
public static Instance getInstance(String type, Class<?> clazz, |
|
String algorithm, Object param) throws NoSuchAlgorithmException { |
|
List<Service> services = getServices(type, algorithm); |
|
NoSuchAlgorithmException failure = null; |
|
for (Service s : services) { |
|
try { |
|
return getInstance(s, clazz, param); |
|
} catch (NoSuchAlgorithmException e) { |
|
failure = e; |
|
} |
|
} |
|
if (failure != null) { |
|
throw failure; |
|
} else { |
|
throw new NoSuchAlgorithmException |
|
(algorithm + " " + type + " not available"); |
|
} |
|
} |
|
|
|
public static Instance getInstance(String type, Class<?> clazz, |
|
String algorithm, String provider) throws NoSuchAlgorithmException, |
|
NoSuchProviderException { |
|
return getInstance(getService(type, algorithm, provider), clazz); |
|
} |
|
|
|
public static Instance getInstance(String type, Class<?> clazz, |
|
String algorithm, Object param, String provider) |
|
throws NoSuchAlgorithmException, NoSuchProviderException { |
|
return getInstance(getService(type, algorithm, provider), clazz, param); |
|
} |
|
|
|
public static Instance getInstance(String type, Class<?> clazz, |
|
String algorithm, Provider provider) |
|
throws NoSuchAlgorithmException { |
|
return getInstance(getService(type, algorithm, provider), clazz); |
|
} |
|
|
|
public static Instance getInstance(String type, Class<?> clazz, |
|
String algorithm, Object param, Provider provider) |
|
throws NoSuchAlgorithmException { |
|
return getInstance(getService(type, algorithm, provider), clazz, param); |
|
} |
|
|
|
/* |
|
* The two getInstance() methods below take a service. They are |
|
* intended for classes that cannot use the standard methods, e.g. |
|
* because they implement delayed provider selection like the |
|
* Signature class. |
|
*/ |
|
|
|
public static Instance getInstance(Service s, Class<?> clazz) |
|
throws NoSuchAlgorithmException { |
|
Object instance = s.newInstance(null); |
|
checkSuperClass(s, instance.getClass(), clazz); |
|
return new Instance(s.getProvider(), instance); |
|
} |
|
|
|
public static Instance getInstance(Service s, Class<?> clazz, |
|
Object param) throws NoSuchAlgorithmException { |
|
Object instance = s.newInstance(param); |
|
checkSuperClass(s, instance.getClass(), clazz); |
|
return new Instance(s.getProvider(), instance); |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public static void checkSuperClass(Service s, Class<?> subClass, |
|
Class<?> superClass) throws NoSuchAlgorithmException { |
|
if (superClass == null) { |
|
return; |
|
} |
|
if (superClass.isAssignableFrom(subClass) == false) { |
|
throw new NoSuchAlgorithmException |
|
("class configured for " + s.getType() + ": " |
|
+ s.getClassName() + " not a " + s.getType()); |
|
} |
|
} |
|
|
|
} |