/usr/include/d/gtkd-3/gstreamer/Poll.d is in libgstreamerd-3-dev 3.7.5-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 | /*
* This file is part of gtkD.
*
* gtkD is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 3
* of the License, or (at your option) any later version, with
* some exceptions, please read the COPYING file.
*
* gtkD 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with gtkD; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
*/
// generated automatically - do not change
// find conversion definition on APILookup.txt
// implement new conversion functionalities on the wrap.utils pakage
module gstreamer.Poll;
private import glib.ConstructionException;
private import gobject.ObjectG;
private import gstreamer.PollFD;
private import gstreamer.c.functions;
public import gstreamer.c.types;
public import gstreamerc.gstreamertypes;
private import gtkd.Loader;
/**
* A #GstPoll keeps track of file descriptors much like fd_set (used with
* select()) or a struct pollfd array (used with poll()). Once created with
* gst_poll_new(), the set can be used to wait for file descriptors to be
* readable and/or writable. It is possible to make this wait be controlled
* by specifying %TRUE for the @controllable flag when creating the set (or
* later calling gst_poll_set_controllable()).
*
* New file descriptors are added to the set using gst_poll_add_fd(), and
* removed using gst_poll_remove_fd(). Controlling which file descriptors
* should be waited for to become readable and/or writable are done using
* gst_poll_fd_ctl_read() and gst_poll_fd_ctl_write().
*
* Use gst_poll_wait() to wait for the file descriptors to actually become
* readable and/or writable, or to timeout if no file descriptor is available
* in time. The wait can be controlled by calling gst_poll_restart() and
* gst_poll_set_flushing().
*
* Once the file descriptor set has been waited for, one can use
* gst_poll_fd_has_closed() to see if the file descriptor has been closed,
* gst_poll_fd_has_error() to see if it has generated an error,
* gst_poll_fd_can_read() to see if it is possible to read from the file
* descriptor, and gst_poll_fd_can_write() to see if it is possible to
* write to it.
*/
public class Poll
{
/** the main Gtk struct */
protected GstPoll* gstPoll;
protected bool ownedRef;
/** Get the main Gtk struct */
public GstPoll* getPollStruct(bool transferOwnership = false)
{
if (transferOwnership)
ownedRef = false;
return gstPoll;
}
/** the main Gtk struct as a void* */
protected void* getStruct()
{
return cast(void*)gstPoll;
}
/**
* Sets our main struct and passes it to the parent class.
*/
public this (GstPoll* gstPoll, bool ownedRef = false)
{
this.gstPoll = gstPoll;
this.ownedRef = ownedRef;
}
~this ()
{
if ( Linker.isLoaded(LIBRARY_GSTREAMER) && ownedRef )
gst_poll_free(gstPoll);
}
/**
* Add a file descriptor to the file descriptor set.
*
* Params:
* fd = a file descriptor.
*
* Returns: %TRUE if the file descriptor was successfully added to the set.
*/
public bool addFd(PollFD fd)
{
return gst_poll_add_fd(gstPoll, (fd is null) ? null : fd.getPollFDStruct()) != 0;
}
/**
* Check if @fd in @set has data to be read.
*
* Params:
* fd = a file descriptor.
*
* Returns: %TRUE if the descriptor has data to be read.
*/
public bool fdCanRead(PollFD fd)
{
return gst_poll_fd_can_read(gstPoll, (fd is null) ? null : fd.getPollFDStruct()) != 0;
}
/**
* Check if @fd in @set can be used for writing.
*
* Params:
* fd = a file descriptor.
*
* Returns: %TRUE if the descriptor can be used for writing.
*/
public bool fdCanWrite(PollFD fd)
{
return gst_poll_fd_can_write(gstPoll, (fd is null) ? null : fd.getPollFDStruct()) != 0;
}
/**
* Control whether the descriptor @fd in @set will be monitored for
* readability.
*
* Params:
* fd = a file descriptor.
* active = a new status.
*
* Returns: %TRUE if the descriptor was successfully updated.
*/
public bool fdCtlRead(PollFD fd, bool active)
{
return gst_poll_fd_ctl_read(gstPoll, (fd is null) ? null : fd.getPollFDStruct(), active) != 0;
}
/**
* Control whether the descriptor @fd in @set will be monitored for
* writability.
*
* Params:
* fd = a file descriptor.
* active = a new status.
*
* Returns: %TRUE if the descriptor was successfully updated.
*/
public bool fdCtlWrite(PollFD fd, bool active)
{
return gst_poll_fd_ctl_write(gstPoll, (fd is null) ? null : fd.getPollFDStruct(), active) != 0;
}
/**
* Check if @fd in @set has closed the connection.
*
* Params:
* fd = a file descriptor.
*
* Returns: %TRUE if the connection was closed.
*/
public bool fdHasClosed(PollFD fd)
{
return gst_poll_fd_has_closed(gstPoll, (fd is null) ? null : fd.getPollFDStruct()) != 0;
}
/**
* Check if @fd in @set has an error.
*
* Params:
* fd = a file descriptor.
*
* Returns: %TRUE if the descriptor has an error.
*/
public bool fdHasError(PollFD fd)
{
return gst_poll_fd_has_error(gstPoll, (fd is null) ? null : fd.getPollFDStruct()) != 0;
}
/**
* Mark @fd as ignored so that the next call to gst_poll_wait() will yield
* the same result for @fd as last time. This function must be called if no
* operation (read/write/recv/send/etc.) will be performed on @fd before
* the next call to gst_poll_wait().
*
* The reason why this is needed is because the underlying implementation
* might not allow querying the fd more than once between calls to one of
* the re-enabling operations.
*
* Params:
* fd = a file descriptor.
*/
public void fdIgnored(PollFD fd)
{
gst_poll_fd_ignored(gstPoll, (fd is null) ? null : fd.getPollFDStruct());
}
/**
* Free a file descriptor set.
*/
public void free()
{
gst_poll_free(gstPoll);
ownedRef = false;
}
/**
* Get a GPollFD for the reading part of the control socket. This is useful when
* integrating with a GSource and GMainLoop.
*
* Params:
* fd = a #GPollFD
*/
public void getReadGpollfd(GPollFD* fd)
{
gst_poll_get_read_gpollfd(gstPoll, fd);
}
/**
* Read a byte from the control socket of the controllable @set.
*
* This function only works for timer #GstPoll objects created with
* gst_poll_new_timer().
*
* Returns: %TRUE on success. %FALSE when when there was no byte to read or
* reading the byte failed. If there was no byte to read, and only then, errno
* will contain EWOULDBLOCK or EAGAIN. For all other values of errno this always signals a
* critical error.
*/
public bool readControl()
{
return gst_poll_read_control(gstPoll) != 0;
}
/**
* Remove a file descriptor from the file descriptor set.
*
* Params:
* fd = a file descriptor.
*
* Returns: %TRUE if the file descriptor was successfully removed from the set.
*/
public bool removeFd(PollFD fd)
{
return gst_poll_remove_fd(gstPoll, (fd is null) ? null : fd.getPollFDStruct()) != 0;
}
/**
* Restart any gst_poll_wait() that is in progress. This function is typically
* used after adding or removing descriptors to @set.
*
* If @set is not controllable, then this call will have no effect.
*
* This function only works for non-timer #GstPoll objects created with
* gst_poll_new().
*/
public void restart()
{
gst_poll_restart(gstPoll);
}
/**
* When @controllable is %TRUE, this function ensures that future calls to
* gst_poll_wait() will be affected by gst_poll_restart() and
* gst_poll_set_flushing().
*
* This function only works for non-timer #GstPoll objects created with
* gst_poll_new().
*
* Params:
* controllable = new controllable state.
*
* Returns: %TRUE if the controllability of @set could be updated.
*/
public bool setControllable(bool controllable)
{
return gst_poll_set_controllable(gstPoll, controllable) != 0;
}
/**
* When @flushing is %TRUE, this function ensures that current and future calls
* to gst_poll_wait() will return -1, with errno set to EBUSY.
*
* Unsetting the flushing state will restore normal operation of @set.
*
* This function only works for non-timer #GstPoll objects created with
* gst_poll_new().
*
* Params:
* flushing = new flushing state.
*/
public void setFlushing(bool flushing)
{
gst_poll_set_flushing(gstPoll, flushing);
}
/**
* Wait for activity on the file descriptors in @set. This function waits up to
* the specified @timeout. A timeout of #GST_CLOCK_TIME_NONE waits forever.
*
* For #GstPoll objects created with gst_poll_new(), this function can only be
* called from a single thread at a time. If called from multiple threads,
* -1 will be returned with errno set to EPERM.
*
* This is not true for timer #GstPoll objects created with
* gst_poll_new_timer(), where it is allowed to have multiple threads waiting
* simultaneously.
*
* Params:
* timeout = a timeout in nanoseconds.
*
* Returns: The number of #GstPollFD in @set that have activity or 0 when no
* activity was detected after @timeout. If an error occurs, -1 is returned
* and errno is set.
*/
public int wait(GstClockTime timeout)
{
return gst_poll_wait(gstPoll, timeout);
}
/**
* Write a byte to the control socket of the controllable @set.
* This function is mostly useful for timer #GstPoll objects created with
* gst_poll_new_timer().
*
* It will make any current and future gst_poll_wait() function return with
* 1, meaning the control socket is set. After an equal amount of calls to
* gst_poll_read_control() have been performed, calls to gst_poll_wait() will
* block again until their timeout expired.
*
* This function only works for timer #GstPoll objects created with
* gst_poll_new_timer().
*
* Returns: %TRUE on success. %FALSE when when the byte could not be written.
* errno contains the detailed error code but will never be EAGAIN, EINTR or
* EWOULDBLOCK. %FALSE always signals a critical error.
*/
public bool writeControl()
{
return gst_poll_write_control(gstPoll) != 0;
}
/**
* Create a new file descriptor set. If @controllable, it
* is possible to restart or flush a call to gst_poll_wait() with
* gst_poll_restart() and gst_poll_set_flushing() respectively.
*
* Free-function: gst_poll_free
*
* Params:
* controllable = whether it should be possible to control a wait.
*
* Returns: a new #GstPoll, or %NULL in
* case of an error. Free with gst_poll_free().
*
* Throws: ConstructionException GTK+ fails to create the object.
*/
public this(bool controllable)
{
auto p = gst_poll_new(controllable);
if(p is null)
{
throw new ConstructionException("null returned by new");
}
this(cast(GstPoll*) p);
}
/**
* Create a new poll object that can be used for scheduling cancellable
* timeouts.
*
* A timeout is performed with gst_poll_wait(). Multiple timeouts can be
* performed from different threads.
*
* Free-function: gst_poll_free
*
* Returns: a new #GstPoll, or %NULL in
* case of an error. Free with gst_poll_free().
*
* Throws: ConstructionException GTK+ fails to create the object.
*/
public this()
{
auto p = gst_poll_new_timer();
if(p is null)
{
throw new ConstructionException("null returned by new_timer");
}
this(cast(GstPoll*) p);
}
}
|