summaryrefslogtreecommitdiffstats
path: root/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/thrift/cache/OrganizationList.java
blob: e54154980313d8a65084c3e79fbfa7ad36cb985f (plain) (blame)
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
59
60
61
62
63
64
65
66
67
68
69
package org.openslx.bwlp.sat.thrift.cache;

import java.sql.SQLException;
import java.util.List;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.apache.thrift.TException;
import org.apache.thrift.transport.TTransportException;
import org.openslx.bwlp.sat.database.mappers.DbOrganization;
import org.openslx.bwlp.thrift.iface.Organization;
import org.openslx.thrifthelper.ThriftManager;
import org.openslx.util.QuickTimer;
import org.openslx.util.QuickTimer.Task;

/**
 * Holds the list of all known organizations. The list is synchronized with
 * the master server.
 */
public class OrganizationList extends CacheBase<List<Organization>> {

	private static final Logger LOGGER = LogManager.getLogger(OrganizationList.class);

	private static final OrganizationList instance = new OrganizationList();

	public static List<Organization> get() {
		return instance.getInternal();
	}

	@Override
	protected List<Organization> getCallback() {
		final List<Organization> organizations;
		try {
			organizations = ThriftManager.getMasterClient().getOrganizations();
		} catch (TException e1) {
			LOGGER.warn("Could not fetch Organization list from master, using local data...",
					e1 instanceof TTransportException ? null : e1);
			try {
				return DbOrganization.getAll();
			} catch (SQLException e) {
				LOGGER.warn("Using local Organization list from database also failed.", e);
			}
			return null;
		}
		// Also store the list in the local data base (asynchronous, in the timer thread)
		QuickTimer.scheduleOnce(new Task() {
			@Override
			public void fire() {
				try {
					DbOrganization.storeOrganizations(organizations);
				} catch (SQLException e) {
				}
			}
		});
		return organizations;
	}

	public static Organization find(String organizationId) {
		List<Organization> list = get();
		if (list == null)
			return null;
		for (Organization org : list) {
			if (org != null && organizationId.equals(org.organizationId))
				return org;
		}
		return null;
	}

}