2016-12-26 13:30:29 -05:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Espen Jürgensen <espenjurgensen@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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2019-02-16 13:34:36 -05:00
|
|
|
#include <stdbool.h>
|
2016-12-26 13:30:29 -05:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
|
|
|
#include <event2/event.h>
|
|
|
|
#include <event2/buffer.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#ifdef HAVE_PTHREAD_NP_H
|
|
|
|
# include <pthread_np.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "misc.h"
|
|
|
|
#include "logger.h"
|
2019-02-16 13:34:36 -05:00
|
|
|
#include "commands.h"
|
2016-12-26 13:30:29 -05:00
|
|
|
#include "input.h"
|
|
|
|
|
|
|
|
// Disallow further writes to the buffer when its size is larger than this threshold
|
2019-01-13 18:17:02 -05:00
|
|
|
// TODO untie from 44100
|
2019-02-08 13:03:09 -05:00
|
|
|
#define INPUT_BUFFER_THRESHOLD STOB(88200, 16, 2)
|
2017-01-15 17:25:00 -05:00
|
|
|
// How long (in sec) to wait for player read before looping in playback thread
|
|
|
|
#define INPUT_LOOP_TIMEOUT 1
|
2016-12-26 13:30:29 -05:00
|
|
|
|
|
|
|
#define DEBUG 1 //TODO disable
|
|
|
|
|
|
|
|
extern struct input_definition input_file;
|
|
|
|
extern struct input_definition input_http;
|
2017-01-14 17:35:19 -05:00
|
|
|
extern struct input_definition input_pipe;
|
2016-12-28 18:39:23 -05:00
|
|
|
#ifdef HAVE_SPOTIFY_H
|
|
|
|
extern struct input_definition input_spotify;
|
|
|
|
#endif
|
2016-12-26 13:30:29 -05:00
|
|
|
|
|
|
|
// Must be in sync with enum input_types
|
|
|
|
static struct input_definition *inputs[] = {
|
|
|
|
&input_file,
|
|
|
|
&input_http,
|
2017-01-14 17:35:19 -05:00
|
|
|
&input_pipe,
|
2016-12-28 18:39:23 -05:00
|
|
|
#ifdef HAVE_SPOTIFY_H
|
|
|
|
&input_spotify,
|
|
|
|
#endif
|
2016-12-26 13:30:29 -05:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2019-01-13 18:17:02 -05:00
|
|
|
struct marker
|
|
|
|
{
|
|
|
|
uint64_t pos; // Position of marker measured in bytes
|
2019-02-08 13:03:09 -05:00
|
|
|
struct media_quality quality;
|
2019-01-13 18:17:02 -05:00
|
|
|
enum input_flags flags;
|
|
|
|
|
|
|
|
// Reverse linked list, yay!
|
|
|
|
struct marker *prev;
|
|
|
|
};
|
|
|
|
|
2016-12-26 13:30:29 -05:00
|
|
|
struct input_buffer
|
|
|
|
{
|
|
|
|
// Raw pcm stream data
|
|
|
|
struct evbuffer *evbuf;
|
|
|
|
|
2019-01-13 18:17:02 -05:00
|
|
|
// If an input makes a write with a flag or a changed sample rate etc, we add
|
|
|
|
// a marker to head, and when we read we check from the tail to see if there
|
|
|
|
// are updates to the player.
|
|
|
|
struct marker *marker_tail;
|
2016-12-26 13:30:29 -05:00
|
|
|
|
2017-01-15 17:25:00 -05:00
|
|
|
// Optional callback to player if buffer is full
|
|
|
|
input_cb full_cb;
|
|
|
|
|
2019-01-13 18:17:02 -05:00
|
|
|
// Quality of write/read data
|
2019-02-08 13:03:09 -05:00
|
|
|
struct media_quality cur_write_quality;
|
|
|
|
struct media_quality cur_read_quality;
|
2019-01-13 18:17:02 -05:00
|
|
|
|
|
|
|
size_t bytes_written;
|
|
|
|
size_t bytes_read;
|
|
|
|
|
2016-12-26 13:30:29 -05:00
|
|
|
// Locks for sharing the buffer between input and player thread
|
|
|
|
pthread_mutex_t mutex;
|
|
|
|
pthread_cond_t cond;
|
|
|
|
};
|
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
struct input_arg
|
|
|
|
{
|
|
|
|
uint32_t item_id;
|
|
|
|
int seek_ms;
|
|
|
|
struct input_metadata *metadata;
|
|
|
|
};
|
|
|
|
|
2016-12-26 13:30:29 -05:00
|
|
|
/* --- Globals --- */
|
|
|
|
// Input thread
|
|
|
|
static pthread_t tid_input;
|
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
// Event base, cmdbase and event we use to iterate in the playback loop
|
|
|
|
static struct event_base *evbase_input;
|
|
|
|
static struct commands_base *cmdbase;
|
|
|
|
static struct event *inputev;
|
|
|
|
static bool input_initialized;
|
|
|
|
|
|
|
|
// The source we are reading now
|
|
|
|
static struct input_source input_now_reading;
|
|
|
|
|
2016-12-26 13:30:29 -05:00
|
|
|
// Input buffer
|
|
|
|
static struct input_buffer input_buffer;
|
|
|
|
|
2017-01-15 17:25:00 -05:00
|
|
|
// Timeout waiting in playback loop
|
|
|
|
static struct timespec input_loop_timeout = { INPUT_LOOP_TIMEOUT, 0 };
|
|
|
|
|
2016-12-26 13:30:29 -05:00
|
|
|
#ifdef DEBUG
|
|
|
|
static size_t debug_elapsed;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
/* ------------------------------- MISC HELPERS ----------------------------- */
|
2016-12-26 13:30:29 -05:00
|
|
|
|
|
|
|
static int
|
|
|
|
map_data_kind(int data_kind)
|
|
|
|
{
|
|
|
|
switch (data_kind)
|
|
|
|
{
|
|
|
|
case DATA_KIND_FILE:
|
|
|
|
return INPUT_TYPE_FILE;
|
|
|
|
|
|
|
|
case DATA_KIND_HTTP:
|
|
|
|
return INPUT_TYPE_HTTP;
|
|
|
|
|
2017-01-14 17:35:19 -05:00
|
|
|
case DATA_KIND_PIPE:
|
|
|
|
return INPUT_TYPE_PIPE;
|
|
|
|
|
2016-12-28 18:39:23 -05:00
|
|
|
#ifdef HAVE_SPOTIFY_H
|
|
|
|
case DATA_KIND_SPOTIFY:
|
|
|
|
return INPUT_TYPE_SPOTIFY;
|
|
|
|
#endif
|
|
|
|
|
2016-12-26 13:30:29 -05:00
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-13 18:17:02 -05:00
|
|
|
static void
|
2019-02-16 13:34:36 -05:00
|
|
|
marker_add(size_t pos, short flags)
|
2019-01-13 18:17:02 -05:00
|
|
|
{
|
|
|
|
struct marker *head;
|
|
|
|
struct marker *marker;
|
|
|
|
|
|
|
|
CHECK_NULL(L_PLAYER, marker = calloc(1, sizeof(struct marker)));
|
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
marker->pos = pos;
|
2019-01-13 18:17:02 -05:00
|
|
|
marker->quality = input_buffer.cur_write_quality;
|
|
|
|
marker->flags = flags;
|
|
|
|
|
|
|
|
for (head = input_buffer.marker_tail; head && head->prev; head = head->prev)
|
|
|
|
; // Fast forward to the head
|
|
|
|
|
|
|
|
if (!head)
|
|
|
|
input_buffer.marker_tail = marker;
|
|
|
|
else
|
|
|
|
head->prev = marker;
|
|
|
|
}
|
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
|
|
|
|
/* ------------------------- INPUT SOURCE HANDLING -------------------------- */
|
|
|
|
|
|
|
|
static void
|
|
|
|
clear(struct input_source *source)
|
2016-12-26 13:30:29 -05:00
|
|
|
{
|
2019-02-16 13:34:36 -05:00
|
|
|
free(source->path);
|
|
|
|
memset(source, 0, sizeof(struct input_source));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
flush(short *flags)
|
|
|
|
{
|
|
|
|
struct marker *marker;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
pthread_mutex_lock(&input_buffer.mutex);
|
|
|
|
|
|
|
|
// We will return an OR of all the unread marker flags
|
|
|
|
*flags = 0;
|
|
|
|
for (marker = input_buffer.marker_tail; marker; marker = input_buffer.marker_tail)
|
|
|
|
{
|
|
|
|
*flags |= marker->flags;
|
|
|
|
input_buffer.marker_tail = marker->prev;
|
|
|
|
free(marker);
|
|
|
|
}
|
|
|
|
|
|
|
|
len = evbuffer_get_length(input_buffer.evbuf);
|
|
|
|
|
|
|
|
evbuffer_drain(input_buffer.evbuf, len);
|
|
|
|
|
|
|
|
memset(&input_buffer.cur_read_quality, 0, sizeof(struct media_quality));
|
|
|
|
memset(&input_buffer.cur_write_quality, 0, sizeof(struct media_quality));
|
|
|
|
|
|
|
|
input_buffer.bytes_read = 0;
|
|
|
|
input_buffer.bytes_written = 0;
|
|
|
|
|
|
|
|
input_buffer.full_cb = NULL;
|
|
|
|
|
|
|
|
pthread_mutex_unlock(&input_buffer.mutex);
|
2016-12-26 13:30:29 -05:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
2019-02-16 13:34:36 -05:00
|
|
|
DPRINTF(E_DBG, L_PLAYER, "Flushing %zu bytes with flags %d\n", len, *flags);
|
2016-12-26 13:30:29 -05:00
|
|
|
#endif
|
2019-02-16 13:34:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static enum command_state
|
|
|
|
stop(void *arg, int *retval)
|
|
|
|
{
|
|
|
|
short flags;
|
|
|
|
int type;
|
|
|
|
|
|
|
|
event_del(inputev);
|
|
|
|
|
|
|
|
type = input_now_reading.type;
|
|
|
|
|
|
|
|
if (inputs[type]->stop)
|
|
|
|
inputs[type]->stop(&input_now_reading);
|
|
|
|
|
|
|
|
flush(&flags);
|
|
|
|
|
|
|
|
clear(&input_now_reading);
|
2016-12-26 13:30:29 -05:00
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
*retval = 0;
|
|
|
|
return COMMAND_END;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
seek(struct input_source *source, int seek_ms)
|
|
|
|
{
|
|
|
|
if (seek_ms > 0 && inputs[source->type]->seek)
|
|
|
|
return inputs[source->type]->seek(source, seek_ms);
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// On error returns -1, on success + seek given + seekable returns the position
|
|
|
|
// that the seek gave us, otherwise returns 0.
|
|
|
|
static int
|
|
|
|
setup(struct input_source *source, struct db_queue_item *queue_item, int seek_ms)
|
|
|
|
{
|
|
|
|
int type;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
type = map_data_kind(queue_item->data_kind);
|
|
|
|
if ((type < 0) || (inputs[type]->disabled))
|
|
|
|
goto setup_error;
|
|
|
|
|
|
|
|
source->type = type;
|
|
|
|
source->data_kind = queue_item->data_kind;
|
|
|
|
source->media_kind = queue_item->media_kind;
|
|
|
|
source->item_id = queue_item->id;
|
|
|
|
source->id = queue_item->file_id;
|
|
|
|
source->len_ms = queue_item->song_length;
|
|
|
|
source->path = safe_strdup(queue_item->path);
|
|
|
|
|
|
|
|
DPRINTF(E_DBG, L_PLAYER, "Setting up input item '%s' (item id %" PRIu32 ")\n", source->path, source->item_id);
|
|
|
|
|
|
|
|
if (inputs[type]->setup)
|
2016-12-26 13:30:29 -05:00
|
|
|
{
|
2019-02-16 13:34:36 -05:00
|
|
|
ret = inputs[type]->setup(source);
|
|
|
|
if (ret < 0)
|
|
|
|
goto setup_error;
|
2016-12-26 13:30:29 -05:00
|
|
|
}
|
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
source->open = true;
|
|
|
|
|
|
|
|
ret = seek(source, seek_ms);
|
|
|
|
if (ret < 0)
|
|
|
|
goto seek_error;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
seek_error:
|
|
|
|
stop(NULL, NULL);
|
|
|
|
setup_error:
|
|
|
|
clear(source);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static enum command_state
|
|
|
|
start(void *arg, int *retval)
|
|
|
|
{
|
|
|
|
struct input_arg *cmdarg = arg;
|
|
|
|
struct db_queue_item *queue_item;
|
|
|
|
short flags;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
// If we are asked to start the item that is currently open we can just seek
|
|
|
|
if (input_now_reading.open && cmdarg->item_id == input_now_reading.item_id)
|
2016-12-26 13:30:29 -05:00
|
|
|
{
|
2019-02-16 13:34:36 -05:00
|
|
|
flush(&flags);
|
2016-12-26 13:30:29 -05:00
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
ret = seek(&input_now_reading, cmdarg->seek_ms);
|
|
|
|
if (ret < 0)
|
|
|
|
DPRINTF(E_WARN, L_PLAYER, "Ignoring failed seek to %d ms in '%s'\n", cmdarg->seek_ms, input_now_reading.path);
|
|
|
|
}
|
|
|
|
else
|
2016-12-26 13:30:29 -05:00
|
|
|
{
|
2019-02-16 13:34:36 -05:00
|
|
|
if (input_now_reading.open)
|
|
|
|
stop(NULL, NULL);
|
|
|
|
|
|
|
|
// Get the queue_item from the db
|
|
|
|
queue_item = db_queue_fetch_byitemid(cmdarg->item_id);
|
|
|
|
if (!queue_item)
|
|
|
|
{
|
|
|
|
DPRINTF(E_LOG, L_PLAYER, "Input start was called with an item id that has disappeared (id=%d)\n", cmdarg->item_id);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = setup(&input_now_reading, queue_item, cmdarg->seek_ms);
|
|
|
|
free_queue_item(queue_item, 0);
|
|
|
|
if (ret < 0)
|
|
|
|
goto error;
|
2016-12-26 13:30:29 -05:00
|
|
|
}
|
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
DPRINTF(E_DBG, L_PLAYER, "Starting input read loop for item '%s' (item id %" PRIu32 "), seek %d\n",
|
|
|
|
input_now_reading.path, input_now_reading.item_id, cmdarg->seek_ms);
|
2016-12-26 13:30:29 -05:00
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
event_active(inputev, 0, 0);
|
2016-12-26 13:30:29 -05:00
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
*retval = ret; // Return is the seek result
|
|
|
|
return COMMAND_END;
|
|
|
|
|
|
|
|
error:
|
|
|
|
input_write(NULL, NULL, INPUT_FLAG_ERROR);
|
|
|
|
clear(&input_now_reading);
|
|
|
|
*retval = -1;
|
|
|
|
return COMMAND_END;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
static enum command_state
|
|
|
|
next(void *arg, int *retval)
|
2016-12-26 13:30:29 -05:00
|
|
|
{
|
2019-02-16 13:34:36 -05:00
|
|
|
struct player_status status;
|
|
|
|
struct db_queue_item *queue_item;
|
|
|
|
uint32_t item_id;
|
2016-12-26 13:30:29 -05:00
|
|
|
int type;
|
2017-03-11 13:23:49 -05:00
|
|
|
int ret;
|
2016-12-26 13:30:29 -05:00
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
// We may have finished reading source way before end of playback, and we
|
|
|
|
// don't want to proceed prematurely. So we wait until the input buffer is
|
|
|
|
// below the write threshold.
|
|
|
|
ret = input_wait();
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
input_next(); // Async call to ourselves
|
|
|
|
return;
|
|
|
|
}
|
2016-12-26 13:30:29 -05:00
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
item_id = input_now_reading.item_id;
|
|
|
|
|
|
|
|
// Cleans up the source that has ended/failed and clears input_now_reading
|
|
|
|
stop(NULL, NULL);
|
|
|
|
|
|
|
|
player_get_status(&status);
|
|
|
|
|
|
|
|
// TODO what about repeat/repeat_all? Maybe move next() to player that can
|
|
|
|
// just call input_start()
|
|
|
|
|
|
|
|
// Get the next queue_item from the db
|
|
|
|
queue_item = db_queue_fetch_next(item_id, status.shuffle);
|
|
|
|
if (!queue_item)
|
|
|
|
{
|
|
|
|
DPRINTF(E_DBG, L_PLAYER, "Reached end of playback queue\n");
|
|
|
|
*retval = 0;
|
|
|
|
return COMMAND_END;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = setup(&input_now_reading, queue_item, 0);
|
|
|
|
free_queue_item(queue_item, 0);
|
2017-03-11 13:23:49 -05:00
|
|
|
if (ret < 0)
|
2019-02-16 13:34:36 -05:00
|
|
|
goto error;
|
2016-12-26 13:30:29 -05:00
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
DPRINTF(E_DBG, L_PLAYER, "Continuing input read loop for item '%s' (item id %" PRIu32 ")\n", input_now_reading.path, input_now_reading.item_id);
|
2016-12-26 13:30:29 -05:00
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
event_active(inputev, 0, 0);
|
|
|
|
|
|
|
|
*retval = 0;
|
|
|
|
return COMMAND_END;
|
|
|
|
|
|
|
|
error:
|
|
|
|
input_write(NULL, NULL, INPUT_FLAG_ERROR);
|
|
|
|
clear(&input_now_reading);
|
|
|
|
*retval = -1;
|
|
|
|
return COMMAND_END;
|
2016-12-26 13:30:29 -05:00
|
|
|
}
|
2019-02-16 13:34:36 -05:00
|
|
|
*/
|
2016-12-26 13:30:29 -05:00
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
static enum command_state
|
|
|
|
metadata_get(void *arg, int *retval)
|
2016-12-28 18:39:23 -05:00
|
|
|
{
|
2019-02-16 13:34:36 -05:00
|
|
|
struct input_arg *cmdarg = arg;
|
|
|
|
int type;
|
2017-01-15 17:25:00 -05:00
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
if (!input_now_reading.open)
|
|
|
|
{
|
|
|
|
DPRINTF(E_WARN, L_PLAYER, "Source is no longer available for input_metadata_get()\n");
|
|
|
|
goto error;
|
|
|
|
}
|
2017-01-15 17:25:00 -05:00
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
type = input_now_reading.type;
|
|
|
|
if ((type < 0) || (inputs[type]->disabled))
|
|
|
|
goto error;
|
2016-12-28 18:39:23 -05:00
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
if (inputs[type]->metadata_get)
|
|
|
|
*retval = inputs[type]->metadata_get(cmdarg->metadata, &input_now_reading);
|
|
|
|
else
|
|
|
|
*retval = 0;
|
|
|
|
|
|
|
|
return COMMAND_END;
|
|
|
|
|
|
|
|
error:
|
|
|
|
*retval = -1;
|
|
|
|
return COMMAND_END;
|
2016-12-28 18:39:23 -05:00
|
|
|
}
|
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
|
|
|
|
/* ---------------------- Interface towards input backends ------------------ */
|
|
|
|
/* Thread: input and spotify */
|
|
|
|
|
2016-12-26 13:30:29 -05:00
|
|
|
// Called by input modules from within the playback loop
|
|
|
|
int
|
2019-02-08 13:03:09 -05:00
|
|
|
input_write(struct evbuffer *evbuf, struct media_quality *quality, short flags)
|
2016-12-26 13:30:29 -05:00
|
|
|
{
|
2019-02-16 13:34:36 -05:00
|
|
|
bool read_end;
|
2016-12-26 13:30:29 -05:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
pthread_mutex_lock(&input_buffer.mutex);
|
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
read_end = (flags & (INPUT_FLAG_EOF | INPUT_FLAG_ERROR));
|
|
|
|
|
|
|
|
if ((evbuffer_get_length(input_buffer.evbuf) > INPUT_BUFFER_THRESHOLD) && evbuf)
|
2016-12-26 13:30:29 -05:00
|
|
|
{
|
2017-01-15 17:25:00 -05:00
|
|
|
if (input_buffer.full_cb)
|
|
|
|
{
|
|
|
|
input_buffer.full_cb();
|
|
|
|
input_buffer.full_cb = NULL;
|
|
|
|
}
|
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
// In case of EOF or error the input is always allowed to write, even if the
|
|
|
|
// buffer is full. There is no point in holding back the input in that case.
|
|
|
|
if (!read_end)
|
2016-12-26 13:30:29 -05:00
|
|
|
{
|
|
|
|
pthread_mutex_unlock(&input_buffer.mutex);
|
|
|
|
return EAGAIN;
|
|
|
|
}
|
|
|
|
}
|
2017-03-11 13:23:49 -05:00
|
|
|
|
2019-02-08 13:03:09 -05:00
|
|
|
if (quality && !quality_is_equal(quality, &input_buffer.cur_write_quality))
|
2019-01-13 18:17:02 -05:00
|
|
|
{
|
|
|
|
input_buffer.cur_write_quality = *quality;
|
2019-02-16 13:34:36 -05:00
|
|
|
marker_add(input_buffer.bytes_written, INPUT_FLAG_QUALITY);
|
2019-01-13 18:17:02 -05:00
|
|
|
}
|
2016-12-26 13:30:29 -05:00
|
|
|
|
2019-01-13 18:17:02 -05:00
|
|
|
ret = 0;
|
|
|
|
if (evbuf)
|
|
|
|
{
|
|
|
|
input_buffer.bytes_written += evbuffer_get_length(evbuf);
|
|
|
|
ret = evbuffer_add_buffer(input_buffer.evbuf, evbuf);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
2019-02-16 13:34:36 -05:00
|
|
|
DPRINTF(E_LOG, L_PLAYER, "Error adding stream data to input buffer, stopping\n");
|
|
|
|
input_stop();
|
2019-01-13 18:17:02 -05:00
|
|
|
flags |= INPUT_FLAG_ERROR;
|
|
|
|
}
|
|
|
|
}
|
2017-03-11 13:23:49 -05:00
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
if (flags)
|
|
|
|
{
|
|
|
|
if (input_buffer.bytes_written > INPUT_BUFFER_THRESHOLD)
|
|
|
|
marker_add(input_buffer.bytes_written - INPUT_BUFFER_THRESHOLD, INPUT_FLAG_START_NEXT);
|
|
|
|
else
|
|
|
|
marker_add(input_buffer.bytes_written, INPUT_FLAG_START_NEXT);
|
|
|
|
|
|
|
|
// Note this marker is added at the post-write position, since EOF, error
|
|
|
|
// and metadata belong there.
|
|
|
|
marker_add(input_buffer.bytes_written, flags);
|
|
|
|
}
|
2017-03-11 13:23:49 -05:00
|
|
|
|
2016-12-26 13:30:29 -05:00
|
|
|
pthread_mutex_unlock(&input_buffer.mutex);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
int
|
|
|
|
input_wait(void)
|
|
|
|
{
|
|
|
|
struct timespec ts;
|
|
|
|
|
|
|
|
pthread_mutex_lock(&input_buffer.mutex);
|
|
|
|
|
|
|
|
ts = timespec_reltoabs(input_loop_timeout);
|
|
|
|
pthread_cond_timedwait(&input_buffer.cond, &input_buffer.mutex, &ts);
|
|
|
|
|
|
|
|
// Is the buffer full?
|
|
|
|
if (evbuffer_get_length(input_buffer.evbuf) > INPUT_BUFFER_THRESHOLD)
|
|
|
|
{
|
|
|
|
pthread_mutex_unlock(&input_buffer.mutex);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
pthread_mutex_unlock(&input_buffer.mutex);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*void
|
|
|
|
input_next(void)
|
|
|
|
{
|
|
|
|
commands_exec_async(cmdbase, next, NULL);
|
|
|
|
}*/
|
|
|
|
|
|
|
|
/* ---------------------------------- MAIN ---------------------------------- */
|
|
|
|
/* Thread: input */
|
|
|
|
|
|
|
|
static void *
|
|
|
|
input(void *arg)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = db_perthread_init();
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
DPRINTF(E_LOG, L_MAIN, "Error: DB init failed (input thread)\n");
|
|
|
|
pthread_exit(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
input_initialized = true;
|
|
|
|
|
|
|
|
event_base_dispatch(evbase_input);
|
|
|
|
|
|
|
|
if (input_initialized)
|
|
|
|
{
|
|
|
|
DPRINTF(E_LOG, L_MAIN, "Input event loop terminated ahead of time!\n");
|
|
|
|
input_initialized = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
db_perthread_deinit();
|
|
|
|
|
|
|
|
pthread_exit(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
play(evutil_socket_t fd, short flags, void *arg)
|
|
|
|
{
|
|
|
|
struct timeval tv = { 0, 0 };
|
|
|
|
int ret;
|
2016-12-26 13:30:29 -05:00
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
// Spotify runs in its own thread, so no reading is done by the input thread,
|
|
|
|
// thus there is no reason to activate inputev
|
|
|
|
if (!inputs[input_now_reading.type]->play)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Return will be negative if there is an error or EOF. Here, we just don't
|
|
|
|
// loop any more. input_write() will pass the message to the player.
|
|
|
|
ret = inputs[input_now_reading.type]->play(&input_now_reading);
|
|
|
|
if (ret < 0)
|
|
|
|
return; // Error or EOF, so don't come back
|
|
|
|
|
|
|
|
event_add(inputev, &tv);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ---------------------- Interface towards player thread ------------------- */
|
|
|
|
/* Thread: player */
|
2016-12-26 13:30:29 -05:00
|
|
|
|
|
|
|
int
|
2017-01-13 18:43:03 -05:00
|
|
|
input_read(void *data, size_t size, short *flags)
|
2016-12-26 13:30:29 -05:00
|
|
|
{
|
2019-01-13 18:17:02 -05:00
|
|
|
struct marker *marker;
|
2016-12-26 13:30:29 -05:00
|
|
|
int len;
|
|
|
|
|
|
|
|
*flags = 0;
|
|
|
|
|
|
|
|
pthread_mutex_lock(&input_buffer.mutex);
|
|
|
|
|
2019-01-13 18:17:02 -05:00
|
|
|
// First we check if there is a marker in the requested samples. If there is,
|
|
|
|
// we only return data up until that marker. That way we don't have to deal
|
|
|
|
// with multiple markers, and we don't return data that contains mixed sample
|
|
|
|
// rates, bits per sample or an EOF in the middle.
|
|
|
|
marker = input_buffer.marker_tail;
|
2019-02-10 17:16:46 -05:00
|
|
|
if (marker && marker->pos <= input_buffer.bytes_read + size)
|
2016-12-26 13:30:29 -05:00
|
|
|
{
|
2019-01-13 18:17:02 -05:00
|
|
|
*flags = marker->flags;
|
|
|
|
if (*flags & INPUT_FLAG_QUALITY)
|
|
|
|
input_buffer.cur_read_quality = marker->quality;
|
|
|
|
|
|
|
|
size = marker->pos - input_buffer.bytes_read;
|
|
|
|
input_buffer.marker_tail = marker->prev;
|
|
|
|
free(marker);
|
2016-12-26 13:30:29 -05:00
|
|
|
}
|
|
|
|
|
2017-01-13 18:43:03 -05:00
|
|
|
len = evbuffer_remove(input_buffer.evbuf, data, size);
|
2016-12-26 13:30:29 -05:00
|
|
|
if (len < 0)
|
|
|
|
{
|
|
|
|
DPRINTF(E_LOG, L_PLAYER, "Error reading stream data from input buffer\n");
|
2019-01-13 18:17:02 -05:00
|
|
|
*flags |= INPUT_FLAG_ERROR;
|
2016-12-26 13:30:29 -05:00
|
|
|
goto out_unlock;
|
|
|
|
}
|
|
|
|
|
2019-01-13 18:17:02 -05:00
|
|
|
input_buffer.bytes_read += len;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
// Logs if flags present or each 10 seconds
|
2019-02-08 13:03:09 -05:00
|
|
|
size_t one_sec_size = STOB(input_buffer.cur_read_quality.sample_rate, input_buffer.cur_read_quality.bits_per_sample, input_buffer.cur_read_quality.channels);
|
2019-01-13 18:17:02 -05:00
|
|
|
debug_elapsed += len;
|
2019-02-08 13:03:09 -05:00
|
|
|
if (*flags || (debug_elapsed > 10 * one_sec_size))
|
2019-01-13 18:17:02 -05:00
|
|
|
{
|
|
|
|
debug_elapsed = 0;
|
2019-02-08 13:03:09 -05:00
|
|
|
DPRINTF(E_SPAM, L_PLAYER, "READ %zu bytes (%d/%d/%d), WROTE %zu bytes (%d/%d/%d), SIZE %zu (=%zu), FLAGS %04x\n",
|
2019-01-13 18:17:02 -05:00
|
|
|
input_buffer.bytes_read,
|
|
|
|
input_buffer.cur_read_quality.sample_rate,
|
|
|
|
input_buffer.cur_read_quality.bits_per_sample,
|
2019-02-08 13:03:09 -05:00
|
|
|
input_buffer.cur_read_quality.channels,
|
2019-01-13 18:17:02 -05:00
|
|
|
input_buffer.bytes_written,
|
|
|
|
input_buffer.cur_write_quality.sample_rate,
|
|
|
|
input_buffer.cur_write_quality.bits_per_sample,
|
2019-02-08 13:03:09 -05:00
|
|
|
input_buffer.cur_write_quality.channels,
|
2019-01-13 18:17:02 -05:00
|
|
|
evbuffer_get_length(input_buffer.evbuf),
|
|
|
|
input_buffer.bytes_written - input_buffer.bytes_read,
|
|
|
|
*flags);
|
|
|
|
}
|
|
|
|
#endif
|
2016-12-26 13:30:29 -05:00
|
|
|
|
|
|
|
out_unlock:
|
|
|
|
pthread_cond_signal(&input_buffer.cond);
|
|
|
|
pthread_mutex_unlock(&input_buffer.mutex);
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2017-01-15 17:25:00 -05:00
|
|
|
void
|
|
|
|
input_buffer_full_cb(input_cb cb)
|
|
|
|
{
|
|
|
|
pthread_mutex_lock(&input_buffer.mutex);
|
|
|
|
input_buffer.full_cb = cb;
|
|
|
|
|
|
|
|
pthread_mutex_unlock(&input_buffer.mutex);
|
|
|
|
}
|
|
|
|
|
2016-12-26 13:30:29 -05:00
|
|
|
int
|
2019-02-16 13:34:36 -05:00
|
|
|
input_seek(uint32_t item_id, int seek_ms)
|
2016-12-26 13:30:29 -05:00
|
|
|
{
|
2019-02-16 13:34:36 -05:00
|
|
|
struct input_arg cmdarg;
|
2016-12-26 13:30:29 -05:00
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
cmdarg.item_id = item_id;
|
|
|
|
cmdarg.seek_ms = seek_ms;
|
2016-12-26 13:30:29 -05:00
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
return commands_exec_sync(cmdbase, start, NULL, &cmdarg);
|
2016-12-26 13:30:29 -05:00
|
|
|
}
|
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
void
|
|
|
|
input_start(uint32_t item_id)
|
2016-12-26 13:30:29 -05:00
|
|
|
{
|
2019-02-16 13:34:36 -05:00
|
|
|
struct input_arg *cmdarg;
|
2016-12-26 13:30:29 -05:00
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
CHECK_NULL(L_PLAYER, cmdarg = malloc(sizeof(struct input_arg)));
|
2016-12-26 13:30:29 -05:00
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
cmdarg->item_id = item_id;
|
|
|
|
cmdarg->seek_ms = 0;
|
2016-12-26 13:30:29 -05:00
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
commands_exec_async(cmdbase, start, cmdarg);
|
2016-12-26 13:30:29 -05:00
|
|
|
}
|
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
void
|
|
|
|
input_stop(void)
|
2016-12-26 13:30:29 -05:00
|
|
|
{
|
2019-02-16 13:34:36 -05:00
|
|
|
commands_exec_async(cmdbase, stop, NULL);
|
2016-12-26 13:30:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_flush(short *flags)
|
|
|
|
{
|
2019-02-16 13:34:36 -05:00
|
|
|
// Flush should be thread safe
|
|
|
|
flush(flags);
|
2016-12-26 13:30:29 -05:00
|
|
|
}
|
|
|
|
|
2019-01-13 18:17:02 -05:00
|
|
|
int
|
2019-02-08 13:03:09 -05:00
|
|
|
input_quality_get(struct media_quality *quality)
|
2019-01-13 18:17:02 -05:00
|
|
|
{
|
|
|
|
// No mutex, other threads should not be able to affect cur_read_quality
|
|
|
|
*quality = input_buffer.cur_read_quality;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-01-22 17:16:15 -05:00
|
|
|
int
|
2019-02-16 13:34:36 -05:00
|
|
|
input_metadata_get(struct input_metadata *metadata)
|
2017-01-22 17:16:15 -05:00
|
|
|
{
|
2019-02-16 13:34:36 -05:00
|
|
|
struct input_arg cmdarg;
|
2017-01-22 17:16:15 -05:00
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
cmdarg.metadata = metadata;
|
2017-01-22 17:16:15 -05:00
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
return commands_exec_sync(cmdbase, metadata_get, NULL, &cmdarg);
|
2017-01-22 17:16:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_metadata_free(struct input_metadata *metadata, int content_only)
|
|
|
|
{
|
|
|
|
free(metadata->artist);
|
|
|
|
free(metadata->title);
|
|
|
|
free(metadata->album);
|
2017-01-27 05:05:24 -05:00
|
|
|
free(metadata->genre);
|
2017-01-22 17:16:15 -05:00
|
|
|
free(metadata->artwork_url);
|
|
|
|
|
|
|
|
if (!content_only)
|
|
|
|
free(metadata);
|
2017-01-27 05:00:29 -05:00
|
|
|
else
|
|
|
|
memset(metadata, 0, sizeof(struct input_metadata));
|
2017-01-22 17:16:15 -05:00
|
|
|
}
|
|
|
|
|
2016-12-26 13:30:29 -05:00
|
|
|
int
|
|
|
|
input_init(void)
|
|
|
|
{
|
|
|
|
int no_input;
|
|
|
|
int ret;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
// Prepare input buffer
|
|
|
|
pthread_mutex_init(&input_buffer.mutex, NULL);
|
|
|
|
pthread_cond_init(&input_buffer.cond, NULL);
|
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
CHECK_NULL(L_PLAYER, evbase_input = event_base_new());
|
|
|
|
CHECK_NULL(L_PLAYER, input_buffer.evbuf = evbuffer_new());
|
|
|
|
CHECK_NULL(L_PLAYER, inputev = event_new(evbase_input, -1, EV_PERSIST, play, NULL));
|
2016-12-26 13:30:29 -05:00
|
|
|
|
|
|
|
no_input = 1;
|
|
|
|
for (i = 0; inputs[i]; i++)
|
|
|
|
{
|
|
|
|
if (inputs[i]->type != i)
|
|
|
|
{
|
|
|
|
DPRINTF(E_FATAL, L_PLAYER, "BUG! Input definitions are misaligned with input enum\n");
|
2019-02-16 13:34:36 -05:00
|
|
|
goto input_fail;
|
2016-12-26 13:30:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!inputs[i]->init)
|
|
|
|
{
|
|
|
|
no_input = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = inputs[i]->init();
|
|
|
|
if (ret < 0)
|
|
|
|
inputs[i]->disabled = 1;
|
|
|
|
else
|
|
|
|
no_input = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (no_input)
|
2019-02-16 13:34:36 -05:00
|
|
|
goto input_fail;
|
|
|
|
|
|
|
|
cmdbase = commands_base_new(evbase_input, NULL);
|
|
|
|
|
|
|
|
ret = pthread_create(&tid_input, NULL, input, NULL);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
DPRINTF(E_LOG, L_MAIN, "Could not spawn input thread: %s\n", strerror(errno));
|
|
|
|
goto thread_fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(HAVE_PTHREAD_SETNAME_NP)
|
|
|
|
pthread_setname_np(tid_input, "input");
|
|
|
|
#elif defined(HAVE_PTHREAD_SET_NAME_NP)
|
|
|
|
pthread_set_name_np(tid_input, "input");
|
|
|
|
#endif
|
2016-12-26 13:30:29 -05:00
|
|
|
|
|
|
|
return 0;
|
2019-02-16 13:34:36 -05:00
|
|
|
|
|
|
|
thread_fail:
|
|
|
|
commands_base_free(cmdbase);
|
|
|
|
input_fail:
|
|
|
|
event_free(inputev);
|
|
|
|
evbuffer_free(input_buffer.evbuf);
|
|
|
|
event_base_free(evbase_input);
|
|
|
|
return -1;
|
2016-12-26 13:30:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_deinit(void)
|
|
|
|
{
|
|
|
|
int i;
|
2019-02-16 13:34:36 -05:00
|
|
|
int ret;
|
2016-12-26 13:30:29 -05:00
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
// TODO ok to do from here?
|
|
|
|
input_stop();
|
2016-12-26 13:30:29 -05:00
|
|
|
|
|
|
|
for (i = 0; inputs[i]; i++)
|
|
|
|
{
|
|
|
|
if (inputs[i]->disabled)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (inputs[i]->deinit)
|
|
|
|
inputs[i]->deinit();
|
|
|
|
}
|
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
input_initialized = false;
|
|
|
|
commands_base_destroy(cmdbase);
|
|
|
|
|
|
|
|
ret = pthread_join(tid_input, NULL);
|
|
|
|
if (ret != 0)
|
|
|
|
{
|
|
|
|
DPRINTF(E_FATAL, L_MAIN, "Could not join input thread: %s\n", strerror(errno));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-13 18:43:03 -05:00
|
|
|
pthread_cond_destroy(&input_buffer.cond);
|
|
|
|
pthread_mutex_destroy(&input_buffer.mutex);
|
|
|
|
|
2019-02-16 13:34:36 -05:00
|
|
|
event_free(inputev);
|
2016-12-26 13:30:29 -05:00
|
|
|
evbuffer_free(input_buffer.evbuf);
|
2019-02-16 13:34:36 -05:00
|
|
|
event_base_free(evbase_input);
|
2016-12-26 13:30:29 -05:00
|
|
|
}
|
|
|
|
|