summaryrefslogtreecommitdiff
path: root/main.cpp
blob: 19695cf12090e7fef04c53e0cd0061f7515b4d1f (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
#include "music.h"
#include "decoder.h"
#include "encoder.h"
#include "httpd.h"

#include <iostream>
#include <vector>

#include <boost/thread.hpp>

int main(int argc, char **argv) {
	try {
		music::init(argv[1]);
		decoder::init();
		encoder::init();
		
		boost::asio::io_service io_service;
		
		HTTP::Server httpd(io_service, tcp::endpoint(tcp::v6(), 8000));
		
		std::vector<boost::shared_ptr<boost::thread> > threads;
		for(std::size_t i = 0; i < 10; i++) {
			boost::shared_ptr<boost::thread> thread(new boost::thread(boost::bind(&boost::asio::io_service::run, &io_service)));
			threads.push_back(thread);
		}
		for(std::size_t i = 0; i < 10; i++) {
			threads[i]->join();
		}
	} catch(std::exception& e) {
		std::cerr << e.what() << std::endl;
	}

	return 0;
}