summaryrefslogtreecommitdiff
path: root/orkaudio/audiocaptureplugins/generator/GeneratorConfig.h
blob: 8e9c6a12b2c284ef0a15d0447ca5def1daced903 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
 * Oreka -- A media capture and retrieval platform
 * 
 * Copyright (C) 2005, orecx LLC
 *
 * http://www.orecx.com
 *
 * This program is free software, distributed under the terms of
 * the GNU General Public License.
 * Please refer to http://www.gnu.org/copyleft/gpl.html
 *
 */

#ifndef __GENERATORCONFIG_H__
#define __GENERATORCONFIG_H__

#include "StdString.h"
#include "Object.h"
#include "boost/shared_ptr.hpp"

#define NUM_CONCURRENT_PORTS_PARAM "NumConcurrentPorts"
#define NUM_CONCURRENT_PORTS_DEFAULT 10 
#define AUDIO_DURATION_PARAM "AudioDuration"
#define AUDIO_DURATION_DEFAULT 10
#define AUDIO_FILE_NAME_PARAM "AudioFilename"
#define AUDIO_FILE_NAME_DEFAULT "test.wav"

/** This class defines various configuration parameters for the generator. */
class GeneratorConfig : public Object
{
public:
	GeneratorConfig();	
	void Define(Serializer* s);
	void Validate();

	CStdString GetClassName();
	ObjectRef NewInstance();
	inline ObjectRef Process() {return ObjectRef();};

	int m_numConcurrentPorts;
	int m_audioDuration;
	CStdString m_audioFilename;
};

//========================================

#define GENERATOR_CONFIG_PARAM "Generator"

/** This class represents the top of the configuration hierarchy for the generator. */
class GeneratorConfigTopObject : public Object
{
public:
	void Define(Serializer* s);
	void Validate();

	CStdString GetClassName();
	ObjectRef NewInstance();
	inline ObjectRef Process() {return ObjectRef();};
	
	GeneratorConfig m_config;
};

typedef boost::shared_ptr<GeneratorConfigTopObject> GeneratorConfigTopObjectRef;


#endif