San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 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 "BlockDevice.h" |
| 26 | #include "Volume.h" |
| 27 | |
San Mehat | 8870516 | 2010-01-15 09:26:28 -0800 | [diff] [blame] | 28 | typedef android::List<char *> AsecIdCollection; |
| 29 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 30 | class VolumeManager { |
| 31 | private: |
| 32 | static VolumeManager *sInstance; |
| 33 | |
| 34 | private: |
| 35 | SocketListener *mBroadcaster; |
| 36 | BlockDeviceCollection *mBlockDevices; |
| 37 | |
| 38 | VolumeCollection *mVolumes; |
San Mehat | 8870516 | 2010-01-15 09:26:28 -0800 | [diff] [blame] | 39 | AsecIdCollection *mActiveContainers; |
San Mehat | a2677e4 | 2009-12-13 10:40:18 -0800 | [diff] [blame] | 40 | bool mUsbMassStorageConnected; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 41 | |
| 42 | public: |
| 43 | virtual ~VolumeManager(); |
| 44 | |
| 45 | int start(); |
| 46 | int stop(); |
| 47 | |
San Mehat | fd7f587 | 2009-10-12 11:32:47 -0700 | [diff] [blame] | 48 | void handleBlockEvent(NetlinkEvent *evt); |
San Mehat | a2677e4 | 2009-12-13 10:40:18 -0800 | [diff] [blame] | 49 | void handleSwitchEvent(NetlinkEvent *evt); |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 50 | |
| 51 | int addVolume(Volume *v); |
| 52 | |
| 53 | int listVolumes(SocketClient *cli); |
San Mehat | 49e2bce | 2009-10-12 16:29:01 -0700 | [diff] [blame] | 54 | int mountVolume(const char *label); |
San Mehat | 4ba8948 | 2010-02-18 09:00:18 -0800 | [diff] [blame] | 55 | int unmountVolume(const char *label, bool force); |
San Mehat | a2677e4 | 2009-12-13 10:40:18 -0800 | [diff] [blame] | 56 | int shareVolume(const char *label, const char *method); |
| 57 | int unshareVolume(const char *label, const char *method); |
| 58 | int shareAvailable(const char *method, bool *avail); |
San Mehat | eba65e9 | 2010-01-29 05:15:16 -0800 | [diff] [blame] | 59 | int shareEnabled(const char *path, const char *method, bool *enabled); |
San Mehat | a2677e4 | 2009-12-13 10:40:18 -0800 | [diff] [blame] | 60 | int simulate(const char *cmd, const char *arg); |
| 61 | int formatVolume(const char *label); |
San Mehat | 8b8f71b | 2010-01-11 09:17:25 -0800 | [diff] [blame] | 62 | int createAsec(const char *id, unsigned numSectors, const char *fstype, |
San Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 63 | const char *key, int ownerUid); |
| 64 | int finalizeAsec(const char *id); |
San Mehat | 4ba8948 | 2010-02-18 09:00:18 -0800 | [diff] [blame] | 65 | int destroyAsec(const char *id, bool force); |
San Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 66 | int mountAsec(const char *id, const char *key, int ownerUid); |
San Mehat | 4ba8948 | 2010-02-18 09:00:18 -0800 | [diff] [blame] | 67 | int unmountAsec(const char *id, bool force); |
San Mehat | 048b080 | 2010-01-23 08:17:06 -0800 | [diff] [blame] | 68 | int renameAsec(const char *id1, const char *id2); |
San Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 69 | int getAsecMountPath(const char *id, char *buffer, int maxlen); |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 70 | |
San Mehat | 0cde53c | 2009-12-22 08:32:33 -0800 | [diff] [blame] | 71 | // XXX: This should be moved private once switch uevents are working |
| 72 | void notifyUmsConnected(bool connected); |
| 73 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 74 | void setBroadcaster(SocketListener *sl) { mBroadcaster = sl; } |
| 75 | SocketListener *getBroadcaster() { return mBroadcaster; } |
| 76 | |
| 77 | static VolumeManager *Instance(); |
| 78 | |
| 79 | private: |
| 80 | VolumeManager(); |
San Mehat | 49e2bce | 2009-10-12 16:29:01 -0700 | [diff] [blame] | 81 | Volume *lookupVolume(const char *label); |
San Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 82 | bool isMountpointMounted(const char *mp); |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 83 | }; |
| 84 | #endif |