nxplayer: Add more debug output so that those of use who are not Ken can follow what is happening

This commit is contained in:
Gregory Nutt 2014-07-22 09:27:24 -06:00
parent 47e33aaa6e
commit f9386e6b64
2 changed files with 57 additions and 24 deletions

View File

@ -150,7 +150,7 @@ static const int g_known_ext_count = sizeof(g_known_ext) /
****************************************************************************/ ****************************************************************************/
static int nxplayer_opendevice(FAR struct nxplayer_s *pPlayer, int format, static int nxplayer_opendevice(FAR struct nxplayer_s *pPlayer, int format,
int subfmt) int subfmt)
{ {
/* If we have a preferred device, then open it */ /* If we have a preferred device, then open it */
@ -166,6 +166,7 @@ static int nxplayer_opendevice(FAR struct nxplayer_s *pPlayer, int format,
{ {
/* Format not supported by the device */ /* Format not supported by the device */
auddbg("ERROR: Format not supported by device: %d\n");
return -ENODEV; return -ENODEV;
} }
@ -173,7 +174,14 @@ static int nxplayer_opendevice(FAR struct nxplayer_s *pPlayer, int format,
pPlayer->devFd = open(pPlayer->prefdevice, O_RDWR); pPlayer->devFd = open(pPlayer->prefdevice, O_RDWR);
if (pPlayer->devFd == -1) if (pPlayer->devFd == -1)
return -ENOENT; {
int errcode = errno;
DEBUGASSERT(errcode > 0);
auddbg("ERROR: Failed to open %s: %d\n", -errcode);
UNUSED(errcode);
return -ENOENT;
}
return OK; return OK;
} }
@ -208,6 +216,11 @@ static int nxplayer_opendevice(FAR struct nxplayer_s *pPlayer, int format,
#endif /* CONFIG_AUDIO_CUSTOM_DEV_PATH */ #endif /* CONFIG_AUDIO_CUSTOM_DEV_PATH */
if (dirp == NULL) if (dirp == NULL)
{ {
int errcode = errno;
DEBUGASSERT(errcode > 0);
auddbg("ERROR: Failed to open /dev/audio: %d\n", -errcode);
UNUSED(errcode);
return -ENODEV; return -ENODEV;
} }
@ -226,10 +239,11 @@ static int nxplayer_opendevice(FAR struct nxplayer_s *pPlayer, int format,
#else #else
snprintf(path, sizeof(path), "/dev/audio/%s", pDevice->d_name); snprintf(path, sizeof(path), "/dev/audio/%s", pDevice->d_name);
#endif /* CONFIG_AUDIO_CUSTOM_DEV_PATH */ #endif /* CONFIG_AUDIO_CUSTOM_DEV_PATH */
if ((pPlayer->devFd = open(path, O_RDWR)) != -1) if ((pPlayer->devFd = open(path, O_RDWR)) != -1)
{ {
/* We have the device file open. Now issue an /* We have the device file open. Now issue an AUDIO ioctls to
* AUDIO ioctls to get the capabilities * get the capabilities
*/ */
caps.ac_len = sizeof(caps); caps.ac_len = sizeof(caps);
@ -316,6 +330,7 @@ static int nxplayer_opendevice(FAR struct nxplayer_s *pPlayer, int format,
/* Device not found */ /* Device not found */
auddbg("ERROR: Device not found\n");
pPlayer->devFd = -1; pPlayer->devFd = -1;
return -ENODEV; return -ENODEV;
} }
@ -447,8 +462,9 @@ static int nxplayer_fmtfromheader(FAR struct nxplayer_s *pPlayer)
****************************************************************************/ ****************************************************************************/
#if defined(CONFIG_NXPLAYER_MEDIA_SEARCH) && defined(CONFIG_NXPLAYER_INCLUDE_MEDIADIR) #if defined(CONFIG_NXPLAYER_MEDIA_SEARCH) && defined(CONFIG_NXPLAYER_INCLUDE_MEDIADIR)
static int nxplayer_mediasearch(FAR struct nxplayer_s *pPlayer, char *pFilename, static int nxplayer_mediasearch(FAR struct nxplayer_s *pPlayer,
char *path, int pathmax) FAR char *pFilename, FAR char *path,
int pathmax)
{ {
return -ENOENT; return -ENOENT;
} }
@ -1182,8 +1198,8 @@ int nxplayer_stop(FAR struct nxplayer_s *pPlayer)
* *
****************************************************************************/ ****************************************************************************/
int nxplayer_playfile(FAR struct nxplayer_s *pPlayer, char* pFilename, int filefmt, int nxplayer_playfile(FAR struct nxplayer_s *pPlayer, FAR char *pFilename,
int subfmt) int filefmt, int subfmt)
{ {
int ret, tmpsubfmt = AUDIO_FMT_UNDEF; int ret, tmpsubfmt = AUDIO_FMT_UNDEF;
struct mq_attr attr; struct mq_attr attr;
@ -1213,8 +1229,7 @@ int nxplayer_playfile(FAR struct nxplayer_s *pPlayer, char* pFilename, int filef
/* File not found. Test if its in the mediadir */ /* File not found. Test if its in the mediadir */
#ifdef CONFIG_NXPLAYER_INCLUDE_MEDIADIR #ifdef CONFIG_NXPLAYER_INCLUDE_MEDIADIR
snprintf(path, sizeof(path), "%s/%s", pPlayer->mediadir, snprintf(path, sizeof(path), "%s/%s", pPlayer->mediadir, pFilename);
pFilename);
if ((pPlayer->fileFd = fopen(path, "r")) == NULL) if ((pPlayer->fileFd = fopen(path, "r")) == NULL)
{ {
@ -1223,30 +1238,38 @@ int nxplayer_playfile(FAR struct nxplayer_s *pPlayer, char* pFilename, int filef
if (nxplayer_mediasearch(pPlayer, pFilename, path, sizeof(path)) != OK) if (nxplayer_mediasearch(pPlayer, pFilename, path, sizeof(path)) != OK)
{ {
auddbg("ERROR: Could not find file\n");
return -ENOENT; return -ENOENT;
} }
#else #else
auddbg("ERROR: Could not open %s or %s\n", pFilename, path);
return -ENOENT; return -ENOENT;
#endif /* CONFIG_NXPLAYER_MEDIA_SEARCH */ #endif /* CONFIG_NXPLAYER_MEDIA_SEARCH */
} }
#else /* CONFIG_NXPLAYER_INCLUDE_MEDIADIR */ #else /* CONFIG_NXPLAYER_INCLUDE_MEDIADIR */
auddbg("ERROR: Could not open %s\n", pFilename);
return -ENOENT; return -ENOENT;
#endif /* CONFIG_NXPLAYER_INCLUDE_MEDIADIR */ #endif /* CONFIG_NXPLAYER_INCLUDE_MEDIADIR */
} }
#ifdef CONFIG_NXPLAYER_FMT_FROM_EXT
/* Try to determine the format of audio file based on the extension */ /* Try to determine the format of audio file based on the extension */
#ifdef CONFIG_NXPLAYER_FMT_FROM_EXT
if (filefmt == AUDIO_FMT_UNDEF) if (filefmt == AUDIO_FMT_UNDEF)
filefmt = nxplayer_fmtfromextension(pPlayer, pFilename, &tmpsubfmt); {
filefmt = nxplayer_fmtfromextension(pPlayer, pFilename, &tmpsubfmt);
}
#endif #endif
#ifdef CONFIG_NXPLAYER_FMT_FROM_HEADER
/* If type not identified, then test for known header types */ /* If type not identified, then test for known header types */
#ifdef CONFIG_NXPLAYER_FMT_FROM_HEADER
if (filefmt == AUDIO_FMT_UNDEF) if (filefmt == AUDIO_FMT_UNDEF)
filefmt = nxplayer_fmtfromheader(pPlayer, &subfmt, &tmpsubfmt); {
filefmt = nxplayer_fmtfromheader(pPlayer, &subfmt, &tmpsubfmt);
}
#endif #endif
/* Test if we determined the file format */ /* Test if we determined the file format */
@ -1255,6 +1278,7 @@ int nxplayer_playfile(FAR struct nxplayer_s *pPlayer, char* pFilename, int filef
{ {
/* Hmmm, it's some unknown / unsupported type */ /* Hmmm, it's some unknown / unsupported type */
auddbg("BERROR: Unsupported format: %d \n", filefmt);
ret = -ENOSYS; ret = -ENOSYS;
goto err_out_nodev; goto err_out_nodev;
} }
@ -1273,14 +1297,15 @@ int nxplayer_playfile(FAR struct nxplayer_s *pPlayer, char* pFilename, int filef
{ {
/* Error opening the device */ /* Error opening the device */
auddbg("ERROR: nxplayer_opendevice failed: %d\n", ret);
goto err_out_nodev; goto err_out_nodev;
} }
/* Try to reserve the device */ /* Try to reserve the device */
#ifdef CONFIG_AUDIO_MULTI_SESSION #ifdef CONFIG_AUDIO_MULTI_SESSION
ret = ioctl(pPlayer->devFd, AUDIOIOC_RESERVE, (unsigned long) ret = ioctl(pPlayer->devFd, AUDIOIOC_RESERVE,
&pPlayer->session); (unsigned long)&pPlayer->session);
#else #else
ret = ioctl(pPlayer->devFd, AUDIOIOC_RESERVE, 0); ret = ioctl(pPlayer->devFd, AUDIOIOC_RESERVE, 0);
#endif #endif
@ -1288,16 +1313,17 @@ int nxplayer_playfile(FAR struct nxplayer_s *pPlayer, char* pFilename, int filef
{ {
/* Device is busy or error */ /* Device is busy or error */
auddbg("ERROR: Failed to reserve device: %d\n", ret);
ret = -errno; ret = -errno;
goto err_out; goto err_out;
} }
/* Create a message queue for the playthread */ /* Create a message queue for the playthread */
attr.mq_maxmsg = 16; attr.mq_maxmsg = 16;
attr.mq_msgsize = sizeof(struct audio_msg_s); attr.mq_msgsize = sizeof(struct audio_msg_s);
attr.mq_curmsgs = 0; attr.mq_curmsgs = 0;
attr.mq_flags = 0; attr.mq_flags = 0;
snprintf(pPlayer->mqname, sizeof(pPlayer->mqname), "/tmp/%0X", pPlayer); snprintf(pPlayer->mqname, sizeof(pPlayer->mqname), "/tmp/%0X", pPlayer);
pPlayer->mq = mq_open(pPlayer->mqname, O_RDWR | O_CREAT, 0644, &attr); pPlayer->mq = mq_open(pPlayer->mqname, O_RDWR | O_CREAT, 0644, &attr);
@ -1306,6 +1332,7 @@ int nxplayer_playfile(FAR struct nxplayer_s *pPlayer, char* pFilename, int filef
/* Unable to open message queue! */ /* Unable to open message queue! */
ret = -errno; ret = -errno;
auddbg("ERROR: mq_open failed: %d\n", ret);
goto err_out; goto err_out;
} }
@ -1314,7 +1341,7 @@ int nxplayer_playfile(FAR struct nxplayer_s *pPlayer, char* pFilename, int filef
ioctl(pPlayer->devFd, AUDIOIOC_REGISTERMQ, (unsigned long) pPlayer->mq); ioctl(pPlayer->devFd, AUDIOIOC_REGISTERMQ, (unsigned long) pPlayer->mq);
/* Check if there was a previous thread and join it if there was /* Check if there was a previous thread and join it if there was
* to perform cleanup. * to perform clean-up.
*/ */
if (pPlayer->playId != 0) if (pPlayer->playId != 0)
@ -1348,7 +1375,6 @@ int nxplayer_playfile(FAR struct nxplayer_s *pPlayer, char* pFilename, int filef
/* Name the thread */ /* Name the thread */
pthread_setname_np(pPlayer->playId, "playthread"); pthread_setname_np(pPlayer->playId, "playthread");
return OK; return OK;
err_out: err_out:
@ -1588,9 +1614,9 @@ void nxplayer_detach(FAR struct nxplayer_s* pPlayer)
#ifdef CONFIG_NXPLAYER_INCLUDE_SYSTEM_RESET #ifdef CONFIG_NXPLAYER_INCLUDE_SYSTEM_RESET
int nxplayer_systemreset(FAR struct nxplayer_s *pPlayer) int nxplayer_systemreset(FAR struct nxplayer_s *pPlayer)
{ {
struct dirent* pDevice; struct dirent *pDevice;
DIR* dirp; DIR *dirp;
char path[64]; char path[64];
/* Search for a device in the audio device directory */ /* Search for a device in the audio device directory */

View File

@ -189,7 +189,14 @@ static int nxplayer_cmd_play(FAR struct nxplayer_s *pPlayer, char* parg)
ret = nxplayer_playfile(pPlayer, parg, AUDIO_FMT_UNDEF, AUDIO_FMT_UNDEF); ret = nxplayer_playfile(pPlayer, parg, AUDIO_FMT_UNDEF, AUDIO_FMT_UNDEF);
/* Test if the device file exists */ /* nxplayer_playfile returned values:
*
* OK File is being played
* -EBUSY The media device is busy
* -ENOSYS The media file is an unsupported type
* -ENODEV No audio device suitable to play the media type
* -ENOENT The media file was not found
*/
if (ret == -ENODEV) if (ret == -ENODEV)
{ {