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 | #include <stdio.h> |
San Mehat | fd7f587 | 2009-10-12 11:32:47 -0700 | [diff] [blame^] | 18 | #include <stdlib.h> |
| 19 | #include <string.h> |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 20 | #include <errno.h> |
| 21 | |
| 22 | #define LOG_TAG "Vold" |
| 23 | |
| 24 | #include <cutils/log.h> |
| 25 | |
San Mehat | fd7f587 | 2009-10-12 11:32:47 -0700 | [diff] [blame^] | 26 | #include <sysutils/NetlinkEvent.h> |
| 27 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 28 | #include "VolumeManager.h" |
| 29 | #include "DeviceVolume.h" |
| 30 | #include "ErrorCode.h" |
| 31 | |
| 32 | VolumeManager *VolumeManager::sInstance = NULL; |
| 33 | |
| 34 | VolumeManager *VolumeManager::Instance() { |
| 35 | if (!sInstance) |
| 36 | sInstance = new VolumeManager(); |
| 37 | return sInstance; |
| 38 | } |
| 39 | |
| 40 | VolumeManager::VolumeManager() { |
| 41 | mBlockDevices = new BlockDeviceCollection(); |
| 42 | mVolumes = new VolumeCollection(); |
| 43 | mBroadcaster = NULL; |
| 44 | } |
| 45 | |
| 46 | VolumeManager::~VolumeManager() { |
| 47 | delete mBlockDevices; |
| 48 | } |
| 49 | |
| 50 | int VolumeManager::start() { |
| 51 | return 0; |
| 52 | } |
| 53 | |
| 54 | int VolumeManager::stop() { |
| 55 | return 0; |
| 56 | } |
| 57 | |
| 58 | int VolumeManager::addVolume(Volume *v) { |
| 59 | mVolumes->push_back(v); |
| 60 | return 0; |
| 61 | } |
| 62 | |
San Mehat | fd7f587 | 2009-10-12 11:32:47 -0700 | [diff] [blame^] | 63 | void VolumeManager::handleBlockEvent(NetlinkEvent *evt) { |
| 64 | const char *devpath = evt->findParam("DEVPATH"); |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 65 | |
San Mehat | fd7f587 | 2009-10-12 11:32:47 -0700 | [diff] [blame^] | 66 | /* Lookup a volume to handle this device */ |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 67 | VolumeCollection::iterator it; |
| 68 | bool hit = false; |
| 69 | for (it = mVolumes->begin(); it != mVolumes->end(); ++it) { |
San Mehat | fd7f587 | 2009-10-12 11:32:47 -0700 | [diff] [blame^] | 70 | if (!(*it)->handleBlockEvent(evt)) { |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 71 | hit = true; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 72 | break; |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | if (!hit) { |
San Mehat | fd7f587 | 2009-10-12 11:32:47 -0700 | [diff] [blame^] | 77 | LOGW("No volumes handled block event for '%s'", devpath); |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 78 | } |
| 79 | } |
| 80 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 81 | int VolumeManager::listVolumes(SocketClient *cli) { |
| 82 | VolumeCollection::iterator i; |
| 83 | |
| 84 | for (i = mVolumes->begin(); i != mVolumes->end(); ++i) { |
| 85 | char *buffer; |
| 86 | asprintf(&buffer, "%s %s %d", |
| 87 | (*i)->getLabel(), (*i)->getMountpoint(), |
| 88 | (*i)->getState()); |
| 89 | cli->sendMsg(ErrorCode::VolumeListResult, buffer, false); |
| 90 | free(buffer); |
| 91 | } |
| 92 | cli->sendMsg(ErrorCode::CommandOkay, "Volumes Listed", false); |
| 93 | return 0; |
| 94 | } |