summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/google/gerrit/client/data/AccountCache.java
blob: db2424f1c20b406d3a152da58589112592a62150 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package com.google.gerrit.client.data;

import com.google.gerrit.client.reviewdb.Account;
import com.google.gerrit.client.reviewdb.ReviewDb;
import com.google.gerrit.client.rpc.Common;
import com.google.gwtorm.client.OrmException;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;

/** Cache of account information. */
public class AccountCache {
  private final LinkedHashMap<Account.Id, Account> byId =
      new LinkedHashMap<Account.Id, Account>(16, 0.75f, true) {
        @Override
        protected boolean removeEldestEntry(
            final Map.Entry<Account.Id, Account> eldest) {
          return 4096 <= size();
        }
      };

  /**
   * Invalidate all cached information about a single user account.
   * 
   * @param accountId the account to invalidate from the cache.
   */
  public void invalidate(final Account.Id accountId) {
    synchronized (byId) {
      byId.remove(accountId);
    }
  }

  /**
   * Get a single account.
   * 
   * @param accountId the account to obtain.
   * @return the cached account entity; null if the account is not in the
   *         database anymore.
   */
  public Account get(final Account.Id accountId) {
    return get(accountId, null);
  }

  /**
   * Get a single account.
   * 
   * @param accountId the account to obtain.
   * @param qd optional connection to reuse (if not null) when doing a lookup.
   * @return the cached account entity; null if the account is not in the
   *         database anymore.
   */
  public Account get(final Account.Id accountId, final ReviewDb qd) {
    if (accountId == null) {
      return null;
    }

    Account m;
    synchronized (byId) {
      m = byId.get(accountId);
    }
    if (m != null) {
      return m;
    }

    try {
      final ReviewDb db = qd != null ? qd : Common.getSchemaFactory().open();
      try {
        m = db.accounts().get(accountId);
      } finally {
        if (qd == null) {
          db.close();
        }
      }
    } catch (OrmException e) {
      m = null;
    }
    if (m != null) {
      synchronized (byId) {
        byId.put(m.getId(), m);
      }
    }
    return m;
  }

  /**
   * Lookup multiple account records.
   * 
   * @param fetch set of all accounts to obtain.
   * @param qd optional query handle to use if the account data is not in cache.
   * @return records which match; if an account listed in <code>fetch</code> is
   *         not found it will not be returned.
   */
  public Collection<Account> get(final Set<Account.Id> fetch, final ReviewDb qd) {
    final Set<Account.Id> toget = new HashSet<Account.Id>(fetch);
    final Collection<Account> r = new ArrayList<Account>(toget.size());

    synchronized (byId) {
      for (final Iterator<Account.Id> i = toget.iterator(); i.hasNext();) {
        final Account m = byId.get(i.next());
        if (m != null) {
          r.add(m);
          i.remove();
        }
      }
    }

    if (!toget.isEmpty()) {
      List<Account> found;
      try {
        final ReviewDb db = qd != null ? qd : Common.getSchemaFactory().open();
        try {
          found = qd.accounts().get(toget).toList();
        } finally {
          if (qd == null) {
            db.close();
          }
        }
      } catch (OrmException e) {
        found = Collections.emptyList();
      }
      if (!found.isEmpty()) {
        synchronized (byId) {
          for (final Account a : found) {
            byId.put(a.getId(), a);
          }
        }
        r.addAll(found);
      }
    }
    return r;
  }

  /** Force the entire cache to flush from memory and recompute. */
  public void flush() {
    synchronized (byId) {
      byId.clear();
    }
  }
}