2009-07-28 21:44:22 +00:00
|
|
|
/* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
|
2009-09-12 10:50:51 +00:00
|
|
|
* vim: ts=4 sw=4 noet ai cindent syntax=c
|
2009-07-28 21:44:22 +00:00
|
|
|
*
|
|
|
|
* MOC Conky integration
|
2008-09-24 20:53:58 +00:00
|
|
|
*
|
|
|
|
* Please see COPYING for details
|
|
|
|
*
|
|
|
|
* Copyright (c) 2008, Henri Häkkinen
|
|
|
|
*
|
|
|
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
2008-09-24 20:56:09 +00:00
|
|
|
*
|
2008-12-09 23:35:49 +00:00
|
|
|
*/
|
2008-09-24 20:53:58 +00:00
|
|
|
|
|
|
|
#include "conky.h"
|
2008-12-15 21:40:24 +00:00
|
|
|
#include "logging.h"
|
2008-09-24 20:53:58 +00:00
|
|
|
#include "moc.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2008-12-22 18:31:48 +00:00
|
|
|
#define xfree(x) if (x) free(x); x = 0
|
|
|
|
|
|
|
|
struct moc_s moc;
|
|
|
|
static timed_thread *moc_thread = NULL;
|
|
|
|
|
|
|
|
void free_moc(void)
|
2008-09-24 20:53:58 +00:00
|
|
|
{
|
2008-12-22 18:31:48 +00:00
|
|
|
xfree(moc.state);
|
|
|
|
xfree(moc.file);
|
|
|
|
xfree(moc.title);
|
|
|
|
xfree(moc.artist);
|
|
|
|
xfree(moc.song);
|
|
|
|
xfree(moc.album);
|
|
|
|
xfree(moc.totaltime);
|
|
|
|
xfree(moc.timeleft);
|
|
|
|
xfree(moc.curtime);
|
|
|
|
xfree(moc.bitrate);
|
|
|
|
xfree(moc.rate);
|
2008-09-24 20:53:58 +00:00
|
|
|
}
|
|
|
|
|
2008-12-22 18:31:48 +00:00
|
|
|
static void update_infos(void)
|
2008-09-24 20:53:58 +00:00
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
|
2008-12-22 18:31:48 +00:00
|
|
|
free_moc();
|
2008-09-24 20:53:58 +00:00
|
|
|
fp = popen("mocp -i", "r");
|
|
|
|
if (!fp) {
|
2008-12-22 18:31:48 +00:00
|
|
|
moc.state = strndup("Can't run 'mocp -i'", text_buffer_size);
|
2008-09-24 20:53:58 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
char line[100];
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
/* Read a line from the pipe and strip the possible '\n'. */
|
|
|
|
if (!fgets(line, 100, fp))
|
|
|
|
break;
|
|
|
|
if ((p = strrchr(line, '\n')))
|
|
|
|
*p = '\0';
|
|
|
|
|
|
|
|
/* Parse infos. */
|
|
|
|
if (strncmp(line, "State:", 6) == 0)
|
2008-12-22 18:31:48 +00:00
|
|
|
moc.state = strndup(line + 7, text_buffer_size);
|
2008-09-24 20:53:58 +00:00
|
|
|
else if (strncmp(line, "File:", 5) == 0)
|
2008-12-22 18:31:48 +00:00
|
|
|
moc.file = strndup(line + 6, text_buffer_size);
|
2008-09-24 20:53:58 +00:00
|
|
|
else if (strncmp(line, "Title:", 6) == 0)
|
2008-12-22 18:31:48 +00:00
|
|
|
moc.title = strndup(line + 7, text_buffer_size);
|
2008-09-24 20:53:58 +00:00
|
|
|
else if (strncmp(line, "Artist:", 7) == 0)
|
2008-12-22 18:31:48 +00:00
|
|
|
moc.artist = strndup(line + 8, text_buffer_size);
|
2008-09-24 20:53:58 +00:00
|
|
|
else if (strncmp(line, "SongTitle:", 10) == 0)
|
2008-12-22 18:31:48 +00:00
|
|
|
moc.song = strndup(line + 11, text_buffer_size);
|
2008-09-24 20:53:58 +00:00
|
|
|
else if (strncmp(line, "Album:", 6) == 0)
|
2008-12-22 18:31:48 +00:00
|
|
|
moc.album = strndup(line + 7, text_buffer_size);
|
2008-09-24 20:53:58 +00:00
|
|
|
else if (strncmp(line, "TotalTime:", 10) == 0)
|
2008-12-22 18:31:48 +00:00
|
|
|
moc.totaltime = strndup(line + 11, text_buffer_size);
|
2008-09-24 20:53:58 +00:00
|
|
|
else if (strncmp(line, "TimeLeft:", 9) == 0)
|
2008-12-22 18:31:48 +00:00
|
|
|
moc.timeleft = strndup(line + 10, text_buffer_size);
|
2008-09-24 20:53:58 +00:00
|
|
|
else if (strncmp(line, "CurrentTime:", 12) == 0)
|
2008-12-22 18:31:48 +00:00
|
|
|
moc.curtime = strndup(line + 13, text_buffer_size);
|
2008-09-24 20:53:58 +00:00
|
|
|
else if (strncmp(line, "Bitrate:", 8) == 0)
|
2008-12-22 18:31:48 +00:00
|
|
|
moc.bitrate = strndup(line + 9, text_buffer_size);
|
2008-09-24 20:53:58 +00:00
|
|
|
else if (strncmp(line, "Rate:", 5) == 0)
|
2008-12-22 18:31:48 +00:00
|
|
|
moc.rate = strndup(line + 6, text_buffer_size);
|
2008-09-24 20:53:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pclose(fp);
|
|
|
|
}
|
|
|
|
|
2009-09-09 20:56:10 +00:00
|
|
|
static void *update_moc_loop(void *) __attribute__((noreturn));
|
2008-12-22 18:31:48 +00:00
|
|
|
|
2009-09-09 20:56:10 +00:00
|
|
|
static void *update_moc_loop(void *arg)
|
2008-09-24 20:53:58 +00:00
|
|
|
{
|
2008-12-22 18:31:48 +00:00
|
|
|
(void)arg;
|
2008-09-24 20:53:58 +00:00
|
|
|
|
|
|
|
while (1) {
|
2008-12-22 18:31:48 +00:00
|
|
|
timed_thread_lock(moc_thread);
|
|
|
|
update_infos();
|
|
|
|
timed_thread_unlock(moc_thread);
|
|
|
|
if (timed_thread_test(moc_thread, 0)) {
|
|
|
|
timed_thread_exit(moc_thread);
|
2008-09-24 20:53:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* never reached */
|
|
|
|
}
|
|
|
|
|
2009-09-06 22:14:54 +00:00
|
|
|
static int run_moc_thread(double interval)
|
2008-09-24 20:53:58 +00:00
|
|
|
{
|
2008-12-22 18:31:48 +00:00
|
|
|
if (moc_thread)
|
|
|
|
return 0;
|
|
|
|
|
2009-09-09 20:56:10 +00:00
|
|
|
moc_thread = timed_thread_create(&update_moc_loop, NULL, interval);
|
2008-12-22 18:31:48 +00:00
|
|
|
if (!moc_thread) {
|
2009-08-01 18:45:43 +00:00
|
|
|
NORM_ERR("Failed to create MOC timed thread");
|
2008-12-22 18:31:48 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
timed_thread_register(moc_thread, &moc_thread);
|
|
|
|
if (timed_thread_run(moc_thread)) {
|
2009-08-01 18:45:43 +00:00
|
|
|
NORM_ERR("Failed to run MOC timed thread");
|
2008-12-22 18:31:48 +00:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
return 0;
|
2008-09-24 20:53:58 +00:00
|
|
|
}
|
|
|
|
|
2009-09-06 22:14:54 +00:00
|
|
|
void update_moc(void)
|
|
|
|
{
|
|
|
|
run_moc_thread(info.music_player_interval * 100000);
|
|
|
|
}
|