summaryrefslogtreecommitdiff
path: root/commands.h
blob: ae5dc843f3135ebcc1761f11c0260ac3d581ee02 (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
#ifndef COMMANDS_H
#define COMMANDS_H

#include "music.h"

#include <boost/function.hpp>
#include <boost/asio.hpp>

#include <string>
#include <vector>
#include <map>
#include <stdexcept>

namespace commands {
	class Commands;

	class CommandException : public std::runtime_error {
		public:
			CommandException(const char *s) : std::runtime_error(s) {};
			CommandException(std::string s) : std::runtime_error(s.c_str()) {};
	};

	class Commands {
		private:
			typedef boost::function<std::vector<std::string> (Commands*)> Handler;
			std::map<std::string, Handler> handlers;

			typedef boost::function<std::vector<MusicListing::p> (const std::string artist)> FindFunction;
			std::map<std::string, FindFunction> find_handlers;

			boost::asio::io_service& io_service;
			std::vector<std::string>& args;

			std::vector<std::string> ls();
			std::vector<std::string> find();
			std::vector<std::string> update();

		public:
			Commands(boost::asio::io_service& io_service, std::vector<std::string>& args);
			std::vector<std::string> operator()();

	};
};

#endif