]> git.sesse.net Git - vlc/blob - src/video_output/control.c
Use var_Inherit* instead of var_CreateGet*.
[vlc] / src / video_output / control.c
1 /*****************************************************************************
2  * control.c : vout internal control
3  *****************************************************************************
4  * Copyright (C) 2009 Laurent Aimar
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir _AT_ videolan _DOT_ org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include <vlc_common.h>
29 #include <vlc_vout.h>
30 #include "control.h"
31
32 /* */
33 void vout_control_cmd_Init(vout_control_cmd_t *cmd, int type)
34 {
35     memset(cmd, 0, sizeof(*cmd));
36     cmd->type = type;
37 }
38
39 void vout_control_cmd_Clean(vout_control_cmd_t *cmd)
40 {
41     switch (cmd->type) {
42     case VOUT_CONTROL_SUBPICTURE:
43         if (cmd->u.subpicture)
44             subpicture_Delete(cmd->u.subpicture);
45         break;
46     case VOUT_CONTROL_OSD_TITLE:
47     case VOUT_CONTROL_CHANGE_FILTERS:
48     case VOUT_CONTROL_CHANGE_SUB_FILTERS:
49         free(cmd->u.string);
50         break;
51     default:
52         break;
53     }
54 }
55
56 /* */
57 void vout_control_Init(vout_control_t *ctrl)
58 {
59     vlc_mutex_init(&ctrl->lock);
60     vlc_cond_init(&ctrl->wait_request);
61     vlc_cond_init(&ctrl->wait_acknowledge);
62
63     ctrl->is_dead = false;
64     ctrl->is_sleeping = false;
65     ctrl->can_sleep = true;
66     ctrl->is_processing = false;
67     ARRAY_INIT(ctrl->cmd);
68 }
69
70 void vout_control_Clean(vout_control_t *ctrl)
71 {
72     /* */
73     for (int i = 0; i < ctrl->cmd.i_size; i++) {
74         vout_control_cmd_t cmd = ARRAY_VAL(ctrl->cmd, i);
75         vout_control_cmd_Clean(&cmd);
76     }
77     ARRAY_RESET(ctrl->cmd);
78
79     vlc_mutex_destroy(&ctrl->lock);
80     vlc_cond_destroy(&ctrl->wait_request);
81     vlc_cond_destroy(&ctrl->wait_acknowledge);
82 }
83
84 void vout_control_Dead(vout_control_t *ctrl)
85 {
86     vlc_mutex_lock(&ctrl->lock);
87     ctrl->is_dead = true;
88     vlc_cond_broadcast(&ctrl->wait_acknowledge);
89     vlc_mutex_unlock(&ctrl->lock);
90
91 }
92
93 void vout_control_WaitEmpty(vout_control_t *ctrl)
94 {
95     vlc_mutex_lock(&ctrl->lock);
96     while ((ctrl->cmd.i_size > 0 || ctrl->is_processing) && !ctrl->is_dead)
97         vlc_cond_wait(&ctrl->wait_acknowledge, &ctrl->lock);
98     vlc_mutex_unlock(&ctrl->lock);
99 }
100
101 void vout_control_Push(vout_control_t *ctrl, vout_control_cmd_t *cmd)
102 {
103     vlc_mutex_lock(&ctrl->lock);
104     if (!ctrl->is_dead) {
105         ARRAY_APPEND(ctrl->cmd, *cmd);
106         vlc_cond_signal(&ctrl->wait_request);
107     } else {
108         vout_control_cmd_Clean(cmd);
109     }
110     vlc_mutex_unlock(&ctrl->lock);
111 }
112
113 void vout_control_Wake(vout_control_t *ctrl)
114 {
115     vlc_mutex_lock(&ctrl->lock);
116     ctrl->can_sleep = false;
117     if (ctrl->is_sleeping)
118         vlc_cond_signal(&ctrl->wait_request);
119     vlc_mutex_unlock(&ctrl->lock);
120 }
121
122 void vout_control_PushVoid(vout_control_t *ctrl, int type)
123 {
124     vout_control_cmd_t cmd;
125
126     vout_control_cmd_Init(&cmd, type);
127     vout_control_Push(ctrl, &cmd);
128 }
129 void vout_control_PushBool(vout_control_t *ctrl, int type, bool boolean)
130 {
131     vout_control_cmd_t cmd;
132
133     vout_control_cmd_Init(&cmd, type);
134     cmd.u.boolean = boolean;
135     vout_control_Push(ctrl, &cmd);
136 }
137 void vout_control_PushInteger(vout_control_t *ctrl, int type, int integer)
138 {
139     vout_control_cmd_t cmd;
140
141     vout_control_cmd_Init(&cmd, type);
142     cmd.u.integer = integer;
143     vout_control_Push(ctrl, &cmd);
144 }
145 void vout_control_PushTime(vout_control_t *ctrl, int type, mtime_t time)
146 {
147     vout_control_cmd_t cmd;
148
149     vout_control_cmd_Init(&cmd, type);
150     cmd.u.time = time;
151     vout_control_Push(ctrl, &cmd);
152 }
153 void vout_control_PushMessage(vout_control_t *ctrl, int type, int channel, const char *string)
154 {
155     vout_control_cmd_t cmd;
156
157     vout_control_cmd_Init(&cmd, type);
158     cmd.u.message.channel = channel;
159     cmd.u.message.string = strdup(string);
160     vout_control_Push(ctrl, &cmd);
161 }
162 void vout_control_PushPair(vout_control_t *ctrl, int type, int a, int b)
163 {
164     vout_control_cmd_t cmd;
165
166     vout_control_cmd_Init(&cmd, type);
167     cmd.u.pair.a = a;
168     cmd.u.pair.b = b;
169     vout_control_Push(ctrl, &cmd);
170 }
171 void vout_control_PushString(vout_control_t *ctrl, int type, const char *string)
172 {
173     vout_control_cmd_t cmd;
174
175     vout_control_cmd_Init(&cmd, type);
176     cmd.u.string = strdup(string);
177     vout_control_Push(ctrl, &cmd);
178 }
179
180 int vout_control_Pop(vout_control_t *ctrl, vout_control_cmd_t *cmd,
181                      mtime_t deadline, mtime_t timeout)
182 {
183     vlc_mutex_lock(&ctrl->lock);
184     if (ctrl->cmd.i_size <= 0) {
185         ctrl->is_processing = false;
186         vlc_cond_broadcast(&ctrl->wait_acknowledge);
187
188         const mtime_t max_deadline = mdate() + timeout;
189
190         /* Supurious wake up are perfectly fine */
191         if (deadline <= VLC_TS_INVALID) {
192             ctrl->is_sleeping = true;
193             if (ctrl->can_sleep)
194                 vlc_cond_timedwait(&ctrl->wait_request, &ctrl->lock, max_deadline);
195             ctrl->is_sleeping = false;
196         } else {
197             vlc_cond_timedwait(&ctrl->wait_request, &ctrl->lock, __MIN(deadline, max_deadline));
198         }
199     }
200
201     bool has_cmd;
202     if (ctrl->cmd.i_size > 0) {
203         has_cmd = true;
204         *cmd = ARRAY_VAL(ctrl->cmd, 0);
205         ARRAY_REMOVE(ctrl->cmd, 0);
206
207         ctrl->is_processing = true;
208     } else {
209         has_cmd = false;
210         ctrl->can_sleep = true;
211     }
212     vlc_mutex_unlock(&ctrl->lock);
213
214     return has_cmd ? VLC_SUCCESS : VLC_EGENERIC;
215 }
216