summaryrefslogtreecommitdiffstats
path: root/org/madore/damlengine/WeblogSummary.java
blob: babfcf5d676fb81c84efe36350722f58d4478048 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package org.madore.damlengine;

import java.util.HashMap;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

public final class WeblogSummary {

    public static final class EntrySummary {
	int id;
	String date;
	String lang;
	String title;  String titleXml;
	public EntrySummary(int id, String date, String lang,
			    String title, String titleXml) {
	    this.id = id;
	    this.date = date;
	    this.lang = lang;
	    this.title = title;
	    this.titleXml = titleXml;
	}
    }

    public HashMap<Integer,EntrySummary> entries;

    private static WeblogSummary singleton;

    private WeblogSummary() {
	this.entries = new HashMap<Integer,EntrySummary>();
    }

    public static WeblogSummary getSummary() {
	if ( singleton != null )
	    return singleton;
	singleton = new WeblogSummary();
	try {
	    final Connection conn = WeblogDatabaseConnection.getConnection();
	    final PreparedStatement selSt
		= conn.prepareStatement("SELECT id , edate , lang , title , title_xml FROM entries");
	    final ResultSet selRes = selSt.executeQuery();
	    while ( selRes.next() ) {
		int id = selRes.getInt(1);
		String date = selRes.getString(2);
		String lang = selRes.getString(3);
		String title = selRes.getString(4);
		String titleXml = selRes.getString(5);
		singleton.entries.put(new Integer(id), new EntrySummary(id, date, lang, title, titleXml));
	    }
	} catch (SQLException e) {
	    // Well, we'll have no summary.  Too bad, but better than abort.
	    singleton = null;
	}
	return singleton;
    }

}