SocketEvent.cxx 3.06 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2021 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
 * http://www.musicpd.org
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

20
#include "SocketEvent.hxx"
21
#include "Loop.hxx"
22
#include "event/Features.h"
23

24
#include <cassert>
25
#include <utility>
26

27 28 29 30
#ifdef USE_EPOLL
#include <cerrno>
#endif

31
void
32
SocketEvent::Open(SocketDescriptor _fd) noexcept
33
{
34
	assert(_fd.IsDefined());
35 36
	assert(!fd.IsDefined());
	assert(GetScheduledFlags() == 0);
37 38 39 40

	fd = _fd;
}

41
void
42
SocketEvent::Close() noexcept
43
{
44 45 46
	if (!fd.IsDefined())
		return;

47 48 49
	/* closing the socket automatically unregisters it from epoll,
	   so we can omit the epoll_ctl(EPOLL_CTL_DEL) call and save
	   one system call */
50 51 52 53 54 55 56 57 58
	if (std::exchange(scheduled_flags, 0) != 0) {
#ifdef HAVE_THREADED_EVENT_LOOP
		/* can't use this optimization in multi-threaded
		   programs, because all file descriptors get
		   duplicated in forked processes, leaving them
		   registered in epoll, which could cause the parent
		   to crash */
		loop.RemoveFD(fd.Get(), *this);
#else
59
		loop.AbandonFD(*this);
60 61
#endif
	}
62
	fd.Close();
63
}
64

65 66 67 68
void
SocketEvent::Abandon() noexcept
{
	if (std::exchange(scheduled_flags, 0) != 0)
69
		loop.AbandonFD(*this);
70 71 72 73

	fd = SocketDescriptor::Undefined();
}

74
bool
75
SocketEvent::Schedule(unsigned flags) noexcept
76
{
77 78 79
	if (flags != 0)
		flags |= IMPLICIT_FLAGS;

80
	if (flags == GetScheduledFlags())
81
		return true;
82

83 84
	assert(IsDefined());

85
	bool success;
86
	if (scheduled_flags == 0)
87
		success = loop.AddFD(fd.Get(), flags, *this);
88
	else if (flags == 0)
89
		success = loop.RemoveFD(fd.Get(), *this);
90
	else
91 92 93 94
		success = loop.ModifyFD(fd.Get(), flags, *this);

	if (success)
		scheduled_flags = flags;
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
#ifdef USE_EPOLL
	else if (errno == EBADF || errno == ENOENT)
		/* the socket was probably closed by somebody else
		   (EBADF) or a new file descriptor with the same
		   number was created but not registered already
		   (ENOENT) - we can assume that there are no
		   scheduled events */
		/* note that when this happens, we're actually lucky
		   that it has failed - imagine another thread may
		   meanwhile have created something on the same file
		   descriptor number, and has registered it; the
		   epoll_ctl() call above would then have succeeded,
		   but broke the other thread's epoll registration */
		scheduled_flags = 0;
#endif
110

111
	return success;
112
}
113 114 115 116 117

void
SocketEvent::Dispatch() noexcept
{
	const unsigned flags = std::exchange(ready_flags, 0) &
118
		GetScheduledFlags();
119 120 121 122

	if (flags != 0)
		callback(flags);
}