2009-05-06 20:16:52 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
2009-05-23 00:36:13 +02:00
|
|
|
|
2009-05-06 20:16:52 +02:00
|
|
|
#ifndef _CONTROLLER_H
|
|
|
|
#define _CONTROLLER_H
|
|
|
|
|
2009-05-21 00:28:43 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2009-05-23 00:36:13 +02:00
|
|
|
#include <utils/List.h>
|
|
|
|
|
|
|
|
class PropertyManager;
|
2009-06-15 23:10:44 +02:00
|
|
|
class IControllerHandler;
|
2009-05-06 20:16:52 +02:00
|
|
|
|
2009-05-23 00:36:13 +02:00
|
|
|
#include "PropertyManager.h"
|
2009-05-21 00:28:43 +02:00
|
|
|
|
2009-06-24 06:10:57 +02:00
|
|
|
class Controller {
|
2009-05-23 00:36:13 +02:00
|
|
|
/*
|
|
|
|
* Name of this controller - WIFI/VPN/USBNET/BTNET/BTDUN/LOOP/etc
|
|
|
|
*/
|
|
|
|
char *mName;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Name of the system ethernet interface which this controller is
|
|
|
|
* bound to.
|
|
|
|
*/
|
|
|
|
char *mBoundInterface;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
PropertyManager *mPropMngr;
|
2009-06-15 23:10:44 +02:00
|
|
|
IControllerHandler *mHandlers;
|
2009-05-06 20:16:52 +02:00
|
|
|
|
|
|
|
public:
|
2009-06-15 23:10:44 +02:00
|
|
|
Controller(const char *name, PropertyManager *propMngr,
|
|
|
|
IControllerHandler *handlers);
|
2009-05-23 00:36:13 +02:00
|
|
|
virtual ~Controller();
|
2009-05-06 20:16:52 +02:00
|
|
|
|
|
|
|
virtual int start();
|
|
|
|
virtual int stop();
|
|
|
|
|
2009-05-21 00:28:43 +02:00
|
|
|
const char *getName() { return mName; }
|
2009-05-23 00:36:13 +02:00
|
|
|
const char *getBoundInterface() { return mBoundInterface; }
|
2009-06-24 06:10:57 +02:00
|
|
|
|
2009-05-06 20:16:52 +02:00
|
|
|
protected:
|
|
|
|
int loadKernelModule(char *modpath, const char *args);
|
|
|
|
bool isKernelModuleLoaded(const char *modtag);
|
|
|
|
int unloadKernelModule(const char *modtag);
|
2009-05-23 00:36:13 +02:00
|
|
|
int bindInterface(const char *ifname);
|
|
|
|
int unbindInterface(const char *ifname);
|
2009-05-21 00:28:43 +02:00
|
|
|
|
2009-05-06 20:16:52 +02:00
|
|
|
private:
|
|
|
|
void *loadFile(char *filename, unsigned int *_size);
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef android::List<Controller *> ControllerCollection;
|
|
|
|
#endif
|