blob: 2a782362af163e972ed4fb4f97bff2087d014c81 [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 _DEVICEVOLUME_H
18#define _DEVICEVOLUME_H
19
20#include <utils/List.h>
21
22#include "Volume.h"
23
San Mehatdd9b8e92009-10-21 11:06:52 -070024#define MAX_PARTS 4
25
San Mehatf1b736b2009-10-10 17:22:08 -070026typedef android::List<char *> PathCollection;
27
San Mehatae10b912009-10-12 14:57:05 -070028class DirectVolume : public Volume {
San Mehatdd9b8e92009-10-21 11:06:52 -070029public:
30 static const int MAX_PARTITIONS = 4;
San Mehatf1b736b2009-10-10 17:22:08 -070031protected:
32 PathCollection *mPaths;
33 int mPartIdx;
San Mehatdd9b8e92009-10-21 11:06:52 -070034 int mDiskMajor;
35 int mDiskMinor;
36 int mPartMinors[MAX_PARTITIONS];
San Mehatf1b736b2009-10-10 17:22:08 -070037 int mDiskNumParts;
San Mehatfd7f5872009-10-12 11:32:47 -070038 unsigned char mPendingPartMap;
San Mehatf1b736b2009-10-10 17:22:08 -070039
40public:
San Mehata2677e42009-12-13 10:40:18 -080041 DirectVolume(VolumeManager *vm, const char *label, const char *mount_point, int partIdx);
San Mehatae10b912009-10-12 14:57:05 -070042 virtual ~DirectVolume();
San Mehatf1b736b2009-10-10 17:22:08 -070043
44 int addPath(const char *path);
45
San Mehatfd7f5872009-10-12 11:32:47 -070046 int handleBlockEvent(NetlinkEvent *evt);
San Mehata2677e42009-12-13 10:40:18 -080047 dev_t getDiskDevice();
48 void handleVolumeShared();
49 void handleVolumeUnshared();
50
San Mehat49e2bce2009-10-12 16:29:01 -070051protected:
San Mehata2677e42009-12-13 10:40:18 -080052 int getDeviceNodes(dev_t *devs, int max);
San Mehatfd7f5872009-10-12 11:32:47 -070053
54private:
55 void handleDiskAdded(const char *devpath, NetlinkEvent *evt);
56 void handleDiskRemoved(const char *devpath, NetlinkEvent *evt);
San Mehata2677e42009-12-13 10:40:18 -080057 void handleDiskChanged(const char *devpath, NetlinkEvent *evt);
San Mehatfd7f5872009-10-12 11:32:47 -070058 void handlePartitionAdded(const char *devpath, NetlinkEvent *evt);
59 void handlePartitionRemoved(const char *devpath, NetlinkEvent *evt);
San Mehata2677e42009-12-13 10:40:18 -080060 void handlePartitionChanged(const char *devpath, NetlinkEvent *evt);
61
62 int doMountVfat(const char *deviceNode, const char *mountPoint);
San Mehat49e2bce2009-10-12 16:29:01 -070063
San Mehatf1b736b2009-10-10 17:22:08 -070064};
65
San Mehatae10b912009-10-12 14:57:05 -070066typedef android::List<DirectVolume *> DirectVolumeCollection;
San Mehatf1b736b2009-10-10 17:22:08 -070067
68#endif