blob: 75c7e816053c215d262e25c0122cfdf30469922d [file] [log] [blame]
San Mehatf1b736b2009-10-10 17:22:08 -07001/*
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:
San Mehatd9a4e352010-03-12 13:32:47 -080029 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 };
San Mehatf1b736b2009-10-10 17:22:08 -070037
San Mehateba65e92010-01-29 05:15:16 -080038 class VolumeCmd : public VoldCommand {
San Mehatf1b736b2009-10-10 17:22:08 -070039 public:
San Mehateba65e92010-01-29 05:15:16 -080040 VolumeCmd();
41 virtual ~VolumeCmd() {}
San Mehatf1b736b2009-10-10 17:22:08 -070042 int runCommand(SocketClient *c, int argc, char ** argv);
43 };
44
San Mehata2677e42009-12-13 10:40:18 -080045 class ShareCmd : public VoldCommand {
San Mehatf1b736b2009-10-10 17:22:08 -070046 public:
San Mehata2677e42009-12-13 10:40:18 -080047 ShareCmd();
48 virtual ~ShareCmd() {}
San Mehatf1b736b2009-10-10 17:22:08 -070049 int runCommand(SocketClient *c, int argc, char ** argv);
50 };
51
San Mehateba65e92010-01-29 05:15:16 -080052 class AsecCmd : public VoldCommand {
San Mehatf1b736b2009-10-10 17:22:08 -070053 public:
San Mehateba65e92010-01-29 05:15:16 -080054 AsecCmd();
55 virtual ~AsecCmd() {}
San Mehata19b2502010-01-06 10:33:53 -080056 int runCommand(SocketClient *c, int argc, char ** argv);
57 };
58
Kenny Root508c0e12010-07-12 09:59:49 -070059 class ObbCmd : public VoldCommand {
Kenny Rootfb7c4d52010-06-30 18:48:41 -070060 public:
Kenny Root508c0e12010-07-12 09:59:49 -070061 ObbCmd();
62 virtual ~ObbCmd() {}
Kenny Rootfb7c4d52010-06-30 18:48:41 -070063 int runCommand(SocketClient *c, int argc, char ** argv);
64 };
65
San Mehat586536c2010-02-16 17:12:00 -080066 class StorageCmd : public VoldCommand {
67 public:
68 StorageCmd();
69 virtual ~StorageCmd() {}
70 int runCommand(SocketClient *c, int argc, char ** argv);
71 };
San Mehat2350c442010-03-02 13:16:50 -080072
73 class XwarpCmd : public VoldCommand {
74 public:
75 XwarpCmd();
76 virtual ~XwarpCmd() {}
77 int runCommand(SocketClient *c, int argc, char ** argv);
78 };
San Mehatf1b736b2009-10-10 17:22:08 -070079};
80
81#endif