Android Open Source - PlayMusicExporter Data Source






From Project

Back to project page PlayMusicExporter.

License

The source code is released under:

Copyright (c) 2015 David Schulte Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Soft...

If you think the Android project PlayMusicExporter 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 (c) 2015 David Schulte/*w  w  w  . java2 s .  co  m*/
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

package de.arcus.playmusiclib.datasources;

import android.database.Cursor;
import android.text.TextUtils;

import java.util.LinkedList;
import java.util.List;

import de.arcus.playmusiclib.PlayMusicManager;

/**
 * Universal data source
 */
public abstract class DataSource<T> {
    /**
     * The manager
     */
    protected PlayMusicManager mPlayMusicManager;

    /**
     * Creates a new data source
     * @param playMusicManager The manager
     */
    public DataSource(PlayMusicManager playMusicManager) {
        mPlayMusicManager = playMusicManager;
    }

    /**
     * Gets the index of the column
     * @param columns Table header
     * @param column Column
     * @return Index
     */
    protected static int getColumnsIndex(String[] columns, String column) {
        for (int n=0; n<columns.length; n++) {
            // Found column
            if (columns[n].equals(column))
                return n;
        }

        // Not found
        return -1;
    }

    protected abstract T getDataObject(Cursor cursor);

    /**
     * Loads all items from the database
     * @param table The table
     * @param columns All columns
     * @param where The where-command
     * @return Returns a list with all items
     */
    protected List<T> getItems(String table, String[] columns, String where) {
        return getItems(table, columns, where, null);
    }

    /**
     * Loads all items from the database
     * @param table The table
     * @param columns All columns
     * @param where The where-command
     * @param orderBy Order
     * @return Returns a list with all items
     */
    protected List<T> getItems(String table, String[] columns, String where, String orderBy) {
        return getItems(table, columns, where, orderBy, null);
    }

    /**
     * Loads all items from the database
     * @param table The table
     * @param columns All columns
     * @param where The where-command
     * @param orderBy Order
     * @param groupBy Group
     * @return Returns a list with all items
     */
    protected List<T> getItems(String table, String[] columns, String where, String orderBy, String groupBy) {
        // No connection; abort
        if (mPlayMusicManager.getDatabase() == null || !mPlayMusicManager.getDatabase().isOpen()) return null;

        // Creates the list
        List<T> items = new LinkedList<>();

        try {
            // Gets the first data row
            Cursor cursor = mPlayMusicManager.getDatabase().query(table, columns, where, null, groupBy, null, orderBy);

            // SQL error
            if (cursor == null) return null;

            cursor.moveToFirst();

            int pos = 0;
            // Reads the table
            while (!cursor.isAfterLast()) {
                pos ++;

                // Adds the object
                items.add(getDataObject(cursor));

                // Go to next data row
                cursor.moveToNext();
            }

        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }

        return items;
    }

    /**
     * Loads one item from the database
     * @param table The table
     * @param columns All columns
     * @param where The where-command
     * @return Returns the item
     */
    protected T getItem(String table, String[] columns, String where) {
        return getItem(table, columns, where, null);
    }

    /**
     * Loads one item from the database
     * @param table The table
     * @param columns All columns
     * @param where The where-command
     * @param orderBy Order
     * @return Returns the item
     */
    protected T getItem(String table, String[] columns, String where, String orderBy) {
        return getItem(table, columns, where, orderBy, null);
    }

    /**
     * Loads one item from the database
     * @param table The table
     * @param columns All columns
     * @param where The where-command
     * @param orderBy Order
     * @param groupBy Group
     * @return Returns the item
     */
    protected T getItem(String table, String[] columns, String where, String orderBy, String groupBy) {
        // Loads the list
        List<T> items = getItems(table, columns, where, orderBy, groupBy);

        // Gets the first item
        if (items.size() > 0)
            return items.get(0);
        else
            return null;
    }

    /**
     * Combines two SQL where commands with an AND operator
     * @param whereA Where command A
     * @param whereB Where command B
     * @return Returns a combined where command
     */
    protected static String combineWhere(String whereA, String whereB) {
        return combineWhere(whereA, whereB, "AND");
    }

    /**
     * Combines two SQL where commands
     * @param whereA Where command A
     * @param whereB Where command B
     * @param operator The operator word to use (AND or OR)
     * @return Returns a combined where command
     */
    protected static String combineWhere(String whereA, String whereB, String operator) {
        // Combine both
        if (!TextUtils.isEmpty(whereA) && !TextUtils.isEmpty(whereB))
            return "((" + whereA + ") " + operator + " (" + whereB + "))";

        // Use only whereA
        if (!TextUtils.isEmpty(whereA) && TextUtils.isEmpty(whereB))
            return whereA;

        // Use only whereB
        if (TextUtils.isEmpty(whereA) && !TextUtils.isEmpty(whereB))
            return whereB;

        // No where is set
        return "";
    }
}




Java Source Code List

de.arcus.framework.ApplicationTest.java
de.arcus.framework.crashhandler.CrashActivity.java
de.arcus.framework.crashhandler.CrashHandler.java
de.arcus.framework.logger.Logger.java
de.arcus.framework.settings.AppSettings.java
de.arcus.framework.superuser.SuperUserCommandCallback.java
de.arcus.framework.superuser.SuperUserCommand.java
de.arcus.framework.superuser.SuperUserTools.java
de.arcus.framework.superuser.SuperUser.java
de.arcus.framework.utils.FileTools.java
de.arcus.framework.utils.MediaScanner.java
de.arcus.playmusicexporter2.ApplicationTest.java
de.arcus.playmusicexporter2.activitys.MusicTrackDetailActivity.java
de.arcus.playmusicexporter2.activitys.MusicTrackListActivity.java
de.arcus.playmusicexporter2.adapter.MusicTrackAdapter.java
de.arcus.playmusicexporter2.adapter.MusicTrackListAdapter.java
de.arcus.playmusicexporter2.fragments.MusicTrackDetailFragment.java
de.arcus.playmusicexporter2.fragments.MusicTrackListFragment.java
de.arcus.playmusicexporter2.fragments.NavigationDrawerFragment.java
de.arcus.playmusicexporter2.utils.ImageViewLoader.java
de.arcus.playmusicexporter2.utils.MusicPathBuilder.java
de.arcus.playmusiclib.AllAccessExporter.java
de.arcus.playmusiclib.ApplicationTest.java
de.arcus.playmusiclib.PlayMusicManager.java
de.arcus.playmusiclib.datasources.AlbumDataSource.java
de.arcus.playmusiclib.datasources.ArtistDataSource.java
de.arcus.playmusiclib.datasources.DataSource.java
de.arcus.playmusiclib.datasources.MusicTrackDataSource.java
de.arcus.playmusiclib.datasources.PlaylistDataSource.java
de.arcus.playmusiclib.enums.ID3v2Version.java
de.arcus.playmusiclib.exceptions.CouldNotOpenDatabaseException.java
de.arcus.playmusiclib.exceptions.NoSuperUserException.java
de.arcus.playmusiclib.exceptions.PlayMusicNotFoundException.java
de.arcus.playmusiclib.items.Album.java
de.arcus.playmusiclib.items.Artist.java
de.arcus.playmusiclib.items.MusicTrackList.java
de.arcus.playmusiclib.items.MusicTrack.java
de.arcus.playmusiclib.items.Playlist.java