TimeoutMonitor.cxx 1.65 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/*
 * Copyright (C) 2003-2013 The Music Player Daemon Project
 * 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.
 */

#include "config.h"
#include "TimeoutMonitor.hxx"
#include "Loop.hxx"

void
TimeoutMonitor::Cancel()
{
27 28 29 30 31
	if (IsActive()) {
#ifdef USE_EPOLL
		active = false;
		loop.CancelTimer(*this);
#else
32 33 34
		g_source_destroy(source);
		g_source_unref(source);
		source = nullptr;
35
#endif
36 37 38 39 40 41 42
	}
}

void
TimeoutMonitor::Schedule(unsigned ms)
{
	Cancel();
43 44 45 46 47

#ifdef USE_EPOLL
	active = true;
	loop.AddTimer(*this, ms);
#else
48
	source = loop.AddTimeout(ms, Callback, this);
49
#endif
50 51 52 53 54 55
}

void
TimeoutMonitor::ScheduleSeconds(unsigned s)
{
	Cancel();
56 57 58 59

#ifdef USE_EPOLL
	Schedule(s * 1000u);
#else
60
	source = loop.AddTimeoutSeconds(s, Callback, this);
61
#endif
62 63
}

64
void
65 66
TimeoutMonitor::Run()
{
67
#ifndef USE_EPOLL
68
	Cancel();
69 70
#endif

71
	OnTimeout();
72 73
}

74 75
#ifndef USE_EPOLL

76 77 78 79
gboolean
TimeoutMonitor::Callback(gpointer data)
{
	TimeoutMonitor &monitor = *(TimeoutMonitor *)data;
80 81
	monitor.Run();
	return false;
82
}
83 84

#endif