View Javadoc
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    *      https://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  
18  package org.apache.commons.net.examples.nntp;
19  
20  import java.io.IOException;
21  import java.net.SocketException;
22  
23  import org.apache.commons.net.examples.PrintCommandListeners;
24  import org.apache.commons.net.nntp.Article;
25  import org.apache.commons.net.nntp.NNTPClient;
26  import org.apache.commons.net.nntp.NewsgroupInfo;
27  import org.apache.commons.net.nntp.Threader;
28  
29  /**
30   * Sample program demonstrating the use of article iteration and threading.
31   */
32  public class MessageThreading {
33      public static void main(final String[] args) throws SocketException, IOException {
34  
35          if (args.length != 2 && args.length != 4) {
36              System.out.println("Usage: MessageThreading <hostname> <groupname> [<user> <password>]");
37              return;
38          }
39  
40          final String hostname = args[0];
41          final String newsgroup = args[1];
42  
43          final NNTPClient client = new NNTPClient();
44          client.addProtocolCommandListener(PrintCommandListeners.sysOutPrintCommandListener());
45          client.connect(hostname);
46  
47          if (args.length == 4) { // Optional auth
48              final String user = args[2];
49              final String password = args[3];
50              if (!client.authenticate(user, password)) {
51                  System.out.println("Authentication failed for user " + user + "!");
52                  System.exit(1);
53              }
54          }
55  
56          final String[] fmt = client.listOverviewFmt();
57          if (fmt != null) {
58              System.out.println("LIST OVERVIEW.FMT:");
59              for (final String s : fmt) {
60                  System.out.println(s);
61              }
62          } else {
63              System.out.println("Failed to get OVERVIEW.FMT");
64          }
65          final NewsgroupInfo group = new NewsgroupInfo();
66          client.selectNewsgroup(newsgroup, group);
67  
68          final long lowArticleNumber = group.getFirstArticleLong();
69          final long highArticleNumber = lowArticleNumber + 5000;
70  
71          System.out.println("Retrieving articles between [" + lowArticleNumber + "] and [" + highArticleNumber + "]");
72          final Iterable<Article> articles = client.iterateArticleInfo(lowArticleNumber, highArticleNumber);
73  
74          System.out.println("Building message thread tree...");
75          final Threader threader = new Threader();
76          final Article root = (Article) threader.thread(articles);
77  
78          Article.printThread(root, 0);
79      }
80  
81      public MessageThreading() {
82      }
83  
84  }