Add google_apis_unittests, midi_unittests to GN swarming.
[chromium-blink-merge.git] / ppapi / c / ppb_var.h
blobb4a361a8b281e53e51592bce2cc2f92e5fe809e2
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
6 /* From ppb_var.idl modified Thu Apr 10 14:54:41 2014. */
8 #ifndef PPAPI_C_PPB_VAR_H_
9 #define PPAPI_C_PPB_VAR_H_
11 #include "ppapi/c/pp_bool.h"
12 #include "ppapi/c/pp_macros.h"
13 #include "ppapi/c/pp_module.h"
14 #include "ppapi/c/pp_resource.h"
15 #include "ppapi/c/pp_stdint.h"
16 #include "ppapi/c/pp_var.h"
18 #define PPB_VAR_INTERFACE_1_0 "PPB_Var;1.0"
19 #define PPB_VAR_INTERFACE_1_1 "PPB_Var;1.1"
20 #define PPB_VAR_INTERFACE_1_2 "PPB_Var;1.2"
21 #define PPB_VAR_INTERFACE PPB_VAR_INTERFACE_1_2
23 /**
24 * @file
25 * This file defines the <code>PPB_Var</code> struct.
29 /**
30 * @addtogroup Interfaces
31 * @{
33 /**
34 * PPB_Var API
36 struct PPB_Var_1_2 {
37 /**
38 * AddRef() adds a reference to the given var. If this is not a refcounted
39 * object, this function will do nothing so you can always call it no matter
40 * what the type.
42 * @param[in] var A <code>PP_Var</code> that will have a reference added.
44 void (*AddRef)(struct PP_Var var);
45 /**
46 * Release() removes a reference to given var, deleting it if the internal
47 * reference count becomes 0. If the <code>PP_Var</code> is of type
48 * <code>PP_VARTYPE_RESOURCE</code>,
49 * it will implicitly release a reference count on the
50 * <code>PP_Resource</code> (equivalent to PPB_Core::ReleaseResource()).
52 * If the given var is not a refcounted object, this function will do nothing
53 * so you can always call it no matter what the type.
55 * @param[in] var A <code>PP_Var</code> that will have a reference removed.
57 void (*Release)(struct PP_Var var);
58 /**
59 * VarFromUtf8() creates a string var from a string. The string must be
60 * encoded in valid UTF-8 and is NOT NULL-terminated, the length must be
61 * specified in <code>len</code>. It is an error if the string is not
62 * valid UTF-8.
64 * If the length is 0, the <code>*data</code> pointer will not be dereferenced
65 * and may be <code>NULL</code>. Note, however if length is 0, the
66 * "NULL-ness" will not be preserved, as VarToUtf8() will never return
67 * <code>NULL</code> on success, even for empty strings.
69 * The resulting object will be a refcounted string object. It will be
70 * AddRef'ed for the caller. When the caller is done with it, it should be
71 * Released.
73 * On error (basically out of memory to allocate the string, or input that
74 * is not valid UTF-8), this function will return a Null var.
76 * @param[in] data A string
77 * @param[in] len The length of the string.
79 * @return A <code>PP_Var</code> structure containing a reference counted
80 * string object.
82 struct PP_Var (*VarFromUtf8)(const char* data, uint32_t len);
83 /**
84 * VarToUtf8() converts a string-type var to a char* encoded in UTF-8. This
85 * string is NOT NULL-terminated. The length will be placed in
86 * <code>*len</code>. If the string is valid but empty the return value will
87 * be non-NULL, but <code>*len</code> will still be 0.
89 * If the var is not a string, this function will return NULL and
90 * <code>*len</code> will be 0.
92 * The returned buffer will be valid as long as the underlying var is alive.
93 * If the instance frees its reference, the string will be freed and the
94 * pointer will be to arbitrary memory.
96 * @param[in] var A PP_Var struct containing a string-type var.
97 * @param[in,out] len A pointer to the length of the string-type var.
99 * @return A char* encoded in UTF-8.
101 const char* (*VarToUtf8)(struct PP_Var var, uint32_t* len);
103 * Converts a resource-type var to a <code>PP_Resource</code>.
105 * @param[in] var A <code>PP_Var</code> struct containing a resource-type var.
107 * @return A <code>PP_Resource</code> retrieved from the var, or 0 if the var
108 * is not a resource. The reference count of the resource is incremented on
109 * behalf of the caller.
111 PP_Resource (*VarToResource)(struct PP_Var var);
113 * Creates a new <code>PP_Var</code> from a given resource. Implicitly adds a
114 * reference count on the <code>PP_Resource</code> (equivalent to
115 * PPB_Core::AddRefResource(resource)).
117 * @param[in] resource A <code>PP_Resource</code> to be wrapped in a var.
119 * @return A <code>PP_Var</code> created for this resource, with type
120 * <code>PP_VARTYPE_RESOURCE</code>. The reference count of the var is set to
121 * 1 on behalf of the caller.
123 struct PP_Var (*VarFromResource)(PP_Resource resource);
126 typedef struct PPB_Var_1_2 PPB_Var;
128 struct PPB_Var_1_0 {
129 void (*AddRef)(struct PP_Var var);
130 void (*Release)(struct PP_Var var);
131 struct PP_Var (*VarFromUtf8)(PP_Module module,
132 const char* data,
133 uint32_t len);
134 const char* (*VarToUtf8)(struct PP_Var var, uint32_t* len);
137 struct PPB_Var_1_1 {
138 void (*AddRef)(struct PP_Var var);
139 void (*Release)(struct PP_Var var);
140 struct PP_Var (*VarFromUtf8)(const char* data, uint32_t len);
141 const char* (*VarToUtf8)(struct PP_Var var, uint32_t* len);
144 * @}
147 #endif /* PPAPI_C_PPB_VAR_H_ */