VolumeManager.h revision acc9e7dcca8978fc809fa5b4d9b819c515a980ff
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                   mUsbMassStorageConnected;
42    bool                   mDebug;
43
44public:
45    virtual ~VolumeManager();
46
47    int start();
48    int stop();
49
50    void handleBlockEvent(NetlinkEvent *evt);
51    void handleSwitchEvent(NetlinkEvent *evt);
52
53    int addVolume(Volume *v);
54
55    int listVolumes(SocketClient *cli);
56    int mountVolume(const char *label);
57    int unmountVolume(const char *label, bool force);
58    int shareVolume(const char *label, const char *method);
59    int unshareVolume(const char *label, const char *method);
60    int shareAvailable(const char *method, bool *avail);
61    int shareEnabled(const char *path, const char *method, bool *enabled);
62    int simulate(const char *cmd, const char *arg);
63    int formatVolume(const char *label);
64    int createAsec(const char *id, unsigned numSectors, const char *fstype,
65                   const char *key, int ownerUid);
66    int finalizeAsec(const char *id);
67    int destroyAsec(const char *id, bool force);
68    int mountAsec(const char *id, const char *key, int ownerUid);
69    int unmountAsec(const char *id, bool force);
70    int renameAsec(const char *id1, const char *id2);
71    int getAsecMountPath(const char *id, char *buffer, int maxlen);
72
73    void setDebug(bool enable);
74
75    // XXX: This should be moved private once switch uevents are working
76    void notifyUmsConnected(bool connected);
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    Volume *lookupVolume(const char *label);
90    bool isMountpointMounted(const char *mp);
91};
92#endif
93