Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have downloaded the indexes generated for Maven Central from http://mirrors.ibiblio.org/pub/mirrors/maven2/dot-index/nexus-maven-repository-index.gz

I would like to list the artifacts information from these indexes (groupId, artifactId, version for example). I have read that there is a high level API for that. It seems that I have to use the following maven dependency. However, I don't know what is the entry point to use (which class?) and how to use it?

<dependency>
    <groupId>org.sonatype.nexus</groupId>
    <artifactId>nexus-indexer</artifactId>
    <version>3.0.4</version>
</dependency>
share|improve this question

2 Answers

up vote 4 down vote accepted

Take a peek at https://github.com/cstamas/maven-indexer-examples project.

In short: you dont need to download the GZ/ZIP (new/legacy format) manually, it will indexer take care of doing it for you (moreover, it will handle incremental updates for you too, if possible).

GZ is the "new" format, independent of Lucene index-format (hence, independent of Lucene version) containing data only, while the ZIP is "old" format, which is actually plain Lucene 2.4.x index zipped up. No data content change happens currently, but is planned in future.

As I said, there is no data content change between two, but some fileds (like you noticed) are Indexed but not stored on index, hence, if you consume the ZIP format, you will have them searchable, but not retrievable.

Thanks, ~t~

share|improve this answer
Thanks for the clarifications. It's exactly what I was looking for. – Laurent Apr 26 '11 at 11:28

The legacy zip index is a simple lucene index. I was able to open it with Luke and write some simple lucene code to dump out the headers of interest ("u" in this case)

import org.apache.lucene.document.Document;
import org.apache.lucene.search.IndexSearcher;

public class Dumper {
    public static void main(String[] args) throws Exception {
        IndexSearcher searcher = new IndexSearcher("c:/PROJECTS/Test/index");
        for (int i = 0; i < searcher.maxDoc(); i++) {
            Document doc = searcher.doc(i);
            String metadata = doc.get("u");
            if (metadata != null) {
                System.out.println(metadata);
            }
        }
    }
}

Sample output ...

org.ioke|ioke-lang-lib|P-0.4.0-p11|NA
org.jboss.weld.archetypes|jboss-javaee6-webapp|1.0.1.CR2|sources|jar
org.jboss.weld.archetypes|jboss-javaee6-webapp|1.0.1.CR2|NA
org.nutz|nutz|1.b.37|javadoc|jar
org.nutz|nutz|1.b.37|sources|jar
org.nutz|nutz|1.b.37|NA
org.openengsb.wrapped|com.google.gdata|1.41.5.w1|NA
org.openengsb.wrapped|openengsb-wrapped-parent|6|NA

There may be better ways to achieve this though...

share|improve this answer
Thanks for your help. Do you know what is the difference between the zip and the gz one? I know that the gz use a proprietary binary format but does it contain more information? Do you know how to iterate on it? – Laurent Apr 25 '11 at 11:03
Not really sure of the internal differences. Googling says that the gz is optimized for speed. If you'd like to use it as input there seems to be a sample available @ github.com/sonatype/nexus/tree/master/sandbox/… – qwerty Apr 25 '11 at 11:16
I found that the gz contains much more information like the JAR file size, the description, the classes contained by the JAR, and so on. I have tried to parse the gz version as in your example but it is not possible because the gz archive does not contain lucene segments. Also, before to post my question here I have already seen the github link you point me out. However, from this github example I cannot understand what is the main class to use as an entry point supposing that I have the unzipped gz file. – Laurent Apr 25 '11 at 13:58
hmm, i believed this alternate method would solve your problem. You can retrieve the jar from the index using the lucene api and get its size and the classes it contains. Best of luck finding a nexus-indexer implementation – qwerty Apr 26 '11 at 4:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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