[Cover] Cleanup

This commit is contained in:
emeric
2015-06-28 20:07:42 +02:00
parent 75c700df2a
commit 04434fcf7a
3 changed files with 2 additions and 182 deletions
+2 -2
View File
@@ -285,8 +285,8 @@ Updater::processAudioFile( const boost::filesystem::path& file, Stats& stats)
{
// no change since last time we updated
// Skip only if no external covers has to be set
if (track->getCoverType() == Database::Track::CoverType::None && externalCovers.empty()
|| track->getCoverType() == Database::Track::CoverType::ExternalFile && !externalCovers.empty())
if (((track->getCoverType() == Database::Track::CoverType::None) && externalCovers.empty())
|| ((track->getCoverType() == Database::Track::CoverType::ExternalFile) && !externalCovers.empty()))
return;
}
-136
View File
@@ -1,136 +0,0 @@
/*
* Copyright (C) 2015 Emeric Poupon
*
* This file is part of LMS.
*
* LMS 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.
*
* LMS 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 LMS. If not, see <http://www.gnu.org/licenses/>.
*/
#include <Wt/Http/Request>
#include <Wt/Http/Response>
#include "logger/Logger.hpp"
#include "database/DatabaseHandler.hpp"
#include "transcode/Format.hpp"
#include "transcode/InputMediaFile.hpp"
#include "transcode/Parameters.hpp"
#include "transcode/AvConvTranscoder.hpp"
#include "Resource.hpp"
namespace RestAPI {
Resource::Resource(boost::filesystem::path dbPath)
: _dbPath(dbPath)
{
}
void
Resource::handleRequest(const Wt::Http::Request& request, Wt::Http::Response& response)
{
static const std::size_t _bufferSize = 65536;
LMS_LOG(MOD_REST_API, SEV_DEBUG) << "Handle request...";
// see if this request is for a continuation:
Wt::Http::ResponseContinuation *continuation = request.continuation();
LMS_LOG(MOD_UI, SEV_DEBUG) << "Handling request. Continuation = " << std::boolalpha << continuation;
std::shared_ptr<Transcode::AvConvTranscoder> transcoder;
if (continuation)
{
transcoder = boost::any_cast<std::shared_ptr<Transcode::AvConvTranscoder> >(continuation->data());
}
else
{
const Wt::Http::ParameterMap& parameters = request.getParameterMap();
for (auto itParameter : parameters)
{
LMS_LOG(MOD_REST_API, SEV_DEBUG) << "Param name: '" << itParameter.first << "'";
for (auto value : itParameter.second)
{
LMS_LOG(MOD_REST_API, SEV_DEBUG) << "\tvalue: '" << value << "'";
}
}
auto itParamMediaId = parameters.find("mediaid");
if (itParamMediaId == parameters.end())
{
LMS_LOG(MOD_REST_API, SEV_DEBUG) << "Cannot find parameter mediaid";
return;
}
std::string mediaId = itParamMediaId->second.front();
LMS_LOG(MOD_REST_API, SEV_DEBUG) << "MediaId = " << mediaId;
try
{
Database::Handler db(_dbPath);
Wt::Dbo::Transaction transaction(db.getSession());
Database::Track::pointer track = Database::Track::getById(db.getSession(), std::stol(mediaId));
LMS_LOG(MOD_UI, SEV_DEBUG) << "Launching transcoder";
Transcode::InputMediaFile input(track->getPath());
Transcode::Parameters parameters(input, Transcode::Format::get(Transcode::Format::OGA));
transcoder = std::make_shared<Transcode::AvConvTranscoder>(parameters);
LMS_LOG(MOD_UI, SEV_DEBUG) << "Mime type set to '" << parameters.getOutputFormat().getMimeType() << "'";
response.setMimeType(parameters.getOutputFormat().getMimeType());
}
catch(std::exception &e)
{
LMS_LOG(MOD_UI, SEV_DEBUG) << "Caught exception: " << e.what();
return;
}
}
if (!transcoder)
{
LMS_LOG(MOD_UI, SEV_ERROR) << "No transcoder ?!";
return;
}
if (!transcoder->isComplete())
{
std::vector<unsigned char> data;
data.reserve(_bufferSize);
transcoder->process(data, _bufferSize);
// Give the client all the output data
response.out().write(reinterpret_cast<char*>(&data[0]), data.size());
LMS_LOG(MOD_UI, SEV_DEBUG) << "Written " << data.size() << " bytes! complete = " << std::boolalpha << transcoder->isComplete() << ", produced bytes = " << transcoder->getOutputBytes();
if (!response.out())
LMS_LOG(MOD_UI, SEV_ERROR) << "Write failed!";
}
if (!transcoder->isComplete() && response.out()) {
continuation = response.createContinuation();
continuation->setData(transcoder);
}
else
LMS_LOG(MOD_UI, SEV_DEBUG) << "No more data!";
}
} // namespace API
-44
View File
@@ -1,44 +0,0 @@
/*
* Copyright (C) 2015 Emeric Poupon
*
* This file is part of LMS.
*
* LMS 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.
*
* LMS 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 LMS. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef API_RESOURCE_HPP
#define API_RESOURCE_HPP
#include <Wt/WResource>
#include <boost/filesystem.hpp>
namespace RestAPI {
class Resource : public Wt::WResource
{
public:
Resource(boost::filesystem::path dbPath);
void handleRequest(const Wt::Http::Request& request,
Wt::Http::Response& response);
private:
boost::filesystem::path _dbPath;
};
} // namespace API
#endif