1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
|
/*
* daemon-xosd.cpp - XOSD Daemon interface
* Copyright (C) 2003 Frank Baumgart <frank.baumgart@gmx.net>
* Copyright (C) 2002 Andy Lo A Foe <andy@loafoe.com>
*
* This file is part of AlsaPlayer.
*
* AlsaPlayer 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 3 of the License, or
* (at your option) any later version.
*
* AlsaPlayer 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, see <http://www.gnu.org/licenses/>.
*
*/
#include <cstdio>
#include <cstdlib>
#include <csignal>
#include <cassert>
#include <unistd.h>
#include <cstring>
#include <pthread.h>
#include <sys/types.h>
#include <dirent.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/ioctl.h>
#include <fcntl.h>
#include <dlfcn.h>
#include <cmath>
#include "config.h"
#include "SampleBuffer.h"
#include "CorePlayer.h"
#include "Playlist.h"
#include "utilities.h"
#include "interface_plugin.h"
#include "AlsaPlayer.h"
#include "prefs.h"
#include "control.h"
#include "xosd.h"
#define OSD_FONT "-adobe-helvetica-medium-r-normal-*-24-*-*-*-*-*-*-*"
#define OSD_COLOR "#55ff55"
#define OSD_OUTL_COLOR "black"
#define OSD_SHADOW 1
#define OSD_OUTL_OFF 1
#define OSD_TIMEOUT 8
#define OSD_LINES 5
#define OSD_H_OFF 20
#define OSD_V_OFF 20
static pthread_mutex_t finish_mutex;
static coreplayer_notifier notifier;
static xosd *osd = NULL;
static const char *osd_font;
static const char *osd_color;
static const char *osd_outl_color;
static int osd_shadow;
static int osd_outl_off;
static int osd_h_off;
static int osd_v_off;
static int osd_timeout;
static volatile bool finished;
void stop_notify(void *data)
{
}
int daemon_init()
{
pthread_mutex_init(&finish_mutex, NULL);
osd_font = prefs_get_string(ap_prefs, "xosd_interface", "font", OSD_FONT);
osd_color = prefs_get_string(ap_prefs, "xosd_interface", "color", OSD_COLOR);
osd_outl_color = prefs_get_string(ap_prefs, "xosd_interface", "outline_color", OSD_OUTL_COLOR);
osd_shadow = prefs_get_int(ap_prefs, "xosd_interface", "shadow", OSD_SHADOW);
osd_outl_off = prefs_get_int(ap_prefs, "xosd_interface", "outline_offset", OSD_OUTL_OFF);
osd_h_off = prefs_get_int(ap_prefs, "xosd_interface", "h_offset", OSD_H_OFF);
osd_v_off = prefs_get_int(ap_prefs, "xosd_interface", "v_offset", OSD_V_OFF);
osd_timeout = prefs_get_int(ap_prefs, "xosd_interface", "timeout", OSD_TIMEOUT);
return 1;
}
int daemon_running()
{
if (pthread_mutex_trylock(&finish_mutex) != 0)
return 1;
pthread_mutex_unlock(&finish_mutex);
return 0;
}
int daemon_stop()
{
finished = true;
return 1;
}
void daemon_close()
{
pthread_mutex_destroy(&finish_mutex);
return;
}
static void displayStreamInfo(CorePlayer *coreplayer)
{
stream_info info;
// create xosd display on demand
// reason: we might not be running under X11 yet
if (!osd)
{
if ((osd = xosd_create(2)) == NULL)
printf("osd creation failed: %s\n", xosd_error);
else
{
xosd_set_font(osd, osd_font);
xosd_set_shadow_offset(osd, osd_shadow);
xosd_set_colour(osd, osd_color);
xosd_set_outline_offset(osd, osd_outl_off);
xosd_set_outline_colour(osd, osd_outl_color);
xosd_set_pos(osd, XOSD_top);
xosd_set_vertical_offset(osd, osd_v_off);
xosd_set_align(osd, XOSD_left);
xosd_set_horizontal_offset(osd, osd_h_off);
xosd_set_timeout(osd, osd_timeout);
}
}
if (osd)
{
coreplayer->GetStreamInfo(&info);
if (*info.artist)
xosd_display(osd, 0, XOSD_string, info.artist);
if (*info.title)
xosd_display(osd, 1, XOSD_string, info.title);
else
xosd_display(osd, 1, XOSD_string, "Playing unknown title");
xosd_wait_until_no_display(osd);
}
}
int daemon_start(Playlist *playlist, int argc, char **argv)
{
char session_name[AP_SESSION_MAX];
CorePlayer *coreplayer;
int pos = -1, pos_old = -1;
finished = false;
playlist->Clear();
playlist->UnPause();
// The notifier is here only for convenience
memset(¬ifier, 0, sizeof(notifier));
notifier.stop_notify = stop_notify;
playlist->RegisterNotifier(¬ifier, NULL);
pthread_mutex_lock(&finish_mutex);
// Wait on socket thread
while (global_session_id < 0) {
dosleep(10000);
}
//printf("Session %d is starting.\n", global_session_id);
while (!ap_ping(global_session_id)) {
dosleep(100000);
}
if (ap_get_session_name(global_session_id, session_name)) {
printf("Session \"%s\" is ready.\n", session_name);
}
while (!finished)
{
coreplayer = playlist->GetCorePlayer();
while (coreplayer->IsActive() || coreplayer->IsPlaying())
{
pos_old = pos;
pos = playlist->GetCurrent();
if (pos != pos_old)
displayStreamInfo(coreplayer);
dosleep(1000000);
}
if (!finished)
dosleep(1000000);
}
if (osd)
{
xosd_destroy(osd);
osd = NULL;
}
pthread_mutex_unlock(&finish_mutex);
playlist->UnRegisterNotifier(¬ifier);
return 0;
}
static interface_plugin daemon_plugin =
{
INTERFACE_PLUGIN_VERSION,
"XOSD DAEMON interface v0.2",
"Frank Baumgart",
NULL,
daemon_init,
daemon_start,
daemon_running,
daemon_stop,
daemon_close
};
#ifdef __cplusplus
extern "C" {
#endif
interface_plugin *interface_plugin_info()
{
return &daemon_plugin;
}
#ifdef __cplusplus
}
#endif
|