Skip to content
GroovePlayer.h 2.45 KiB
Newer Older
/*
 * Copyright (C) 2017  Kevin Whitaker <eyecreate@gmail.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 */

#ifndef GROOVEPLAYER_H
#define GROOVEPLAYER_H

#include <Wt/Dbo/Session>
#include <Wt/Dbo/backend/Sqlite3>
#include <thread>
#include "db/User.h"
#include "db/AudioTrack.h"
#include <experimental/filesystem> //TODO:Change to non-gcc way when officially using c++17
namespace std {
    namespace filesystem =  experimental::filesystem;
}
    static std::filesystem::path musicScanDir;
    static GroovePlayerMgr* getInstance() {
        musicScanDir = std::filesystem::current_path()/"music";
        static GroovePlayerMgr instance("music.db");
    GroovePlayerMgr ( GroovePlayerMgr const&) = delete;
    void operator=( GroovePlayerMgr const&) = delete;
    enum PlayerEvents {NOTHING, GROOVE_NOWPLAYING, VOTING_ENDED, VOTE_CAST, PLAYING_PAUSED, PLAYING_RESUMED, SKIP_REQUESTED, SKIP_VOTE_CAST, SKIP_VOTING_ENDED, ADMIN_FORCE_SKIP};
    GroovePlayerMgr (std::string dbFile);
    Wt::Dbo::backend::Sqlite3 sqliteConnection;
    Wt::Dbo::Session sqlSession;
    std::list<const AudioTrack*> requestQueue;
    std::list<PlayerEvents> lastInternalEvents;
    GroovePlaylistItem* currentItem;

    
    std::thread* grooveEvents;
    static void grooveEventLoop();
    std::list<const AudioTrack*> getNextVoteBatch();
    std::thread* grooveAudioScanner;
    static void grooveAudioScannerLoop();
    static bool addFileToTrackDBIfTagged(std::filesystem::path file);
    static void removeOrphanedTracks();
    Wt::Dbo::ptr<AudioTrack> getCurrentTrack();