VolumeManager.h revision 99635f6c289fe2528c226403ea215c917ce86037
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 _VOLUMEMANAGER_H
18#define _VOLUMEMANAGER_H
19
20#include <pthread.h>
21
22#include <utils/List.h>
23#include <sysutils/SocketListener.h>
24
25#include "Volume.h"
26
27/* The length of an MD5 hash when encoded into ASCII hex characters */
28#define MD5_ASCII_LENGTH_PLUS_NULL ((MD5_DIGEST_LENGTH*2)+1)
29
30typedef android::List<char *> AsecIdCollection;
31
32class VolumeManager {
33private:
34    static VolumeManager *sInstance;
35
36private:
37    SocketListener        *mBroadcaster;
38
39    VolumeCollection      *mVolumes;
40    AsecIdCollection      *mActiveContainers;
41    bool                   mUsbMassStorageEnabled;
42    bool                   mUsbConnected;
43    bool                   mDebug;
44
45public:
46    virtual ~VolumeManager();
47
48    int start();
49    int stop();
50
51    void handleBlockEvent(NetlinkEvent *evt);
52    void handleSwitchEvent(NetlinkEvent *evt);
53    void handleUsbCompositeEvent(NetlinkEvent *evt);
54
55    int addVolume(Volume *v);
56
57    int listVolumes(SocketClient *cli);
58    int mountVolume(const char *label);
59    int unmountVolume(const char *label, bool force);
60    int shareVolume(const char *label, const char *method);
61    int unshareVolume(const char *label, const char *method);
62    int shareAvailable(const char *method, bool *avail);
63    int shareEnabled(const char *path, const char *method, bool *enabled);
64    int simulate(const char *cmd, const char *arg);
65    int formatVolume(const char *label);
66    int createAsec(const char *id, unsigned numSectors, const char *fstype,
67                   const char *key, int ownerUid);
68    int finalizeAsec(const char *id);
69    int destroyAsec(const char *id, bool force);
70    int mountAsec(const char *id, const char *key, int ownerUid);
71    int unmountAsec(const char *id, bool force);
72    int renameAsec(const char *id1, const char *id2);
73    int getAsecMountPath(const char *id, char *buffer, int maxlen);
74
75    void setDebug(bool enable);
76
77    // XXX: Post froyo this should be moved and cleaned up
78    int cleanupAsec(Volume *v, bool force);
79
80    void setBroadcaster(SocketListener *sl) { mBroadcaster = sl; }
81    SocketListener *getBroadcaster() { return mBroadcaster; }
82
83    static VolumeManager *Instance();
84
85    static char *asecHash(const char *id, char *buffer, size_t len);
86
87private:
88    VolumeManager();
89    void readInitialState();
90    Volume *lookupVolume(const char *label);
91    bool isMountpointMounted(const char *mp);
92
93    inline bool massStorageAvailable() const { return mUsbMassStorageEnabled && mUsbConnected; }
94    void notifyUmsAvailable(bool available);
95};
96#endif
97