You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
165 lines
3.5 KiB
C++
165 lines
3.5 KiB
C++
/*
|
|
* MPD SACD Decoder plugin
|
|
* Copyright (c) 2014-2025 Maxim V.Anisiutkin <maxim.anisiutkin@gmail.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include <fcntl.h>
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>
|
|
#include <span>
|
|
|
|
#include "sacd_media.h"
|
|
|
|
sacd_media_file_t::sacd_media_file_t() {
|
|
fd = -1;
|
|
}
|
|
|
|
sacd_media_file_t::~sacd_media_file_t() {
|
|
sacd_media_file_t::close();
|
|
}
|
|
|
|
bool sacd_media_file_t::open(const char* path) {
|
|
int ret;
|
|
struct stat64 st;
|
|
fd = ::open(path, O_RDONLY, 0);
|
|
if (fd < 0) {
|
|
return false;
|
|
}
|
|
ret = ::fstat64(fd, &st);
|
|
if (ret < 0) {
|
|
::close(fd);
|
|
fd = -1;
|
|
return false;
|
|
}
|
|
if (!S_ISREG(st.st_mode)) {
|
|
::close(fd);
|
|
fd = -1;
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool sacd_media_file_t::close() {
|
|
if (fd < 0) {
|
|
return false;
|
|
}
|
|
::close(fd);
|
|
fd = -1;
|
|
return true;
|
|
}
|
|
|
|
bool sacd_media_file_t::seek(int64_t position) {
|
|
off64_t ret = ::lseek64(fd, (off64_t)position, SEEK_SET);
|
|
if (ret < 0) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
int64_t sacd_media_file_t::get_position() {
|
|
return ::lseek64(fd, 0, SEEK_CUR);
|
|
}
|
|
|
|
int64_t sacd_media_file_t::get_size() {
|
|
int ret;
|
|
struct stat64 st;
|
|
ret = ::fstat64(fd, &st);
|
|
if (ret < 0) {
|
|
return 0;
|
|
}
|
|
return st.st_size;
|
|
}
|
|
|
|
size_t sacd_media_file_t::read(void* data, size_t size) {
|
|
return ::read(fd, data, size);
|
|
}
|
|
|
|
int64_t sacd_media_file_t::skip(int64_t bytes) {
|
|
return ::lseek64(fd, (off64_t)bytes, SEEK_CUR);
|
|
}
|
|
|
|
sacd_media_stream_t::sacd_media_stream_t() {
|
|
is = nullptr;
|
|
}
|
|
|
|
sacd_media_stream_t::~sacd_media_stream_t() {
|
|
sacd_media_stream_t::close();
|
|
}
|
|
|
|
#include "util/Domain.hxx"
|
|
static constexpr Domain logger_domain("logger");
|
|
|
|
bool sacd_media_stream_t::open(const char* path) {
|
|
try {
|
|
is = InputStream::OpenReady(path, mutex);
|
|
}
|
|
catch (...) {
|
|
LogError(std::current_exception());
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool sacd_media_stream_t::close() {
|
|
is.release();
|
|
return true;
|
|
}
|
|
|
|
bool sacd_media_stream_t::seek(int64_t position) {
|
|
try {
|
|
is->LockSeek(position);
|
|
}
|
|
catch (...) {
|
|
LogError(std::current_exception());
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
int64_t sacd_media_stream_t::get_position() {
|
|
return is->GetOffset();
|
|
}
|
|
|
|
int64_t sacd_media_stream_t::get_size() {
|
|
return is->GetSize();
|
|
}
|
|
|
|
size_t sacd_media_stream_t::read(void* data, size_t size) {
|
|
size_t read_bytes{ 0 };
|
|
try {
|
|
while (!is->LockIsEOF() && (read_bytes < size)) {
|
|
read_bytes += is->LockRead({static_cast<std::byte*>(data) + read_bytes, size - read_bytes});
|
|
}
|
|
}
|
|
catch (...) {
|
|
LogError(std::current_exception());
|
|
}
|
|
return read_bytes;
|
|
}
|
|
|
|
int64_t sacd_media_stream_t::skip(int64_t bytes) {
|
|
int64_t position = is->GetOffset() + bytes;
|
|
try {
|
|
is->LockSeek(position);
|
|
}
|
|
catch (...) {
|
|
LogError(std::current_exception());
|
|
return -1;
|
|
}
|
|
return position;
|
|
}
|