mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-10-31 06:03:51 +01:00 
			
		
		
		
	* Added rdxml_parse_test(1) in 'tests/'. * Added a RDCart::readXml()' method in 'lib/rdcart.cpp' and 'lib/rdcart.h'. * Fixed a typo in the 'averageSegueLength' field in the 'RDCart::xml()' method in 'lib/rdcart.cpp'. * Removed the 'validity' field from the output of the 'RDCart::xml()' method in 'lib/rdcart.cpp'. * Removed the 'validity' and 'localCounter' fields from the output of the 'RDCut::xml()' method in 'lib/rdcut.cpp'.
		
			
				
	
	
		
			109 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			109 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // rdxml_parse_test.cpp
 | |
| //
 | |
| // Test the Rivendell RDXML parser routines.
 | |
| //
 | |
| //   (C) Copyright 2016 Fred Gleason <fredg@paravelsystems.com>
 | |
| //
 | |
| //   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 <stdlib.h>
 | |
| #include <stdio.h>
 | |
| 
 | |
| #include <vector>
 | |
| 
 | |
| #include <qapplication.h>
 | |
| #include <qfile.h>
 | |
| 
 | |
| #include <rdcart.h>
 | |
| #include <rdcmd_switch.h>
 | |
| #include <rdwavedata.h>
 | |
| 
 | |
| #include "rdxml_parse_test.h"
 | |
| 
 | |
| MainObject::MainObject(QObject *parent)
 | |
|   :QObject(parent)
 | |
| {
 | |
|   QString filename="";
 | |
|   QFile *file=NULL;
 | |
|   QString line;
 | |
|   QString xml="";
 | |
| 
 | |
|   //
 | |
|   // Read Command Options
 | |
|   //
 | |
|   RDCmdSwitch *cmd=
 | |
|     new RDCmdSwitch(qApp->argc(),qApp->argv(),"rdxml_parse_test",
 | |
| 		    RDXML_PARSE_TEST_USAGE);
 | |
|   for(unsigned i=0;i<cmd->keys();i++) {
 | |
|     if(cmd->key(i)=="--filename") {
 | |
|       filename=cmd->value(i);
 | |
|       cmd->setProcessed(i,true);
 | |
|     }
 | |
|     if(!cmd->processed(i)) {
 | |
|       fprintf(stderr,"rdxml_parse_test: unknown option \"%s\"\n",
 | |
| 	      (const char *)cmd->value(i));
 | |
|       exit(256);
 | |
|     }
 | |
|   }
 | |
|   if(filename.isEmpty()) {
 | |
|     fprintf(stderr,"rdxml_parse_test: --filename= must be specified\n");
 | |
|     exit(256);
 | |
|   }
 | |
| 
 | |
|   //
 | |
|   // Read File
 | |
|   //
 | |
|   file=new QFile(filename);
 | |
|   if(!file->open(IO_ReadOnly)) {
 | |
|     fprintf(stderr,"rdxml_parse_test: unable to open \"%s\"\n",
 | |
| 	    (const char *)filename);
 | |
|     exit(256);
 | |
|   }
 | |
|   while(file->readLine(line,1024)>=0) {
 | |
|     xml+=line;
 | |
|   }
 | |
|   file->close();
 | |
| 
 | |
|   //
 | |
|   // Parse
 | |
|   //
 | |
|   std::vector<RDWaveData> data;
 | |
|   int n=RDCart::readXml(&data,xml);
 | |
| 
 | |
|   if(n<1) {
 | |
|     fprintf(stderr,"rdxml_parse_test: no data found\n");
 | |
|     exit(256);
 | |
|   }
 | |
|   printf("*** CART DATA ***\n");
 | |
|   printf("%s\n",(const char *)data[0].dump());
 | |
|   printf("\n");
 | |
| 
 | |
|   for(unsigned i=1;i<data.size();i++) {
 | |
|     printf("*** CUT %u DATA ***\n",i);
 | |
|     printf("%s\n",(const char *)data[i].dump());
 | |
|     printf("\n");
 | |
|   }
 | |
| 
 | |
|   exit(0);
 | |
| }
 | |
| 
 | |
| 
 | |
| int main(int argc,char *argv[])
 | |
| {
 | |
|   QApplication a(argc,argv,false);
 | |
|   new MainObject();
 | |
|   return a.exec();
 | |
| }
 |