Working on implementing the Toggle controls like Repeat and Shuffle. Having a little issues with Repeat, haven't started with Shuffle
This commit is contained in:
@@ -29,10 +29,13 @@ namespace repository { namespace local {
|
||||
const auto dbPath = pathOfDatabase(appPath);
|
||||
SQLite::Database db(dbPath, SQLite::OPEN_READONLY);
|
||||
|
||||
return db.tableExists(m_tableName);
|
||||
auto result = db.tableExists(m_tableName);
|
||||
return result;
|
||||
} catch (std::exception& ex) {
|
||||
auto msg = ex.what();
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
bool BaseRepository::isTableEmpty(const std::string& appPath)
|
||||
|
||||
@@ -18,13 +18,13 @@
|
||||
#include <android/asset_manager_jni.h>
|
||||
#include <android/log.h>
|
||||
#include <android/sharedmem.h>
|
||||
#include <curl/curl.h>
|
||||
#include <nlohmann/json.hpp>
|
||||
#include <sqlite3.h>
|
||||
#include <sys/mman.h>
|
||||
|
||||
#include <nlohmann/json.hpp>
|
||||
#include <curl/curl.h>
|
||||
#include <sqlite3.h>
|
||||
|
||||
#include "APIRepository.h"
|
||||
#include "RepeatRepository.h"
|
||||
#include "SongRepository.h"
|
||||
#include "Tok.h"
|
||||
#include "TokenRepository.h"
|
||||
@@ -75,6 +75,12 @@ jobject songToObj(JNIEnv *env, const model::Song& song)
|
||||
}
|
||||
|
||||
|
||||
std::string jstringToString(JNIEnv *env, jstring& val)
|
||||
{
|
||||
return env->GetStringUTFChars(val, nullptr);
|
||||
}
|
||||
|
||||
|
||||
model::APIInfo retrieveAPIInfo(const std::string& path)
|
||||
{
|
||||
repository::local::APIRepository apiRepo;
|
||||
@@ -127,6 +133,19 @@ model::User retrieveCredentials(const std::string& dataPath)
|
||||
}
|
||||
|
||||
|
||||
int retrieveRepeatMode(const std::string& path)
|
||||
{
|
||||
repository::local::RepeatRepository repeatRepo;
|
||||
if (!repeatRepo.doesTableExist(path)) {
|
||||
repeatRepo.createRepeatTable(path);
|
||||
}
|
||||
|
||||
auto repeatMode = repeatRepo.retrieveRepeatMode(path);
|
||||
|
||||
return static_cast<int>(repeatMode);
|
||||
}
|
||||
|
||||
|
||||
bool doesDatabaseExist(const std::string& dataPath)
|
||||
{
|
||||
repository::local::UserRepository userRepo;
|
||||
@@ -207,6 +226,12 @@ void saveToken(const model::Token& token, const std::string& path)
|
||||
tokenRepo.saveToken(token, path);
|
||||
}
|
||||
|
||||
void updateRepeatMode(const std::string& path)
|
||||
{
|
||||
repository::local::RepeatRepository repeatRepo;
|
||||
repeatRepo.updateRepeat(path);
|
||||
}
|
||||
|
||||
|
||||
extern "C"
|
||||
JNIEXPORT jobjectArray
|
||||
@@ -380,6 +405,21 @@ Java_com_example_mear_repositories_UserRepository_logUser(
|
||||
}
|
||||
|
||||
|
||||
extern "C"
|
||||
JNIEXPORT jint
|
||||
JNICALL
|
||||
Java_com_example_mear_repositories_RepeatRepository_retrieveRepeatMode(
|
||||
JNIEnv *env,
|
||||
jobject thisObj,
|
||||
jstring pathStr
|
||||
) {
|
||||
const auto dataPath = jstringToString(env, pathStr);
|
||||
auto repeatMode = retrieveRepeatMode(dataPath);
|
||||
|
||||
return repeatMode;
|
||||
}
|
||||
|
||||
|
||||
extern "C"
|
||||
JNIEXPORT jboolean
|
||||
JNICALL
|
||||
@@ -501,3 +541,15 @@ Java_com_example_mear_repositories_TokenRepository_saveTokenRecord(
|
||||
|
||||
saveToken(token, path);
|
||||
}
|
||||
|
||||
extern "C"
|
||||
JNIEXPORT void
|
||||
JNICALL
|
||||
Java_com_example_mear_repositories_RepeatRepository_updateRepeatMode(
|
||||
JNIEnv *env,
|
||||
jobject thisObj,
|
||||
jstring pathStr
|
||||
) {
|
||||
const auto dataPath = jstringToString(env, pathStr);
|
||||
updateRepeatMode(dataPath);
|
||||
}
|
||||
@@ -19,24 +19,30 @@ std::vector<model::Song> retrieveSongs(const model::Token&, const std::string&);
|
||||
|
||||
jobject songToObj(JNIEnv *env, const model::Song&);
|
||||
|
||||
std::string jstringToString(JNIEnv*, jstring&);
|
||||
|
||||
model::APIInfo retrieveAPIInfo(const std::string&);
|
||||
|
||||
model::Song retrieveSong(const std::string&, const std::string&, const int);
|
||||
model::Song retrieveSong(const model::Token&, const model::Song&, const std::string&);
|
||||
|
||||
model::Token fettchToken(const model::User&, const std::string&);
|
||||
model::Token fetchToken(const model::User&, const std::string&);
|
||||
model::Token retrieveSavedToken(const std::string&);
|
||||
void saveToken(const model::Token&, const std::string&);
|
||||
|
||||
model::User retrieveCredentials(const std::string&);
|
||||
|
||||
int retrieveRepeatMode(const std::string&);
|
||||
|
||||
bool doesDatabaseExist(const std::string&);
|
||||
bool apiInformationExist(const std::string&);
|
||||
bool doesTokenExist(const std::string&);
|
||||
bool userCredentialExist(const std::string&);
|
||||
|
||||
void saveApiInfo(const model::APIInfo&, const std::string&);
|
||||
void saveAPIInfo(const model::APIInfo&, const std::string&);
|
||||
void saveCredentials(const model::User&, const std::string&);
|
||||
void saveToken(const model::Token&, const std::string&);
|
||||
void updateRepeatMode(const std::string&);
|
||||
|
||||
|
||||
|
||||
#endif //MEAR_DEMO_H
|
||||
|
||||
@@ -21,7 +21,9 @@ namespace repository { namespace local {
|
||||
|
||||
const auto result = query.executeStep();
|
||||
|
||||
return static_cast<RepeatTypes>(query.getColumn(1).getInt());
|
||||
auto repeatType = query.getColumn(1).getInt();
|
||||
auto val = static_cast<RepeatTypes>(result);
|
||||
return val;
|
||||
} catch (std::exception& ex) {
|
||||
auto msg = ex.what();
|
||||
}
|
||||
@@ -83,5 +85,5 @@ namespace repository { namespace local {
|
||||
}
|
||||
|
||||
|
||||
std::string RepeatRepository::repeatTable() { return "Repeat"; }
|
||||
std::string RepeatRepository::repeatTable() noexcept { return "Repeat"; }
|
||||
}}
|
||||
|
||||
@@ -20,7 +20,7 @@ namespace repository { namespace local {
|
||||
void createRepeatTable(const std::string&);
|
||||
void updateRepeat(const std::string&);
|
||||
private:
|
||||
constexpr std::string repeatTable() noexcept;
|
||||
std::string repeatTable() noexcept;
|
||||
};
|
||||
}}
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
enum class RepeatTypes {
|
||||
RepeatSong = 0,
|
||||
RepeatOff
|
||||
RepeatOff = 1
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -50,6 +50,7 @@ namespace repository {
|
||||
songJson["artist"].get<std::string>(), songJson["album"].get<std::string>(),
|
||||
songJson["genre"].get<std::string>(), songJson["duration"].get<int>(),
|
||||
songJson["year"].get<int>());
|
||||
song.coverArtId = songJson["coverart_id"].get<int>();
|
||||
|
||||
songs.push_back(song);
|
||||
}
|
||||
@@ -59,148 +60,6 @@ namespace repository {
|
||||
}
|
||||
|
||||
|
||||
[[deprecated]]
|
||||
model::Song SongRepository::retrieveSong(const std::string& token, const int id) {
|
||||
std::string uri("");
|
||||
uri.append(std::to_string(id));
|
||||
model::Song song;
|
||||
|
||||
CURL *curl;
|
||||
CURLcode res;
|
||||
struct curl_slist *chunk = NULL;
|
||||
curl = curl_easy_init();
|
||||
|
||||
if (!curl) {
|
||||
return song;
|
||||
}
|
||||
|
||||
auto resp = std::make_unique<char[]>(10000);
|
||||
|
||||
std::string authInfo("Authorization: Bearer ");
|
||||
authInfo.append(token);
|
||||
chunk = curl_slist_append(chunk, authInfo.c_str());
|
||||
|
||||
curl_easy_setopt(curl, CURLOPT_URL, uri.c_str());
|
||||
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, chunk);
|
||||
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, respBodyRetriever);
|
||||
curl_easy_setopt(curl, CURLOPT_WRITEDATA, resp.get());
|
||||
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
|
||||
|
||||
res = curl_easy_perform(curl);
|
||||
curl_easy_cleanup(curl);
|
||||
|
||||
if (res == CURLE_OK) {
|
||||
auto s = nlohmann::json::parse(resp.get());
|
||||
song.id = s["id"].get<int>();
|
||||
song.title = s["title"].get<std::string>();
|
||||
song.album = s["album"].get<std::string>();
|
||||
song.artist = s["artist"].get<std::string>();
|
||||
song.genre = s["genre"].get<std::string>();
|
||||
song.duration = s["duration"].get<int>();
|
||||
song.year = s["year"].get<int>();
|
||||
|
||||
return song;
|
||||
}
|
||||
|
||||
return song;
|
||||
}
|
||||
|
||||
[[deprecated]]
|
||||
model::Song SongRepository::retrieveSong(const std::string& token, const std::string& baseUri,
|
||||
const int id) {
|
||||
std::string uri(baseUri);
|
||||
uri.append("/api/v1/song/");
|
||||
uri.append(std::to_string(id));
|
||||
model::Song song;
|
||||
|
||||
CURL *curl;
|
||||
CURLcode res;
|
||||
struct curl_slist *chunk = NULL;
|
||||
curl = curl_easy_init();
|
||||
|
||||
if (!curl) {
|
||||
return song;
|
||||
}
|
||||
|
||||
auto resp = std::make_unique<char[]>(10000);
|
||||
|
||||
std::string authInfo("Authorization: Bearer ");
|
||||
authInfo.append(token);
|
||||
chunk = curl_slist_append(chunk, authInfo.c_str());
|
||||
|
||||
curl_easy_setopt(curl, CURLOPT_URL, uri.c_str());
|
||||
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, chunk);
|
||||
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, respBodyRetriever);
|
||||
curl_easy_setopt(curl, CURLOPT_WRITEDATA, resp.get());
|
||||
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
|
||||
|
||||
res = curl_easy_perform(curl);
|
||||
curl_easy_cleanup(curl);
|
||||
|
||||
if (res == CURLE_OK) {
|
||||
auto s = nlohmann::json::parse(resp.get());
|
||||
song.id = s["id"].get<int>();
|
||||
song.title = s["title"].get<std::string>();
|
||||
song.album = s["album"].get<std::string>();
|
||||
song.artist = s["artist"].get<std::string>();
|
||||
song.genre = s["genre"].get<std::string>();
|
||||
song.duration = s["duration"].get<int>();
|
||||
song.year = s["year"].get<int>();
|
||||
|
||||
return song;
|
||||
}
|
||||
|
||||
return song;
|
||||
}
|
||||
|
||||
[[deprecated]]
|
||||
model::Song SongRepository::retrieveSong(const std::string& token, const std::string& baseUri,
|
||||
const model::Song& sng) {
|
||||
std::string uri(baseUri);
|
||||
uri.append("/api/v1/song/");
|
||||
uri.append(std::to_string(sng.id));
|
||||
model::Song song;
|
||||
|
||||
CURL *curl;
|
||||
CURLcode res;
|
||||
struct curl_slist *chunk = NULL;
|
||||
curl = curl_easy_init();
|
||||
|
||||
if (!curl) {
|
||||
return sng;
|
||||
}
|
||||
|
||||
auto resp = std::make_unique<char[]>(10000);
|
||||
|
||||
std::string authInfo("Authorization: Bearer ");
|
||||
authInfo.append(token);
|
||||
chunk = curl_slist_append(chunk, authInfo.c_str());
|
||||
|
||||
curl_easy_setopt(curl, CURLOPT_URL, uri.c_str());
|
||||
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, chunk);
|
||||
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, respBodyRetriever);
|
||||
curl_easy_setopt(curl, CURLOPT_WRITEDATA, resp.get());
|
||||
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
|
||||
|
||||
res = curl_easy_perform(curl);
|
||||
curl_easy_cleanup(curl);
|
||||
|
||||
if (res == CURLE_OK) {
|
||||
auto s = nlohmann::json::parse(resp.get());
|
||||
song.id = s["id"].get<int>();
|
||||
song.title = s["title"].get<std::string>();
|
||||
song.album = s["album"].get<std::string>();
|
||||
song.artist = s["artist"].get<std::string>();
|
||||
song.genre = s["genre"].get<std::string>();
|
||||
song.duration = s["duration"].get<int>();
|
||||
song.year = s["year"].get<int>();
|
||||
|
||||
return song;
|
||||
}
|
||||
|
||||
return sng;
|
||||
}
|
||||
|
||||
model::Song SongRepository::retrieveSong(const model::Token& token, const model::Song& sng,
|
||||
const std::string& baseUri) {
|
||||
std::string uri(baseUri);
|
||||
@@ -241,6 +100,7 @@ namespace repository {
|
||||
song.genre = s["genre"].get<std::string>();
|
||||
song.duration = s["duration"].get<int>();
|
||||
song.year = s["year"].get<int>();
|
||||
song.coverArtId = s["coverart_id"].get<int>();
|
||||
|
||||
return song;
|
||||
}
|
||||
|
||||
@@ -17,9 +17,6 @@ namespace repository {
|
||||
public:
|
||||
std::vector<model::Song> fetchSongs(const model::Token&, const std::string&);
|
||||
|
||||
model::Song retrieveSong(const std::string&, const int);
|
||||
model::Song retrieveSong(const std::string&, const std::string&, const int);
|
||||
model::Song retrieveSong(const std::string&, const std::string&, const model::Song&);
|
||||
model::Song retrieveSong(const model::Token&, const model::Song&, const std::string&);
|
||||
private:
|
||||
static size_t respBodyRetriever(void*, size_t, size_t, char*);
|
||||
|
||||
@@ -34,6 +34,7 @@ public:
|
||||
std::string genre;
|
||||
int duration;
|
||||
int year;
|
||||
int coverArtId;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user