Add stubs for Direct3D9 backend.
[cairo/gpu.git] / src / cairo-font-face.c
blob6744899b69e6ba6421af3e5356d3dfe159f850ea
1 /* -*- Mode: c; c-basic-offset: 4; indent-tabs-mode: t; tab-width: 8; -*- */
2 /* cairo - a vector graphics library with display and print output
4 * Copyright © 2002 University of Southern California
5 * Copyright © 2005 Red Hat Inc.
7 * This library is free software; you can redistribute it and/or
8 * modify it either under the terms of the GNU Lesser General Public
9 * License version 2.1 as published by the Free Software Foundation
10 * (the "LGPL") or, at your option, under the terms of the Mozilla
11 * Public License Version 1.1 (the "MPL"). If you do not alter this
12 * notice, a recipient may use your version of this file under either
13 * the MPL or the LGPL.
15 * You should have received a copy of the LGPL along with this library
16 * in the file COPYING-LGPL-2.1; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 * You should have received a copy of the MPL along with this library
19 * in the file COPYING-MPL-1.1
21 * The contents of this file are subject to the Mozilla Public License
22 * Version 1.1 (the "License"); you may not use this file except in
23 * compliance with the License. You may obtain a copy of the License at
24 * http://www.mozilla.org/MPL/
26 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
27 * OF ANY KIND, either express or implied. See the LGPL or the MPL for
28 * the specific language governing rights and limitations.
30 * The Original Code is the cairo graphics library.
32 * The Initial Developer of the Original Code is University of Southern
33 * California.
35 * Contributor(s):
36 * Carl D. Worth <cworth@cworth.org>
37 * Graydon Hoare <graydon@redhat.com>
38 * Owen Taylor <otaylor@redhat.com>
41 #include "cairoint.h"
43 /* #cairo_font_face_t */
45 const cairo_font_face_t _cairo_font_face_nil = {
46 { 0 }, /* hash_entry */
47 CAIRO_STATUS_NO_MEMORY, /* status */
48 CAIRO_REFERENCE_COUNT_INVALID, /* ref_count */
49 { 0, 0, 0, NULL }, /* user_data */
50 NULL
53 cairo_status_t
54 _cairo_font_face_set_error (cairo_font_face_t *font_face,
55 cairo_status_t status)
57 if (status == CAIRO_STATUS_SUCCESS)
58 return status;
60 /* Don't overwrite an existing error. This preserves the first
61 * error, which is the most significant. */
62 _cairo_status_set_error (&font_face->status, status);
64 return _cairo_error (status);
67 void
68 _cairo_font_face_init (cairo_font_face_t *font_face,
69 const cairo_font_face_backend_t *backend)
71 CAIRO_MUTEX_INITIALIZE ();
73 font_face->status = CAIRO_STATUS_SUCCESS;
74 CAIRO_REFERENCE_COUNT_INIT (&font_face->ref_count, 1);
75 font_face->backend = backend;
77 _cairo_user_data_array_init (&font_face->user_data);
80 /**
81 * cairo_font_face_reference:
82 * @font_face: a #cairo_font_face_t, (may be %NULL in which case this
83 * function does nothing).
85 * Increases the reference count on @font_face by one. This prevents
86 * @font_face from being destroyed until a matching call to
87 * cairo_font_face_destroy() is made.
89 * The number of references to a #cairo_font_face_t can be get using
90 * cairo_font_face_get_reference_count().
92 * Return value: the referenced #cairo_font_face_t.
93 **/
94 cairo_font_face_t *
95 cairo_font_face_reference (cairo_font_face_t *font_face)
97 if (font_face == NULL ||
98 CAIRO_REFERENCE_COUNT_IS_INVALID (&font_face->ref_count))
99 return font_face;
101 /* We would normally assert that we have a reference here but we
102 * can't get away with that due to the zombie case as documented
103 * in _cairo_ft_font_face_destroy. */
105 _cairo_reference_count_inc (&font_face->ref_count);
107 return font_face;
109 slim_hidden_def (cairo_font_face_reference);
112 * cairo_font_face_destroy:
113 * @font_face: a #cairo_font_face_t
115 * Decreases the reference count on @font_face by one. If the result
116 * is zero, then @font_face and all associated resources are freed.
117 * See cairo_font_face_reference().
119 void
120 cairo_font_face_destroy (cairo_font_face_t *font_face)
122 if (font_face == NULL ||
123 CAIRO_REFERENCE_COUNT_IS_INVALID (&font_face->ref_count))
124 return;
126 assert (CAIRO_REFERENCE_COUNT_HAS_REFERENCE (&font_face->ref_count));
128 if (! _cairo_reference_count_dec_and_test (&font_face->ref_count))
129 return;
131 if (font_face->backend->destroy)
132 font_face->backend->destroy (font_face);
134 /* We allow resurrection to deal with some memory management for the
135 * FreeType backend where cairo_ft_font_face_t and cairo_ft_unscaled_font_t
136 * need to effectively mutually reference each other
138 if (CAIRO_REFERENCE_COUNT_HAS_REFERENCE (&font_face->ref_count))
139 return;
141 _cairo_user_data_array_fini (&font_face->user_data);
143 free (font_face);
145 slim_hidden_def (cairo_font_face_destroy);
148 * cairo_font_face_get_type:
149 * @font_face: a font face
151 * This function returns the type of the backend used to create
152 * a font face. See #cairo_font_type_t for available types.
154 * Return value: The type of @font_face.
156 * Since: 1.2
158 cairo_font_type_t
159 cairo_font_face_get_type (cairo_font_face_t *font_face)
161 if (CAIRO_REFERENCE_COUNT_IS_INVALID (&font_face->ref_count))
162 return CAIRO_FONT_TYPE_TOY;
164 return font_face->backend->type;
168 * cairo_font_face_get_reference_count:
169 * @font_face: a #cairo_font_face_t
171 * Returns the current reference count of @font_face.
173 * Return value: the current reference count of @font_face. If the
174 * object is a nil object, 0 will be returned.
176 * Since: 1.4
178 unsigned int
179 cairo_font_face_get_reference_count (cairo_font_face_t *font_face)
181 if (font_face == NULL ||
182 CAIRO_REFERENCE_COUNT_IS_INVALID (&font_face->ref_count))
183 return 0;
185 return CAIRO_REFERENCE_COUNT_GET_VALUE (&font_face->ref_count);
189 * cairo_font_face_status:
190 * @font_face: a #cairo_font_face_t
192 * Checks whether an error has previously occurred for this
193 * font face
195 * Return value: %CAIRO_STATUS_SUCCESS or another error such as
196 * %CAIRO_STATUS_NO_MEMORY.
198 cairo_status_t
199 cairo_font_face_status (cairo_font_face_t *font_face)
201 return font_face->status;
205 * cairo_font_face_get_user_data:
206 * @font_face: a #cairo_font_face_t
207 * @key: the address of the #cairo_user_data_key_t the user data was
208 * attached to
210 * Return user data previously attached to @font_face using the specified
211 * key. If no user data has been attached with the given key this
212 * function returns %NULL.
214 * Return value: the user data previously attached or %NULL.
216 void *
217 cairo_font_face_get_user_data (cairo_font_face_t *font_face,
218 const cairo_user_data_key_t *key)
220 return _cairo_user_data_array_get_data (&font_face->user_data,
221 key);
223 slim_hidden_def (cairo_font_face_get_user_data);
226 * cairo_font_face_set_user_data:
227 * @font_face: a #cairo_font_face_t
228 * @key: the address of a #cairo_user_data_key_t to attach the user data to
229 * @user_data: the user data to attach to the font face
230 * @destroy: a #cairo_destroy_func_t which will be called when the
231 * font face is destroyed or when new user data is attached using the
232 * same key.
234 * Attach user data to @font_face. To remove user data from a font face,
235 * call this function with the key that was used to set it and %NULL
236 * for @data.
238 * Return value: %CAIRO_STATUS_SUCCESS or %CAIRO_STATUS_NO_MEMORY if a
239 * slot could not be allocated for the user data.
241 cairo_status_t
242 cairo_font_face_set_user_data (cairo_font_face_t *font_face,
243 const cairo_user_data_key_t *key,
244 void *user_data,
245 cairo_destroy_func_t destroy)
247 if (CAIRO_REFERENCE_COUNT_IS_INVALID (&font_face->ref_count))
248 return font_face->status;
250 return _cairo_user_data_array_set_data (&font_face->user_data,
251 key, user_data, destroy);
253 slim_hidden_def (cairo_font_face_set_user_data);
255 void
256 _cairo_unscaled_font_init (cairo_unscaled_font_t *unscaled_font,
257 const cairo_unscaled_font_backend_t *backend)
259 CAIRO_REFERENCE_COUNT_INIT (&unscaled_font->ref_count, 1);
260 unscaled_font->backend = backend;
263 cairo_unscaled_font_t *
264 _cairo_unscaled_font_reference (cairo_unscaled_font_t *unscaled_font)
266 if (unscaled_font == NULL)
267 return NULL;
269 assert (CAIRO_REFERENCE_COUNT_HAS_REFERENCE (&unscaled_font->ref_count));
271 _cairo_reference_count_inc (&unscaled_font->ref_count);
273 return unscaled_font;
276 void
277 _cairo_unscaled_font_destroy (cairo_unscaled_font_t *unscaled_font)
279 if (unscaled_font == NULL)
280 return;
282 assert (CAIRO_REFERENCE_COUNT_HAS_REFERENCE (&unscaled_font->ref_count));
284 if (! _cairo_reference_count_dec_and_test (&unscaled_font->ref_count))
285 return;
287 unscaled_font->backend->destroy (unscaled_font);
289 free (unscaled_font);