summaryrefslogtreecommitdiffstats
path: root/qemu/roms/ipxe/src/core/pool.c
blob: 0163405f7ed3c652677475d035fbc4adb263290d (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
 * Copyright (C) 2015 Michael Brown <mbrown@fensystems.co.uk>.
 *
 * 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 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.
 *
 * You can also choose to distribute this program under the terms of
 * the Unmodified Binary Distribution Licence (as given in the file
 * COPYING.UBDL), provided that you have satisfied its requirements.
 */

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );

/**
 * @file
 *
 * Pooled connections
 *
 */

#include <assert.h>
#include <ipxe/pool.h>

/**
 * Recycle this connection after closing
 *
 * @v intf		Data transfer interface
 */
void pool_recycle ( struct interface *intf ) {

	intf_poke ( intf, pool_recycle );
}

/**
 * Reopen a defunct connection
 *
 * @v intf		Data transfer interface
 */
void pool_reopen ( struct interface *intf ) {

	intf_poke ( intf, pool_reopen );
}

/**
 * Add connection to pool
 *
 * @v pool		Pooled connection
 * @v list		List of pooled connections
 * @v expiry		Expiry time
 */
void pool_add ( struct pooled_connection *pool, struct list_head *list,
		unsigned long expiry ) {

	/* Sanity check */
	assert ( list_empty ( &pool->list ) );
	assert ( ! timer_running ( &pool->timer ) );

	/* Add to list of pooled connections */
	list_add_tail ( &pool->list, list );

	/* Start expiry timer */
	start_timer_fixed ( &pool->timer, expiry );
}

/**
 * Remove connection from pool
 *
 * @v pool		Pooled connection
 */
void pool_del ( struct pooled_connection *pool ) {

	/* Remove from list of pooled connections */
	list_del ( &pool->list );
	INIT_LIST_HEAD ( &pool->list );

	/* Stop expiry timer */
	stop_timer ( &pool->timer );

	/* Mark as a freshly recycled connection */
	pool->flags = POOL_RECYCLED;
}

/**
 * Close expired pooled connection
 *
 * @v timer		Expiry timer
 * @v over		Failure indicator
 */
void pool_expired ( struct retry_timer *timer, int over __unused ) {
	struct pooled_connection *pool =
		container_of ( timer, struct pooled_connection, timer );

	/* Sanity check */
	assert ( ! list_empty ( &pool->list ) );

	/* Remove from connection pool */
	list_del ( &pool->list );
	INIT_LIST_HEAD ( &pool->list );

	/* Close expired connection */
	pool->expired ( pool );
}