mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-11-29 16:50:13 +01:00
Initial import of CVS-v2_8_branch
This commit is contained in:
202
web/rdxport/export.cpp
Normal file
202
web/rdxport/export.cpp
Normal file
@@ -0,0 +1,202 @@
|
||||
// export.cpp
|
||||
//
|
||||
// Rivendell web service portal -- Export service
|
||||
//
|
||||
// (C) Copyright 2010 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: export.cpp,v 1.6.2.2 2013/10/02 18:25:12 cvs Exp $
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License version 2 as
|
||||
// published by the Free Software Foundation.
|
||||
//
|
||||
// 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <fcntl.h>
|
||||
|
||||
#include <rdformpost.h>
|
||||
#include <rdweb.h>
|
||||
#include <rdcart.h>
|
||||
#include <rdaudioconvert.h>
|
||||
#include <rdsettings.h>
|
||||
#include <rdconf.h>
|
||||
|
||||
#include <rdxport.h>
|
||||
|
||||
void Xport::Export()
|
||||
{
|
||||
RDAudioConvert::ErrorCode conv_err=RDAudioConvert::ErrorOk;
|
||||
int resp_code=0;
|
||||
|
||||
//
|
||||
// Verify Post
|
||||
//
|
||||
int cartnum=0;
|
||||
if(!xport_post->getValue("CART_NUMBER",&cartnum)) {
|
||||
XmlExit("Missing CART_NUMBER",400);
|
||||
}
|
||||
int cutnum=0;
|
||||
if(!xport_post->getValue("CUT_NUMBER",&cutnum)) {
|
||||
XmlExit("Missing CUT_NUMBER",400);
|
||||
}
|
||||
int format=0;
|
||||
if(!xport_post->getValue("FORMAT",&format)) {
|
||||
XmlExit("Missing FORMAT",400);
|
||||
}
|
||||
int channels=0;
|
||||
if(!xport_post->getValue("CHANNELS",&channels)) {
|
||||
XmlExit("Missing CHANNELS",400);
|
||||
}
|
||||
int sample_rate=0;
|
||||
if(!xport_post->getValue("SAMPLE_RATE",&sample_rate)) {
|
||||
XmlExit("Missing SAMPLE_RATE",400);
|
||||
}
|
||||
int bit_rate=0;
|
||||
if(!xport_post->getValue("BIT_RATE",&bit_rate)) {
|
||||
XmlExit("Missing BIT_RATE",400);
|
||||
}
|
||||
int quality=0;
|
||||
if(!xport_post->getValue("QUALITY",&quality)) {
|
||||
XmlExit("Missing QUALITY",400);
|
||||
}
|
||||
int start_point=-1;
|
||||
if(!xport_post->getValue("START_POINT",&start_point)) {
|
||||
XmlExit("Missing START_POINT",400);
|
||||
}
|
||||
int end_point=-1;
|
||||
if(!xport_post->getValue("END_POINT",&end_point)) {
|
||||
XmlExit("Missing END_POINT",400);
|
||||
}
|
||||
int normalization_level=0;
|
||||
if(!xport_post->getValue("NORMALIZATION_LEVEL",&normalization_level)) {
|
||||
XmlExit("Missing NORMALIZATION_LEVEL",400);
|
||||
}
|
||||
int enable_metadata=false;
|
||||
if(!xport_post->getValue("ENABLE_METADATA",&enable_metadata)) {
|
||||
XmlExit("Missing ENABLE_METADATA",400);
|
||||
}
|
||||
if(!RDCart::exists(cartnum)) {
|
||||
XmlExit("No such cart",404);
|
||||
}
|
||||
if(!RDCut::exists(cartnum,cutnum)) {
|
||||
XmlExit("No such cut",404);
|
||||
}
|
||||
|
||||
//
|
||||
// Verify User Perms
|
||||
//
|
||||
if(!xport_user->cartAuthorized(cartnum)) {
|
||||
XmlExit("No such cart",404);
|
||||
}
|
||||
|
||||
//
|
||||
// Generate Metadata
|
||||
//
|
||||
RDWaveData *wavedata=NULL;
|
||||
float speed_ratio=1.0;
|
||||
if(enable_metadata!=0) {
|
||||
wavedata=new RDWaveData();
|
||||
}
|
||||
if(wavedata!=NULL) {
|
||||
RDCart *cart=new RDCart(cartnum);
|
||||
RDCut *cut=new RDCut(cartnum,cutnum);
|
||||
cart->getMetadata(wavedata);
|
||||
cut->getMetadata(wavedata);
|
||||
if(cart->enforceLength()) {
|
||||
speed_ratio=(float)cut->length()/(float)cart->forcedLength();
|
||||
}
|
||||
delete cut;
|
||||
delete cart;
|
||||
}
|
||||
|
||||
//
|
||||
// Export Cut
|
||||
//
|
||||
int fd;
|
||||
ssize_t n;
|
||||
uint8_t data[2048];
|
||||
QString tmpdir=RDTempDir();
|
||||
QString tmpfile=tmpdir+"/exported_audio";
|
||||
RDSettings *settings=new RDSettings();
|
||||
settings->setFormat((RDSettings::Format)format);
|
||||
settings->setChannels(channels);
|
||||
settings->setSampleRate(sample_rate);
|
||||
settings->setBitRate(bit_rate);
|
||||
settings->setQuality(quality);
|
||||
settings->setNormalizationLevel(normalization_level);
|
||||
RDAudioConvert *conv=new RDAudioConvert(xport_config->stationName());
|
||||
conv->setSourceFile(RDCut::pathName(cartnum,cutnum));
|
||||
conv->setDestinationFile(tmpfile);
|
||||
conv->setDestinationSettings(settings);
|
||||
conv->setDestinationWaveData(wavedata);
|
||||
conv->setRange(start_point,end_point);
|
||||
conv->setSpeedRatio(speed_ratio);
|
||||
switch(conv_err=conv->convert()) {
|
||||
case RDAudioConvert::ErrorOk:
|
||||
switch(settings->format()) {
|
||||
case RDSettings::Pcm16:
|
||||
printf("Content-type: audio/x-wav\n\n");
|
||||
break;
|
||||
|
||||
case RDSettings::MpegL1:
|
||||
case RDSettings::MpegL2:
|
||||
case RDSettings::MpegL2Wav:
|
||||
case RDSettings::MpegL3:
|
||||
printf("Content-type: audio/x-mpeg\n\n");
|
||||
break;
|
||||
|
||||
case RDSettings::OggVorbis:
|
||||
printf("Content-type: audio/ogg\n\n");
|
||||
break;
|
||||
|
||||
case RDSettings::Flac:
|
||||
printf("Content-type: audio/flac\n\n");
|
||||
break;
|
||||
}
|
||||
fflush(NULL);
|
||||
if((fd=open(tmpfile,O_RDONLY))>=0) {
|
||||
while((n=read(fd,data,2048))>0) {
|
||||
write(1,data,n);
|
||||
}
|
||||
}
|
||||
close(fd);
|
||||
break;
|
||||
|
||||
case RDAudioConvert::ErrorFormatNotSupported:
|
||||
case RDAudioConvert::ErrorInvalidSettings:
|
||||
resp_code=415;
|
||||
break;
|
||||
|
||||
case RDAudioConvert::ErrorNoSource:
|
||||
case RDAudioConvert::ErrorNoDestination:
|
||||
case RDAudioConvert::ErrorInvalidSource:
|
||||
case RDAudioConvert::ErrorNoSpace:
|
||||
case RDAudioConvert::ErrorInternal:
|
||||
case RDAudioConvert::ErrorNoDisc:
|
||||
case RDAudioConvert::ErrorNoTrack:
|
||||
case RDAudioConvert::ErrorInvalidSpeed:
|
||||
case RDAudioConvert::ErrorFormatError:
|
||||
resp_code=500;
|
||||
break;
|
||||
}
|
||||
delete conv;
|
||||
delete settings;
|
||||
if(wavedata!=NULL) {
|
||||
delete wavedata;
|
||||
}
|
||||
unlink(tmpfile);
|
||||
rmdir(tmpdir);
|
||||
exit(0);
|
||||
}
|
||||
Reference in New Issue
Block a user