blob: 92131e9436d8b74dd47d3517665a3ac496d85887 [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#include <stdio.h>
18#include <stdlib.h>
19#include <errno.h>
Olivier Bailly37dcda62010-11-16 10:41:53 -080020#include <string.h>
San Mehatf1b736b2009-10-10 17:22:08 -070021
Jeff Sharkey3472e522017-10-06 18:02:53 -060022#include <android-base/logging.h>
San Mehatf1b736b2009-10-10 17:22:08 -070023
24#include <sysutils/NetlinkEvent.h>
25#include "NetlinkHandler.h"
26#include "VolumeManager.h"
27
28NetlinkHandler::NetlinkHandler(int listenerSocket) :
Wink Saville5fb760a2011-01-09 12:18:21 -080029 NetlinkListener(listenerSocket) {
San Mehatf1b736b2009-10-10 17:22:08 -070030}
31
32NetlinkHandler::~NetlinkHandler() {
33}
34
35int NetlinkHandler::start() {
36 return this->startListener();
37}
38
39int NetlinkHandler::stop() {
40 return this->stopListener();
41}
42
43void NetlinkHandler::onEvent(NetlinkEvent *evt) {
44 VolumeManager *vm = VolumeManager::Instance();
45 const char *subsys = evt->getSubsystem();
San Mehatf1b736b2009-10-10 17:22:08 -070046
47 if (!subsys) {
Jeff Sharkey3472e522017-10-06 18:02:53 -060048 LOG(WARNING) << "No subsystem found in netlink event";
San Mehatf1b736b2009-10-10 17:22:08 -070049 return;
50 }
51
Jeff Sharkey3472e522017-10-06 18:02:53 -060052 if (std::string(subsys) == "block") {
San Mehatfd7f5872009-10-12 11:32:47 -070053 vm->handleBlockEvent(evt);
San Mehatf1b736b2009-10-10 17:22:08 -070054 }
55}