Android Open Source - Netball Record Repository






From Project

Back to project page Netball.

License

The source code is released under:

GNU General Public License

If you think the Android project Netball 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

package com.prisch.repositories;
//from  ww w  .jav a  2  s . co m
import android.content.ContentUris;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.net.Uri;
import com.prisch.content.NetballContentProvider;
import com.prisch.model.*;

import java.util.Date;

public class RecordRepository {

    private Context context;

    private GameRepository gameRepository;

    public RecordRepository(Context context) {
        this.context = context;

        this.gameRepository = new GameRepository(context);
    }

    // ===== Interface =====

    public long createRecord(Date date, Long teamAssignmentId, Action action) {
        if (action == Action.GOAL) {
            long gameId = 0;
            long teamScore = 0;
            long opponentScore = 0;

            Cursor activeGameCursor = gameRepository.getActiveGame();
            if (activeGameCursor.moveToNext()) {
                gameId = activeGameCursor.getLong(activeGameCursor.getColumnIndex(Game.ID));
                teamScore = activeGameCursor.getLong(activeGameCursor.getColumnIndex(Game.TEAM_SCORE));
                opponentScore = activeGameCursor.getLong(activeGameCursor.getColumnIndex(Game.OPPONENT_SCORE));
            }

            ++teamScore;
            gameRepository.updateGameScores(gameId, teamScore, opponentScore);
        }

        ContentValues contentValues = new ContentValues();
        contentValues.put(Record.DATE, date.getTime());
        contentValues.put(Record.TEAM_ID, teamAssignmentId);
        contentValues.put(Record.ACTION, action.toString());

        Uri resultUri = context.getContentResolver().insert(NetballContentProvider.URI_RECORDS, contentValues);
        return ContentUris.parseId(resultUri);
    }

    public Cursor getRecordsForGame(Long gameId) {
        String where = TeamMember.GAME_ID + "=?";
        String[] parameters = new String[] {gameId.toString()};
        return context.getContentResolver().query(NetballContentProvider.URI_RECORDS, null, where, parameters, null);
    }
}




Java Source Code List

com.prisch.activities.ActionsActivity.java
com.prisch.activities.BaseTeamActivity.java
com.prisch.activities.DashboardActivity.java
com.prisch.activities.GameStatsActivity.java
com.prisch.activities.GamesActivity.java
com.prisch.activities.PlayersActivity.java
com.prisch.activities.PositionsActivity.java
com.prisch.activities.SubstitutionActivity.java
com.prisch.activities.TeamActivity.java
com.prisch.content.DatabaseHelper.java
com.prisch.content.NetballContentProvider.java
com.prisch.controls.ActionButton.java
com.prisch.fragments.PositionStatsFragment.java
com.prisch.loaders.GameStatsLoader.java
com.prisch.model.Action.java
com.prisch.model.GameStats.java
com.prisch.model.Game.java
com.prisch.model.OpponentAction.java
com.prisch.model.OpponentRecord.java
com.prisch.model.PlayerStats.java
com.prisch.model.Player.java
com.prisch.model.Position.java
com.prisch.model.Record.java
com.prisch.model.TeamMember.java
com.prisch.repositories.GameRepository.java
com.prisch.repositories.OpponentRecordRepository.java
com.prisch.repositories.PlayerRepository.java
com.prisch.repositories.RecordRepository.java
com.prisch.repositories.StatsRepository.java
com.prisch.repositories.TeamMemberRepository.java
com.prisch.util.DateUtils.java
com.prisch.views.GameAdapter.java
com.prisch.views.GameStatsAdapter.java
com.prisch.views.PlayerStatsAdapter.java
com.prisch.views.PlayerStatsListItem.java
com.prisch.views.TeamAdapter.java