wl_proxy - Online Linux Manual PageSection : 3
Updated : Thu Jan 28 2021
Source : Version 1.19.0
Note : Wayland

NAMEwl_proxy − Represents a protocol object on the client side​.

SYNOPSIS
#include <wayland−client−core​.h>

Public Member Functionsstruct wl_proxy * wl_proxy_create (struct wl_proxy *factory, const struct wl_interface *interface)
void wl_proxy_destroy (struct wl_proxy *proxy)
int wl_proxy_add_listener (struct wl_proxy *proxy, void(**implementation)(void), void *data)
const void * wl_proxy_get_listener (struct wl_proxy *proxy)
int wl_proxy_add_dispatcher (struct wl_proxy *proxy, wl_dispatcher_func_t dispatcher, const void *implementation, void *data)
struct wl_proxy * wl_proxy_marshal_array_constructor (struct wl_proxy *proxy, uint32_t opcode, union wl_argument *args, const struct wl_interface *interface)
struct wl_proxy * wl_proxy_marshal_array_constructor_versioned (struct wl_proxy *proxy, uint32_t opcode, union wl_argument *args, const struct wl_interface *interface, uint32_t version)
void wl_proxy_marshal (struct wl_proxy *proxy, uint32_t opcode,​.​.​.)
struct wl_proxy * wl_proxy_marshal_constructor (struct wl_proxy *proxy, uint32_t opcode, const struct wl_interface *interface,​.​.​.)
struct wl_proxy * wl_proxy_marshal_constructor_versioned (struct wl_proxy *proxy, uint32_t opcode, const struct wl_interface *interface, uint32_t version,​.​.​.)
void wl_proxy_marshal_array (struct wl_proxy *proxy, uint32_t opcode, union wl_argument *args)
void wl_proxy_set_user_data (struct wl_proxy *proxy, void *user_data)
void * wl_proxy_get_user_data (struct wl_proxy *proxy)
uint32_t wl_proxy_get_version (struct wl_proxy *proxy)
uint32_t wl_proxy_get_id (struct wl_proxy *proxy)
void wl_proxy_set_tag (struct wl_proxy *proxy, const char *const *tag)
const char *const * wl_proxy_get_tag (struct wl_proxy *proxy)
const char * wl_proxy_get_class (struct wl_proxy *proxy)
void wl_proxy_set_queue (struct wl_proxy *proxy, struct wl_event_queue *queue)
void * wl_proxy_create_wrapper (void *proxy)
void wl_proxy_wrapper_destroy (void *proxy_wrapper)

Detailed DescriptionRepresents a protocol object on the client side​. A wl_proxy acts as a client side proxy to an object existing in the compositor​. The proxy is responsible for converting requests made by the clients with wl_proxy_marshal() into Wayland's wire format​. Events coming from the compositor are also handled by the proxy, which will in turn call the handler set with wl_proxy_add_listener()​. Note With the exception of function wl_proxy_set_queue(), functions accessing a wl_proxy are not normally used by client code​. Clients should normally use the higher level interface generated by the scanner to interact with compositor objects​.

Member Function Documentation

int wl_proxy_add_dispatcher (struct wl_proxy * proxy, wl_dispatcher_func_t dispatcher, const void * implementation, void * data)Set a proxy's listener (with dispatcher) Parameters proxy The proxy object
dispatcher The dispatcher to be used for this proxy
implementation The dispatcher-specific listener implementation
data User data to be associated with the proxy
Returns 0 on success or -1 on failure Set proxy's listener to use dispatcher_func as its dispatcher and dispatcher_data as its dispatcher-specific implementation and its user data to data​. If a listener has already been set, this function fails and nothing is changed​. The exact details of dispatcher_data depend on the dispatcher used​. This function is intended to be used by language bindings, not user code​. proxy must not be a proxy wrapper​.

int wl_proxy_add_listener (struct wl_proxy * proxy, void(**)(void) implementation, void * data)Set a proxy's listener Parameters proxy The proxy object
implementation The listener to be added to proxy
data User data to be associated with the proxy
Returns 0 on success or -1 on failure Set proxy's listener to implementation and its user data to data​. If a listener has already been set, this function fails and nothing is changed​. implementation is a vector of function pointers​. For an opcode n, implementation[n] should point to the handler of n for the given object​. proxy must not be a proxy wrapper​.

struct wl_proxy * wl_proxy_create (struct wl_proxy * factory, const struct wl_interface * interface)Create a proxy object with a given interface Parameters factory Factory proxy object
interface Interface the proxy object should use
Returns A newly allocated proxy object or NULL on failure This function creates a new proxy object with the supplied interface​. The proxy object will have an id assigned from the client id space​. The id should be created on the compositor side by sending an appropriate request with wl_proxy_marshal()​. The proxy will inherit the display and event queue of the factory object​. Note This should not normally be used by non-generated code​. See also wl_display, wl_event_queue, wl_proxy_marshal()

void * wl_proxy_create_wrapper (void * proxy)Create a proxy wrapper for making queue assignments thread-safe Parameters proxy The proxy object to be wrapped Returns A proxy wrapper for the given proxy or NULL on failure A proxy wrapper is type of 'struct wl_proxy' instance that can be used when sending requests instead of using the original proxy​. A proxy wrapper does not have an implementation or dispatcher, and events received on the object is still emitted on the original proxy​. Trying to set an implementation or dispatcher will have no effect but result in a warning being logged​. Setting the proxy queue of the proxy wrapper will make new objects created using the proxy wrapper use the set proxy queue​. Even though there is no implementation nor dispatcher, the proxy queue can be changed​. This will affect the default queue of new objects created by requests sent via the proxy wrapper​. A proxy wrapper can only be destroyed using wl_proxy_wrapper_destroy()​. A proxy wrapper must be destroyed before the proxy it was created from​. If a user reads and dispatches events on more than one thread, it is necessary to use a proxy wrapper when sending requests on objects when the intention is that a newly created proxy is to use a proxy queue different from the proxy the request was sent on, as creating the new proxy and then setting the queue is not thread safe​. For example, a module that runs using its own proxy queue that needs to do display roundtrip must wrap the wl_display proxy object before sending the wl_display​.sync request​. For example: struct wl_event_queue *queue = ​.​.​.; struct wl_display *wrapped_display; struct wl_callback *callback; wrapped_display = wl_proxy_create_wrapper(display); wl_proxy_set_queue((struct wl_proxy *) wrapped_display, queue); callback = wl_display_sync(wrapped_display); wl_proxy_wrapper_destroy(wrapped_display); wl_callback_add_listener(callback, ​.​.​.);

void wl_proxy_destroy (struct wl_proxy * proxy)Destroy a proxy object Parameters proxy The proxy to be destroyed proxy must not be a proxy wrapper​.

const char * wl_proxy_get_class (struct wl_proxy * proxy)Get the interface name (class) of a proxy object Parameters proxy The proxy object Returns The interface name of the object associated with the proxy

uint32_t wl_proxy_get_id (struct wl_proxy * proxy)Get the id of a proxy object Parameters proxy The proxy object Returns The id the object associated with the proxy

const void * wl_proxy_get_listener (struct wl_proxy * proxy)Get a proxy's listener Parameters proxy The proxy object Returns The address of the proxy's listener or NULL if no listener is set Gets the address to the proxy's listener; which is the listener set with wl_proxy_add_listener​. This function is useful in clients with multiple listeners on the same interface to allow the identification of which code to execute​.

const char *const * wl_proxy_get_tag (struct wl_proxy * proxy)Get the tag of a proxy object See wl_proxy_set_tag for details​. Parameters proxy The proxy object Since 1​.17​.90

void * wl_proxy_get_user_data (struct wl_proxy * proxy)Get the user data associated with a proxy Parameters proxy The proxy object Returns The user data associated with proxy

uint32_t wl_proxy_get_version (struct wl_proxy * proxy)Get the protocol object version of a proxy object Parameters proxy The proxy object Returns The protocol object version of the proxy or 0 Gets the protocol object version of a proxy object, or 0 if the proxy was created with unversioned API​. A returned value of 0 means that no version information is available, so the caller must make safe assumptions about the object's real version​. wl_display's version will always return 0​.

void wl_proxy_marshal (struct wl_proxy * proxy, uint32_t opcode, ​.​.​.)Prepare a request to be sent to the compositor Parameters proxy The proxy object
opcode Opcode of the request to be sent
​.​.​. Extra arguments for the given request
This function is similar to wl_proxy_marshal_constructor(), except it doesn't create proxies for new-id arguments​. Note This should not normally be used by non-generated code​. See also wl_proxy_create()

void wl_proxy_marshal_array (struct wl_proxy * proxy, uint32_t opcode, union wl_argument * args)Prepare a request to be sent to the compositor Parameters proxy The proxy object
opcode Opcode of the request to be sent
args Extra arguments for the given request
This function is similar to wl_proxy_marshal_array_constructor(), except it doesn't create proxies for new-id arguments​. Note This is intended to be used by language bindings and not in non-generated code​. See also wl_proxy_marshal()

struct wl_proxy * wl_proxy_marshal_array_constructor (struct wl_proxy * proxy, uint32_t opcode, union wl_argument * args, const struct wl_interface * interface)Prepare a request to be sent to the compositor Parameters proxy The proxy object
opcode Opcode of the request to be sent
args Extra arguments for the given request
interface The interface to use for the new proxy
This function translates a request given an opcode, an interface and a wl_argument array to the wire format and writes it to the connection buffer​. For new-id arguments, this function will allocate a new wl_proxy and send the ID to the server​. The new wl_proxy will be returned on success or NULL on error with errno set accordingly​. The newly created proxy will inherit their version from their parent​. Note This is intended to be used by language bindings and not in non-generated code​. See also wl_proxy_marshal()

struct wl_proxy * wl_proxy_marshal_array_constructor_versioned (struct wl_proxy * proxy, uint32_t opcode, union wl_argument * args, const struct wl_interface * interface, uint32_t version)Prepare a request to be sent to the compositor Parameters proxy The proxy object
opcode Opcode of the request to be sent
args Extra arguments for the given request
interface The interface to use for the new proxy
version The protocol object version for the new proxy
Translates the request given by opcode and the extra arguments into the wire format and write it to the connection buffer​. This version takes an array of the union type wl_argument​. For new-id arguments, this function will allocate a new wl_proxy and send the ID to the server​. The new wl_proxy will be returned on success or NULL on error with errno set accordingly​. The newly created proxy will have the version specified​. Note This is intended to be used by language bindings and not in non-generated code​. See also wl_proxy_marshal()

struct wl_proxy * wl_proxy_marshal_constructor (struct wl_proxy * proxy, uint32_t opcode, const struct wl_interface * interface, ​.​.​.)Prepare a request to be sent to the compositor Parameters proxy The proxy object
opcode Opcode of the request to be sent
interface The interface to use for the new proxy
​.​.​. Extra arguments for the given request
Returns A new wl_proxy for the new_id argument or NULL on error This function translates a request given an opcode, an interface and extra arguments to the wire format and writes it to the connection buffer​. The types of the extra arguments must correspond to the argument types of the method associated with the opcode in the interface​. For new-id arguments, this function will allocate a new wl_proxy and send the ID to the server​. The new wl_proxy will be returned on success or NULL on error with errno set accordingly​. The newly created proxy will inherit their version from their parent​. Note This should not normally be used by non-generated code​.

struct wl_proxy * wl_proxy_marshal_constructor_versioned (struct wl_proxy * proxy, uint32_t opcode, const struct wl_interface * interface, uint32_t version, ​.​.​.)Prepare a request to be sent to the compositor Parameters proxy The proxy object
opcode Opcode of the request to be sent
interface The interface to use for the new proxy
version The protocol object version of the new proxy
​.​.​. Extra arguments for the given request
Returns A new wl_proxy for the new_id argument or NULL on error Translates the request given by opcode and the extra arguments into the wire format and write it to the connection buffer​. For new-id arguments, this function will allocate a new wl_proxy and send the ID to the server​. The new wl_proxy will be returned on success or NULL on error with errno set accordingly​. The newly created proxy will have the version specified​. Note This should not normally be used by non-generated code​.

void wl_proxy_set_queue (struct wl_proxy * proxy, struct wl_event_queue * queue)Assign a proxy to an event queue Parameters proxy The proxy object
queue The event queue that will handle this proxy or NULL
Assign proxy to event queue​. Events coming from proxy will be queued in queue from now​. If queue is NULL, then the display's default queue is set to the proxy​. Note By default, the queue set in proxy is the one inherited from parent​. See also wl_display_dispatch_queue()

void wl_proxy_set_tag (struct wl_proxy * proxy, const char *const * tag)Set the tag of a proxy object A toolkit or application can set a unique tag on a proxy in order to identify whether an object is managed by itself or some external part​. To create a tag, the recommended way is to define a statically allocated constant char array containing some descriptive string​. The tag will be the pointer to the non-const pointer to the beginning of the array​. For example, to define and set a tag on a surface managed by a certain subsystem: static const char *my_tag = "my tag"; wl_proxy_set_tag((struct wl_proxy *) surface, &my_tag);
 Then, in a callback with wl_surface as an argument, in order to check whether it's a surface managed by the same subsystem​.
const char * const *tag; tag = wl_proxy_get_tag((struct wl_proxy *) surface); if (tag != &my_tag) return; ...
 For debugging purposes, a tag should be suitable to be included in a debug log entry, e​.g​.
const char * const *tag; tag = wl_proxy_get_tag((struct wl_proxy *) surface); printf("Got a surface with the tag %p (%s)\n", tag, (tag && *tag) ? *tag : ""); Parameters proxy The proxy object
tag The tag
Since 1​.17​.90

void wl_proxy_set_user_data (struct wl_proxy * proxy, void * user_data)Set the user data associated with a proxy Parameters proxy The proxy object
user_data The data to be associated with proxy
Set the user data associated with proxy​. When events for this proxy are received, user_data will be supplied to its listener​.

void wl_proxy_wrapper_destroy (void * proxy_wrapper)Destroy a proxy wrapper Parameters proxy_wrapper The proxy wrapper to be destroyed

AuthorGenerated automatically by Doxygen for Wayland from the source code​.
0
Johanes Gumabo
Data Size   :   71,059 byte
man-wl_proxy.3Build   :   2024-12-05, 20:55   :  
Visitor Screen   :   x
Visitor Counter ( page / site )   :   3 / 165,293
Visitor ID   :     :  
Visitor IP   :   18.116.24.148   :  
Visitor Provider   :   AMAZON-02   :  
Provider Position ( lat x lon )   :   39.962500 x -83.006100   :   x
Provider Accuracy Radius ( km )   :   1000   :  
Provider City   :   Columbus   :  
Provider Province   :   Ohio ,   :   ,
Provider Country   :   United States   :  
Provider Continent   :   North America   :  
Visitor Recorder   :   Version   :  
Visitor Recorder   :   Library   :  
Online Linux Manual Page   :   Version   :   Online Linux Manual Page - Fedora.40 - march=x86-64 - mtune=generic - 24.12.05
Online Linux Manual Page   :   Library   :   lib_c - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40
Online Linux Manual Page   :   Library   :   lib_m - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40
Data Base   :   Version   :   Online Linux Manual Page Database - 24.04.13 - march=x86-64 - mtune=generic - fedora-38
Data Base   :   Library   :   lib_c - 23.02.07 - march=x86-64 - mtune=generic - fedora.36

Very long time ago, I have the best tutor, Wenzel Svojanovsky . If someone knows the email address of Wenzel Svojanovsky , please send an email to johanes_gumabo@yahoo.co.id .
If error, please print screen and send to johanes_gumabo@yahoo.co.id
Under development. Support me via PayPal.

ERROR : Need New Coding :         (rof_nr_x|149|wl_proxy.3|537|\n",| printf("Got a surface with the tag %p (%s)\n", )