CommandListener.h revision 8f869aa1bc685b505c58e97b4e11a9c7491a16f9
1/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef _COMMANDLISTENER_H__
18#define _COMMANDLISTENER_H__
19
20#include <sysutils/FrameworkListener.h>
21#include "VoldCommand.h"
22
23class CommandListener : public FrameworkListener {
24public:
25    CommandListener();
26    virtual ~CommandListener() {}
27
28private:
29    static void dumpArgs(int argc, char **argv, int argObscure);
30
31    class DumpCmd : public VoldCommand {
32    public:
33        DumpCmd();
34        virtual ~DumpCmd() {}
35        int runCommand(SocketClient *c, int argc, char ** argv);
36    };
37
38    class VolumeCmd : public VoldCommand {
39    public:
40        VolumeCmd();
41        virtual ~VolumeCmd() {}
42        int runCommand(SocketClient *c, int argc, char ** argv);
43    };
44
45    class ShareCmd : public VoldCommand {
46    public:
47        ShareCmd();
48        virtual ~ShareCmd() {}
49        int runCommand(SocketClient *c, int argc, char ** argv);
50    };
51
52    class AsecCmd : public VoldCommand {
53    public:
54        AsecCmd();
55        virtual ~AsecCmd() {}
56        int runCommand(SocketClient *c, int argc, char ** argv);
57    };
58
59    class ObbCmd : public VoldCommand {
60    public:
61        ObbCmd();
62        virtual ~ObbCmd() {}
63        int runCommand(SocketClient *c, int argc, char ** argv);
64    };
65
66    class StorageCmd : public VoldCommand {
67    public:
68        StorageCmd();
69        virtual ~StorageCmd() {}
70        int runCommand(SocketClient *c, int argc, char ** argv);
71    };
72
73    class XwarpCmd : public VoldCommand {
74    public:
75        XwarpCmd();
76        virtual ~XwarpCmd() {}
77        int runCommand(SocketClient *c, int argc, char ** argv);
78    };
79
80    class CryptfsCmd : public VoldCommand {
81    public:
82        CryptfsCmd();
83        virtual ~CryptfsCmd() {}
84        int runCommand(SocketClient *c, int argc, char ** argv);
85    };
86};
87
88#endif
89