summaryrefslogtreecommitdiff
path: root/src/lq/QuoteUtils.java
blob: f19dbf648bfbf43f28b1331c6ba91a2424e9c395 (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
package lq;

import java.util.Collections;
import java.util.List;
import java.util.Comparator;
import javax.jdo.PersistenceManager;
import javax.jdo.Query;

public class QuoteUtils {
    public static List<Quote> getQuotes() {
        PersistenceManager pm = PMF.get().getPersistenceManager(); 
        try {
            List<Quote> quotes = (List<Quote>) pm.newQuery(Quote.class).execute();
            pm.retrieveAll(quotes);
            return quotes;
        }
        finally {
            pm.close();
        }
    }

    public static List<Quote> getQuotesOrderedByIdDesc() {
        List<Quote> quotes = getQuotes();
        Collections.sort(quotes,
                new Comparator<Quote>() {
                    public int compare(Quote q1, Quote q2) {
                        return Long.signum(q2.getId() - q1.getId());
                    }
        });
        return quotes;
    }

    public static List<Quote> getQuotesOrderedByScoreDesc() {
        List<Quote> quotes = getQuotes();
        Collections.sort(quotes,
                new Comparator<Quote>() {
                    public int compare(Quote q1, Quote q2) {
                        throw new RuntimeException("Score ordering not yet implemented");
                    }
        });
        return quotes;
    }

    public static List<Quote> getQuotesOrderedByDateDesc() {
        List<Quote> quotes = getQuotes();
        Collections.sort(quotes,
                new Comparator<Quote>() {
                    public int compare(Quote q1, Quote q2) {
                        return q2.getQuoteDate().compareTo(q1.getQuoteDate());
                    }
        });
        return quotes;
    }
}