summaryrefslogtreecommitdiff
path: root/libs/ardour/test/profiling/runpc.cc
blob: 90f9136e231dd08b715a07e29d5bfa79d7d34486 (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#include <iostream>
#include "midi++/manager.h"
#include "pbd/textreceiver.h"
#include "pbd/compose.h"
#include "pbd/enumwriter.h"
#include "ardour/session.h"
#include "ardour/audioengine.h"

using namespace std;
using namespace PBD;
using namespace ARDOUR;

class TestReceiver : public Receiver 
{
protected:
	void receive (Transmitter::Channel chn, const char * str) {
		const char *prefix = "";
		
		switch (chn) {
		case Transmitter::Error:
			prefix = ": [ERROR]: ";
			break;
		case Transmitter::Info:
			/* ignore */
			return;
		case Transmitter::Warning:
			prefix = ": [WARNING]: ";
			break;
		case Transmitter::Fatal:
			prefix = ": [FATAL]: ";
			break;
		case Transmitter::Throw:
			/* this isn't supposed to happen */
			abort ();
		}
		
		/* note: iostreams are already thread-safe: no external
		   lock required.
		*/
		
		cout << prefix << str << endl;
		
		if (chn == Transmitter::Fatal) {
			exit (9);
		}
	}
};

TestReceiver test_receiver;

int
main (int argc, char* argv[])
{
	if (argc < 2) {
		cerr << argv[0] << ": <session>\n";
		exit (EXIT_FAILURE);
	}
	
	string const test_session_path = string_compose ("../libs/ardour/test/profiling/sessions/%1", argv[1]);
	string const test_session_snapshot = string_compose ("%1.ardour", argv[1]);
	
	init (false, true);
	SessionEvent::create_per_thread_pool ("test", 512);

	test_receiver.listen_to (error);
	test_receiver.listen_to (info);
	test_receiver.listen_to (fatal);
	test_receiver.listen_to (warning);

	AudioEngine* engine = new AudioEngine ("test", "");
	engine->start ();
	MIDI::Manager::create (engine->jack ());

	Session* session = new Session (*engine, test_session_path, test_session_snapshot);
	engine->set_session (session);

	cout << "INFO: " << session->get_routes()->size() << " routes.\n";

	for (int i = 0; i < 32768; ++i) {
		session->process (64);
	}

	return 0;
}