package com.tubeonfire.model;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.TreeMap;
import java.util.logging.Logger;
import javax.cache.Cache;
import javax.cache.CacheException;
import javax.cache.CacheManager;
import com.googlecode.objectify.Key;
import com.googlecode.objectify.Objectify;
import com.googlecode.objectify.ObjectifyOpts;
import com.googlecode.objectify.ObjectifyService;
import com.googlecode.objectify.Query;
import com.tubeonfire.entity.Author;
public class AuthorModel {
private static final Logger log = Logger.getLogger(AuthorModel.class
.getName());
private static Objectify ofy;
private static Cache cache = null;
private static boolean isRegisted = false;
private static ObjectifyOpts opts = null;
private int limit = 30;
private int page = 1;
private int totalResult = 0;
private int totalPage = 1;
private static String cacheSide = "frontEnd_";
private static String cachePrefix = "authorModel_";
private static TreeMap<String, String> mapCacheKey = new TreeMap<String, String>();
private List<Author> listResult = new ArrayList<Author>();
public int getTotalPage() {
totalPage = totalResult / limit;
if ((totalResult % limit) > 0) {
totalPage += 1;
}
return totalPage;
}
public void setTotalPage(int totalPage) {
this.totalPage = totalPage;
}
public int getLimit() {
return limit;
}
public void setLimit(int limit) {
this.limit = limit;
}
public int getPage() {
return page;
}
public void setPage(int page) {
this.page = page;
}
public int getTotalResult() {
return totalResult;
}
public void setTotalResult(int totalResult) {
this.totalResult = totalResult;
}
public List<Author> getListResult() {
return listResult;
}
public void setListResult(List<Author> listResult) {
this.listResult = listResult;
}
public static void init() {
if (!isRegisted) {
isRegisted = true;
try {
ObjectifyService.register(Author.class);
} catch (Exception e) {
isRegisted = false;
}
try {
cache = CacheManager.getInstance().getCacheFactory()
.createCache(Collections.emptyMap());
} catch (CacheException e) {
isRegisted = false;
}
opts = new ObjectifyOpts().setSessionCache(true);
}
ofy = ObjectifyService.begin(opts);
}
public AuthorModel() {
init();
}
@SuppressWarnings("unchecked")
public static Author getById(String id) {
try {
init();
Author obj = new Author();
String prefix = cachePrefix + "id_" + id;
if (cache != null && cache.containsKey(prefix)) {
obj = (Author) cache.get(prefix);
} else {
try {
obj = ofy.get(new Key<Author>(Author.class, id));
cache.put(prefix, obj);
} catch (Exception e) {
obj = null;
}
}
return obj;
} catch (Exception e) {
log.warning(e.toString());
e.printStackTrace();
return null;
}
}
@SuppressWarnings("unchecked")
public void prepareList() {
init();
listResult = new ArrayList<Author>();
String prefix = cachePrefix + "page_" + page + "_limit_" + limit;
mapCacheKey.put(prefix, prefix);
if (cache != null && cache.containsKey(prefix)) {
listResult = (List<Author>) cache.get(prefix);
totalResult = (Integer) cache.get(cacheSide
+ "allAuthorTotalResult");
limit = (Integer) cache.get(cacheSide + "allAuthorLimit");
} else {
int start = (page - 1) * limit;
Query<Author> q = ofy.query(Author.class).order("-bumpPoint");
totalResult = q.count();
q = q.limit(limit).offset(start);
for (Author obj : q) {
listResult.add(obj);
}
if (listResult.size() > 0) {
cache.put(prefix, listResult);
cache.put(cacheSide + "allAuthorTotalResult", totalResult);
cache.put(cacheSide + "allAuthorLimit", limit);
}
}
}
public static void clearModelCache() {
init();
try {
if (mapCacheKey != null && mapCacheKey.size() > 0) {
for (String key : mapCacheKey.keySet()) {
cache.remove(key);
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
}