blob: a4f62c69e9e7f5fb972b5e59fabfb21b9da37bd3 [file] [log] [blame]
San Mehat168415b2009-05-06 11:14:21 -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#include <errno.h>
17
18#include <sys/types.h>
19#include <sys/socket.h>
San Mehat3d407292009-05-07 08:49:30 -070020#include <string.h>
San Mehat168415b2009-05-06 11:14:21 -070021
22#define LOG_TAG "NetlinkListener"
23#include <cutils/log.h>
24
25#include <sysutils/NetlinkListener.h>
26#include <sysutils/NetlinkEvent.h>
27
28NetlinkListener::NetlinkListener(int socket) :
29 SocketListener(socket, false) {
30}
31
San Mehatfa644ff2009-05-08 11:15:53 -070032bool NetlinkListener::onDataAvailable(SocketClient *cli)
San Mehat168415b2009-05-06 11:14:21 -070033{
San Mehatfa644ff2009-05-08 11:15:53 -070034 int socket = cli->getSocket();
San Mehat168415b2009-05-06 11:14:21 -070035 int count;
36
David 'Digit' Turnerb59539d2011-01-17 02:04:37 +010037 count = TEMP_FAILURE_RETRY(recv(socket, mBuffer, sizeof(mBuffer), 0));
38 if (count < 0) {
San Mehat7e8529a2010-03-25 09:31:42 -070039 SLOGE("recv failed (%s)", strerror(errno));
San Mehat168415b2009-05-06 11:14:21 -070040 return false;
41 }
42
43 NetlinkEvent *evt = new NetlinkEvent();
44 if (!evt->decode(mBuffer, count)) {
San Mehat7e8529a2010-03-25 09:31:42 -070045 SLOGE("Error decoding NetlinkEvent");
San Mehat168415b2009-05-06 11:14:21 -070046 goto out;
47 }
48
San Mehatebfe3db2009-10-10 17:35:13 -070049 onEvent(evt);
San Mehat168415b2009-05-06 11:14:21 -070050out:
51 delete evt;
52 return true;
53}