Skip to content

Commit

Permalink
OPENNLP-1658 Enhance JavaDoc of code in opennlp-tools-models
Browse files Browse the repository at this point in the history
  • Loading branch information
mawiesne committed Nov 25, 2024
1 parent 374bee9 commit 0198579
Show file tree
Hide file tree
Showing 7 changed files with 77 additions and 36 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public abstract class AbstractClassPathModelFinder implements ClassPathModelFind
private Set<ClassPathModelEntry> models;

/**
* By default, it scans for "opennlp-models-*.jar".
* By default, it scans for {@link #OPENNLP_MODEL_JAR_PREFIX}.
*/
public AbstractClassPathModelFinder() {
this(OPENNLP_MODEL_JAR_PREFIX);
Expand All @@ -47,7 +47,7 @@ public AbstractClassPathModelFinder() {
* May contain a wildcard glob ("opennlp-*.jar"). It must not be {@code null}.
*/
public AbstractClassPathModelFinder(String jarModelPrefix) {
Objects.requireNonNull(jarModelPrefix, "modelJarPrefix must not be null");
Objects.requireNonNull(jarModelPrefix, "jarModelPrefix must not be null");
this.jarModelPrefix = jarModelPrefix;
}

Expand Down Expand Up @@ -76,19 +76,20 @@ public Set<ClassPathModelEntry> findModels(boolean reloadCache) {
}

/**
* @apiNote
* Subclasses can implement this method to provide additional context to
* {@link AbstractClassPathModelFinder#getMatchingURIs(String, Object)}.
*
* @return a context information. May be {@code null}.
* @return A context information object. May be {@code null}.
*/
protected abstract Object getContext();

/**
* Return matching classpath URIs for the given pattern.
* Retrieve matching classpath {@link URI URIs} for the given {@code wildcardPattern}.
*
* @param wildcardPattern the pattern. Must not be {@code null}.
* @param context an object holding context information. It might be {@code null}.
* @return a list of matching classpath URIs.
* @param wildcardPattern The pattern to use for scanning. Must not be {@code null}.
* @param context An object holding context information. It might be {@code null}.
* @return A list of matching classpath URIs.
*/
protected abstract List<URI> getMatchingURIs(String wildcardPattern, Object context);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,34 @@

public record ClassPathModel(Properties properties, byte[] model) {

/**
* @return Retrieves the value of the {@code model.version} property
* or {@code "unknown"} if it could be read.
*/
public String getModelVersion() {
return properties != null ? properties.getProperty("model.version", "unknown") : "unknown";
}

/**
* @return Retrieves the value of the {@code model.name} property
* or {@code "unknown"} if it could be read.
*/
public String getModelName() {
return properties != null ? properties.getProperty("model.name", "unknown") : "unknown";
}

/**
* @return Retrieves the value of the {@code model.sha256} property
* or {@code "unknown"} if it could be read.
*/
public String getModelSHA256() {
return properties != null ? properties.getProperty("model.sha256", "unknown") : "unknown";
}

/**
* @return Retrieves the value of the {@code model.language} property
* or {@code "unknown"} if it could be read.
*/
public String getModelLanguage() {
return properties != null ? properties.getProperty("model.language", "unknown") : "unknown";
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@
import java.net.URI;
import java.util.Optional;

/**
* Encapsulates a classpath entry that is associated with an {@link URI model URI}
* and optional {@code properties}.
*
* @param model A valid {@link URI} associated with the model's location.
* @param properties Optional properties to use.
*/
public record ClassPathModelEntry(URI model, Optional<URI> properties) {

}
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ public interface ClassPathModelFinder {
/**
* Finds OpenNLP models within the classpath.
*
* @param reloadCache {@code true}, if the internal cache should explicitly be reloaded
* @return A Set of {@link ClassPathModelEntry ClassPathModelEntries}. It might be empty.
* @param reloadCache {@code true}, if the internal cache should explicitly be reloaded,
* {@code false} otherwise.
* @return A Set of {@link ClassPathModelEntry model entries}. It might be empty if none were found.
*/
Set<ClassPathModelEntry> findModels(boolean reloadCache);
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ public class ClassPathModelLoader {
/**
* Loads a {@link ClassPathModel} from a {@link ClassPathModelEntry}
*
* @param entry must not be {@code null}.
* @return a {@link ClassPathModel} containing the model resources.
* @param entry A valid {@link ClassPathModelEntry}, it must not be {@code null}.
* @return A {@link ClassPathModel} containing the model resources.
* @throws IOException thrown if something went wrong during reading resources from the classpath.
*/
public ClassPathModel load(ClassPathModelEntry entry) throws IOException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
* Enables the detection of OpenNLP models in the classpath via classgraph.
* By default, this class will search for JAR files starting with "opennlp-models-*".
* This wildcard pattern can be adjusted by using the alternative constructor of this class.
*
* @implNote This implementation relies on the <a href="https://github.com/classgraph/classgraph">Classgraph</a> library.
* When using this class, you have to take care of <i>Classgraph</i> being in the classpath
* of your application, as it is declared as an optional dependency for <i>opennlp-tools-models</i>.
*/
public class ClassgraphModelFinder extends AbstractClassPathModelFinder implements ClassPathModelFinder {

Expand All @@ -50,17 +54,21 @@ public ClassgraphModelFinder(String modelJarPrefix) {
}

/**
* @return a {@link ScanResult} ready for consumption. Caller is responsible for closing it.
* @apiNote The caller is responsible for closing it.
*
* @return A {@link ScanResult} ready for consumption.
*/
@Override
protected Object getContext() {
return new ClassGraph().acceptJars(getJarModelPrefix()).disableDirScanning().scan();
}

/**
* @param wildcardPattern the pattern. Must not be {@code null}.
* @param context an object holding context information. It might be {@code null}.
* @return a list of matching classpath uris.
* Attempts to obtain {@link URI URIs} from the classpath.
*
* @param wildcardPattern The pattern to use for scanning. Must not be {@code null}.
* @param context An object holding context information. It might be {@code null}.
* @return A list of matching classpath {@link URI URIs}. It may be empty if nothing is found.
*/
@Override
protected List<URI> getMatchingURIs(String wildcardPattern, Object context) {
Expand All @@ -71,5 +79,4 @@ protected List<URI> getMatchingURIs(String wildcardPattern, Object context) {
}
return Collections.emptyList();
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -45,19 +45,25 @@
* Enables the detection of OpenNLP models in the classpath via JDK classes
* By default, this class will search for JAR files starting with "opennlp-models-*".
* This wildcard pattern can be adjusted by using the alternative constructor of this class.
* <p>
*
* @implNote
* It is a rather simple implementation of scanning the classpath by trying to obtain {@link URL urls}
* from the actual classpath via a chain of possible options. It might not work for every use-case
* since it relies on JDK internals only and doesn't account for classloader hierarchies or edge-cases.
* <p>
* It will
* (1) Try to see if we have a {@link URLClassLoader} available in the current thread.
* (2) Try to obtain URLs via the build in classloader via reflections
* (requires {@code --add-opens java.base/jdk.internal.loader=ALL-UNNAMED} as JVM argument)
* (3) Try to use the bootstrap classpath via {@code java.class.path}.
* It will:
* <ol>
* <li>Try to see if we have a {@link URLClassLoader} available in the current thread.</li>
* <li>Try to obtain URLs via the build in classloader via reflections.
* <br/>(requires {@code --add-opens java.base/jdk.internal.loader=ALL-UNNAMED} as JVM argument)</li>
* <li>Try to use the bootstrap classpath via {@code java.class.path}.</li>
* </ol>
*
* <p>
* If you need a more sophisticated solution,
* If you need a more sophisticated implementation,
* use {@link opennlp.tools.models.classgraph.ClassgraphModelFinder}.
*
* @see ClassPathModelFinder
*/
public class SimpleClassPathModelFinder extends AbstractClassPathModelFinder implements ClassPathModelFinder {

Expand All @@ -68,7 +74,7 @@ public class SimpleClassPathModelFinder extends AbstractClassPathModelFinder imp
// ; for Windows, : for Linux/OSX

/**
* By default, it scans for "opennlp-models-*.jar".
* By default, it scans for {@link #OPENNLP_MODEL_JAR_PREFIX}.
*/
public SimpleClassPathModelFinder() {
this(OPENNLP_MODEL_JAR_PREFIX);
Expand All @@ -83,18 +89,18 @@ public SimpleClassPathModelFinder(String modelJarPrefix) {
}

/**
* @return always {@code NULL} as it is not needed for the simple case.
* @return Always {@code null} as it is not needed for the simple case.
*/
@Override
protected Object getContext() {
return null; //not needed for the simple case. Just return NULL.
}

/**
* @param wildcardPattern the pattern. Must not be {@code null}.
* @param context an object holding context information.
* @param wildcardPattern The pattern to use for scanning. Must not be {@code null}.
* @param context An object holding context information. It might be {@code null}.
* It is unused within this implementation.
* @return a list of matching classpath uris.
* @return A list of matching classpath {@link URI URIs}. It may be an empty list if nothing is found.
*/
@Override
protected List<URI> getMatchingURIs(String wildcardPattern, Object context) {
Expand Down Expand Up @@ -126,10 +132,10 @@ protected List<URI> getMatchingURIs(String wildcardPattern, Object context) {
}

/**
* Escapes a wildcard expressions for usage as a Java regular expression.
* Escapes a {@code wildcard} expressions for usage as a Java regular expression.
*
* @param wildcard must not be {@code null}.
* @return the escaped regex.
* @param wildcard A valid expression. It must not be {@code null}.
* @return The escaped regex.
*/
private String asRegex(String wildcard) {
return wildcard
Expand Down Expand Up @@ -173,13 +179,16 @@ private boolean isWindows() {
}

/**
* Try to obtain URLs from the classpath in the following order:
* Attempts to obtain {@link URL URLs} from the classpath in the following order:
* <p>
* (1) Try to see if we have a {@link URLClassLoader}.
* (2) Try to obtain URLs via the build in classloader via reflections (requires an add opens JVM argument)
* (3) Try to use the bootstrap classpath via {@code java.class.path}.
* <ol>
* <li>Try to see if we have a {@link URLClassLoader} available in the current thread.</li>
* <li>Try to obtain URLs via the build in classloader via reflections.
* <br/>(requires {@code --add-opens java.base/jdk.internal.loader=ALL-UNNAMED} as JVM argument)</li>
* <li>Try to use the bootstrap classpath via {@code java.class.path}.</li>
* </ol>
*
* @return a list of URLs within the classpath.
* @return A list of {@link URL URLs} within the classpath.
*/
private List<URL> getClassPathElements() {
final ClassLoader cl = Thread.currentThread().getContextClassLoader();
Expand Down

0 comments on commit 0198579

Please sign in to comment.