If you think the Android project hubblog listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/*
* Copyright 2012 GitHub Inc.//www.java2s.com
*
* 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.github.mobile.Persistence;
import android.content.ContentValues;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteQueryBuilder;
import com.google.inject.Inject;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.egit.github.core.User;
import org.eclipse.egit.github.core.service.OrganizationService;
import org.eclipse.egit.github.core.service.UserService;
/**
* Cache of organization under an account
*/publicclass Organizations implements PersistableResource<User> {
privatefinal UserService userService;
privatefinal OrganizationService orgService;
/**
* Create organizations cache with services to load from
*
* @param orgService
* @param userService
*/
@Inject
public Organizations(OrganizationService orgService, UserService userService) {
this.orgService = orgService;
this.userService = userService;
}
@Override
public Cursor getCursor(SQLiteDatabase readableDatabase) {
SQLiteQueryBuilder builder = new SQLiteQueryBuilder();
builder.setTables("orgs JOIN users ON (orgs.id = users.id)");
return builder
.query(readableDatabase, new String[] { "users.id",
"users.name", "users.avatarurl" }, null, null, null,
null, null);
}
@Override
public User loadFrom(Cursor cursor) {
User user = new User();
user.setId(cursor.getInt(0));
user.setLogin(cursor.getString(1));
user.setAvatarUrl(cursor.getString(2));
return user;
}
@Override
publicvoid store(SQLiteDatabase db, List<User> orgs) {
db.delete("orgs", null, null);
if (orgs.isEmpty())
return;
ContentValues values = new ContentValues(3);
for (User user : orgs) {
values.clear();
values.put("id", user.getId());
db.replace("orgs", null, values);
values.put("name", user.getLogin());
values.put("avatarurl", user.getAvatarUrl());
db.replace("users", null, values);
}
}
@Override
public List<User> request() throws IOException {
User user = userService.getUser();
List<User> orgs = orgService.getOrganizations();
List<User> all = new ArrayList<User>(orgs.size() + 1);
all.add(user);
all.addAll(orgs);
return all;
}
}