Skip to main content
summaryrefslogtreecommitdiffstats
blob: 63ae35bdc69b0b1c18c8462f855b8652042a59cd (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2012 Xilinx, Inc. and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and Eclipse Distribution License v1.0 which accompany this distribution.
 * The Eclipse Public License is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * and the Eclipse Distribution License is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 * You may elect to redistribute this code under either of these licenses.
 *
 * Contributors:
 *     Xilinx - initial API and implementation
 *******************************************************************************/

/*
 * Shutdown manager allows subsystems to register for notification to
 * support controlled shutdown of the TCF framework and its add-ons.
 *
 * A subsystem registers for notificatios by calling
 * shutdown_set_normal() with a subsystem specific ShutdownInfo object
 * containing a subsystem callback function, client data and subsystem
 * shutdown state.
 *
 * The callback function should initiate shutdown of the subsystem and
 * when completed call shutdown_set_stopped(), or if the subsystem
 * cannot be stopped because other subsystems actively using it to
 * complete their shutdown sequence the subsystem may choose request
 * futher notification callbacks by calling shutdown_set_normal()
 * again, however this should be done carefully to avoid infinite
 * loops.
 */

#ifndef D_shutdown
#define D_shutdown

#include <tcf/framework/link.h>

#define active2ShutdownInfo(A)  ((ShutdownInfo *)((char *)(A) - offsetof(ShutdownInfo, link_active)))

typedef struct ShutdownInfo ShutdownInfo;

typedef enum {
    /* Shutdown object is stopped and is not on shutdown_active list */
    SHUTDOWN_STATE_STOPPED = 0,

    /* Shutdown object needs to be notified if shutdown is started or
     * the state of other shutdown objects is changed */
    SHUTDOWN_STATE_NORMAL,

    /* Shutdown object down has been notified and will updates its
     * state when possible */
    SHUTDOWN_STATE_PENDING
} ShutdownState;

struct ShutdownInfo {
    /* Called to notify of initial shutdown request or state changes
     * of other shutdown objects */
    void (*notify)(ShutdownInfo *);

    /* Client specific data */
    void * client_data;

    /* State of object */
    ShutdownState state;

    /* List of active object */
    LINK link_active;
};

/* List of active shutdown objects, i.e. states NORMAL or PENDING */
extern LINK shutdown_active;

/*
 * Initiates shutdown process.  Returns true if shutdown is already started.
 *
 * handler - the function that should called when shutdown is complete.
 * arg - pointer to shutdown data.
 */
extern int shutdown_start(void (*handler)(void *arg), void * arg);

/*
 * Set state of shutdown of object to stopped.
 *
 * obj - affected ShutdownInfo object.
 */
extern void shutdown_set_stopped(ShutdownInfo *obj);

/*
 * Set state of shutdown of object to normal.
 *
 * obj - affected ShutdownInfo object.
 */
extern void shutdown_set_normal(ShutdownInfo *obj);

#endif /* D_shutdown */

Back to the top