1 |
// Command |
2 |
// |
3 |
// Douglas Thrift |
4 |
// |
5 |
// $Id$ |
6 |
|
7 |
#ifndef _Command_hpp_ |
8 |
#define _Command_hpp_ |
9 |
|
10 |
#include <cxx/platform.hpp> |
11 |
|
12 |
#ifdef MENES_PRAGMA_ONCE |
13 |
#pragma once |
14 |
#endif |
15 |
|
16 |
#include <api/locks.hpp> |
17 |
#include <ext/queues.hpp> |
18 |
|
19 |
#include "Url.hpp" |
20 |
|
21 |
struct Command : public ext::ReferenceCounted { |
22 |
const cse::String root; |
23 |
operator const cse::String &() { return root; } |
24 |
protected: |
25 |
Command(const cse::String &root) : root(root) {} |
26 |
}; |
27 |
|
28 |
class CommandRunner |
29 |
{ |
30 |
protected: |
31 |
const cse::String &sitemap, &base; |
32 |
ext::Queue<Url> &queue; |
33 |
api::ThreadMutex &queueLock; |
34 |
CommandRunner(const cse::String &sitemap, const cse::String &base, ext::Queue<Url> &queue, api::ThreadMutex &queueLock) : sitemap(sitemap), base(base), queue(queue), queueLock(queueLock) {} |
35 |
}; |
36 |
|
37 |
#endif//_Command_hpp_ |