Firstly let me say yes i know about Ivy and Maven and that internally they have and do model dependencies w. names and version numbers. Internally they have APIs that allow the querying to find all dependencies for a given component. After that said component can then actually figure out if it has all the right jars etc or do other stuff.

The problem is that these APIs and models are not really public.

After all that here is a simple model of what functionality i need:

SoftwareComponent {
 // name getter
 String name();

 // version number
 Version versionNumber();

 // deep=false only immediate deps - does not include deps of deps
 // deep=true includes deps of deps etc.
 Set<SoftwareComponent>  dependencies( boolean deep );
}

Version {
 // 1.1.1 == 1.2.2 future minor releases/fixes are compatible
 // 1.5  != 1.4  must be after
 // 2.0  != 1.5  has a flag that says 2.0 is a breaking change
 boolean isCompatible(Version); // prolly should be extracted out into a Comparator 
 int major();
 int minor();
 etc...
}

Registry {
 // loops over all deps of given SC. Keeps track of components that it itself cannot satisfy.
 // eg SC might need LibX v2.0 but registry only knows about LibX1.5
 // The problem Set would return Problems for each failed satification (???:))
 RegistryAnalysisResult   analyse( SoftwareComponent );

}

RegistryAnalysisResult {
 // original requested component=what satisfied it
 Map<SoftwareComponent,SoftwareComponent>

 // empty if everything satisfied
 Set<Problem>
}

Is there anything out there that has public APIs to do the above ?

OSGI

OSGI does report missing dependencies, but this approach requires a container.

  • i dont want to deploy jar just to analyse their requirements.
  • most Osgi containers throw exceptions which typically report the first (not all) missing dependency(s).
  • parsing an osgi container exception dump is a hack and is a pain.
  • different containers report missing dependencies w/ different messsages.

IVY

The main purpose of IVY is to download dependencies and print out problems.

  • I dont want to hack and short circuit the downloading.
  • I dont want to hack up my own artifact & dependencies list downloader to work from my own definitions.
  • There is no public api to give component definitions.
  • When IVY fails it just prints stuff out which may be human readable but it would be a pain to parse and map to objects.
link|improve this question

44% accept rate
feedback

1 Answer

If I understand your question correctly, OSGI is built to solve (among other things) this problem. It allows you to document what packages you export for others to use, what packages you need to import from other modules in order to function and what services you provide, all with respect to versioning constraints.

http://en.wikipedia.org/wiki/OSGi

Eclipse is probably the most well known system that uses OSGI. OSGI is at the heart of how plugins fit into the eclipse ecosystem.

link|improve this answer
Refer to my additions in the q why osgi is not an answer. – mP. Jan 28 '11 at 5:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.