MessageThreading.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */

  17. package org.apache.commons.net.examples.nntp;

  18. import java.io.IOException;
  19. import java.net.SocketException;

  20. import org.apache.commons.net.PrintCommandListener;
  21. import org.apache.commons.net.io.Util;
  22. import org.apache.commons.net.nntp.Article;
  23. import org.apache.commons.net.nntp.NNTPClient;
  24. import org.apache.commons.net.nntp.NewsgroupInfo;
  25. import org.apache.commons.net.nntp.Threader;

  26. /**
  27.  * Sample program demonstrating the use of article iteration and threading.
  28.  */
  29. public class MessageThreading {
  30.     public static void main(final String[] args) throws SocketException, IOException {

  31.         if (args.length != 2 && args.length != 4) {
  32.             System.out.println("Usage: MessageThreading <hostname> <groupname> [<user> <password>]");
  33.             return;
  34.         }

  35.         final String hostname = args[0];
  36.         final String newsgroup = args[1];

  37.         final NNTPClient client = new NNTPClient();
  38.         client.addProtocolCommandListener(new PrintCommandListener(Util.newPrintWriter(System.out), true));
  39.         client.connect(hostname);

  40.         if (args.length == 4) { // Optional auth
  41.             final String user = args[2];
  42.             final String password = args[3];
  43.             if (!client.authenticate(user, password)) {
  44.                 System.out.println("Authentication failed for user " + user + "!");
  45.                 System.exit(1);
  46.             }
  47.         }

  48.         final String[] fmt = client.listOverviewFmt();
  49.         if (fmt != null) {
  50.             System.out.println("LIST OVERVIEW.FMT:");
  51.             for (final String s : fmt) {
  52.                 System.out.println(s);
  53.             }
  54.         } else {
  55.             System.out.println("Failed to get OVERVIEW.FMT");
  56.         }
  57.         final NewsgroupInfo group = new NewsgroupInfo();
  58.         client.selectNewsgroup(newsgroup, group);

  59.         final long lowArticleNumber = group.getFirstArticleLong();
  60.         final long highArticleNumber = lowArticleNumber + 5000;

  61.         System.out.println("Retrieving articles between [" + lowArticleNumber + "] and [" + highArticleNumber + "]");
  62.         final Iterable<Article> articles = client.iterateArticleInfo(lowArticleNumber, highArticleNumber);

  63.         System.out.println("Building message thread tree...");
  64.         final Threader threader = new Threader();
  65.         final Article root = (Article) threader.thread(articles);

  66.         Article.printThread(root, 0);
  67.     }

  68.     public MessageThreading() {
  69.     }

  70. }