blob: a1eabfd3bc61c792ebd1fa9c20a3c18122658a84 [file] [log] [blame]
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -04001/*
2 * Copyright © 2011 Google, Inc.
3 *
4 * This is part of HarfBuzz, a text shaping library.
5 *
6 * Permission is hereby granted, without written agreement and without
7 * license or royalty fees, to use, copy, modify, and distribute this
8 * software and its documentation for any purpose, provided that the
9 * above copyright notice and the following two paragraphs appear in
10 * all copies of this software.
11 *
12 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
13 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
14 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
15 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
16 * DAMAGE.
17 *
18 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
19 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20 * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
21 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
22 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
23 *
24 * Google Author(s): Behdad Esfahbod
25 */
26
27#define _WIN32_WINNT 0x0500
28
29#include "hb-private.hh"
30
Behdad Esfahbodb4922992011-08-05 20:34:50 -040031#include <windows.h>
32#include <usp10.h>
33
34typedef ULONG WIN_ULONG;
35
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -040036#include "hb-uniscribe.h"
37
Behdad Esfahbod7a750ac2011-08-17 14:19:59 +020038#include "hb-ot-name-table.hh"
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -040039#include "hb-ot-tag.h"
40
41#include "hb-font-private.hh"
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -040042#include "hb-buffer-private.hh"
43
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -040044
45
46#ifndef HB_DEBUG_UNISCRIBE
47#define HB_DEBUG_UNISCRIBE (HB_DEBUG+0)
48#endif
49
50
51/*
52DWORD GetFontData(
53 __in HDC hdc,
54 __in DWORD dwTable,
55 __in DWORD dwOffset,
56 __out LPVOID lpvBuffer,
57 __in DWORD cbData
58);
59*/
60
Behdad Esfahbod892eb2e2011-08-06 22:06:52 -040061static bool
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -040062populate_log_font (LOGFONTW *lf,
63 HDC hdc,
Behdad Esfahbod892eb2e2011-08-06 22:06:52 -040064 hb_font_t *font)
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -040065{
66 memset (lf, 0, sizeof (*lf));
67 int dpi = GetDeviceCaps (hdc, LOGPIXELSY);
Behdad Esfahbod3fd2b5b2011-08-06 22:59:54 -040068 lf->lfHeight = -font->y_scale;
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -040069
Behdad Esfahbod892eb2e2011-08-06 22:06:52 -040070 hb_blob_t *blob = Sanitizer<name>::sanitize (hb_face_reference_table (font->face, HB_TAG ('n','a','m','e')));
71 const name *name_table = Sanitizer<name>::lock_instance (blob);
72 unsigned int len = name_table->get_name (3, 1, 0x409, 4,
73 lf->lfFaceName,
74 sizeof (lf->lfFaceName[0]) * LF_FACESIZE)
75 / sizeof (lf->lfFaceName[0]);
Behdad Esfahbod826e2272011-08-07 03:53:42 -040076 hb_blob_destroy (blob);
77
Behdad Esfahbod892eb2e2011-08-06 22:06:52 -040078 if (unlikely (!len)) {
79 DEBUG_MSG (UNISCRIBE, NULL, "Didn't find English name table entry");
80 return FALSE;
81 }
82 if (unlikely (len >= LF_FACESIZE)) {
83 DEBUG_MSG (UNISCRIBE, NULL, "Font name too long");
84 return FALSE;
85 }
Behdad Esfahbode9c71fa2011-08-07 00:00:27 -040086
Behdad Esfahbod892eb2e2011-08-06 22:06:52 -040087 for (unsigned int i = 0; i < len; i++)
88 lf->lfFaceName[i] = hb_be_uint16 (lf->lfFaceName[i]);
89 lf->lfFaceName[len] = 0;
Behdad Esfahbode9c71fa2011-08-07 00:00:27 -040090
Behdad Esfahbod892eb2e2011-08-06 22:06:52 -040091 return TRUE;
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -040092}
93
Behdad Esfahbodbf3eef52011-08-09 00:13:24 +020094
Behdad Esfahbod50729342011-08-24 02:24:27 +020095static hb_user_data_key_t hb_uniscribe_data_key;
Behdad Esfahbod71388b32011-08-24 02:09:04 +020096
97
Behdad Esfahbod255f1762011-08-09 08:35:07 +020098static struct hb_uniscribe_face_data_t {
Behdad Esfahbodbf3eef52011-08-09 00:13:24 +020099 HANDLE fh;
100} _hb_uniscribe_face_data_nil = {0};
101
Behdad Esfahbodbf3eef52011-08-09 00:13:24 +0200102static void
103_hb_uniscribe_face_data_destroy (hb_uniscribe_face_data_t *data)
104{
105 if (data->fh)
106 RemoveFontMemResourceEx (data->fh);
107 free (data);
108}
109
110static hb_uniscribe_face_data_t *
111_hb_uniscribe_face_get_data (hb_face_t *face)
112{
Behdad Esfahbod50729342011-08-24 02:24:27 +0200113 hb_uniscribe_face_data_t *data = (hb_uniscribe_face_data_t *) hb_face_get_user_data (face, &hb_uniscribe_data_key);
Behdad Esfahbodbf3eef52011-08-09 00:13:24 +0200114 if (likely (data)) return data;
115
116 data = (hb_uniscribe_face_data_t *) calloc (1, sizeof (hb_uniscribe_face_data_t));
117 if (unlikely (!data))
118 return &_hb_uniscribe_face_data_nil;
119
120 hb_blob_t *blob = hb_face_reference_blob (face);
121 unsigned int blob_length;
122 const char *blob_data = hb_blob_get_data (blob, &blob_length);
123 if (unlikely (!blob_length))
124 DEBUG_MSG (UNISCRIBE, face, "Face has empty blob");
125
126 DWORD num_fonts_installed;
127 data->fh = AddFontMemResourceEx ((void *) blob_data, blob_length, 0, &num_fonts_installed);
128 hb_blob_destroy (blob);
129 if (unlikely (!data->fh))
130 DEBUG_MSG (UNISCRIBE, face, "Face AddFontMemResourceEx() failed");
131
Behdad Esfahbod50729342011-08-24 02:24:27 +0200132 if (unlikely (!hb_face_set_user_data (face, &hb_uniscribe_data_key, data,
Behdad Esfahbod33ccc772011-08-09 00:43:24 +0200133 (hb_destroy_func_t) _hb_uniscribe_face_data_destroy,
134 FALSE)))
Behdad Esfahbodbf3eef52011-08-09 00:13:24 +0200135 {
136 _hb_uniscribe_face_data_destroy (data);
Behdad Esfahbod50729342011-08-24 02:24:27 +0200137 data = (hb_uniscribe_face_data_t *) hb_face_get_user_data (face, &hb_uniscribe_data_key);
Behdad Esfahbod33ccc772011-08-09 00:43:24 +0200138 if (data)
139 return data;
140 else
141 return &_hb_uniscribe_face_data_nil;
Behdad Esfahbodbf3eef52011-08-09 00:13:24 +0200142 }
143
144 return data;
145}
146
147
148static struct hb_uniscribe_font_data_t {
149 HDC hdc;
Behdad Esfahbodd6660352011-08-10 22:08:36 +0200150 LOGFONTW log_font;
Behdad Esfahbodbf3eef52011-08-09 00:13:24 +0200151 HFONT hfont;
152 SCRIPT_CACHE script_cache;
153} _hb_uniscribe_font_data_nil = {NULL, NULL, NULL};
154
Behdad Esfahbodbf3eef52011-08-09 00:13:24 +0200155static void
156_hb_uniscribe_font_data_destroy (hb_uniscribe_font_data_t *data)
157{
158 if (data->hdc)
159 ReleaseDC (NULL, data->hdc);
160 if (data->hfont)
161 DeleteObject (data->hfont);
162 if (data->script_cache)
163 ScriptFreeCache (&data->script_cache);
164 free (data);
165}
166
167static hb_uniscribe_font_data_t *
168_hb_uniscribe_font_get_data (hb_font_t *font)
169{
Behdad Esfahbod50729342011-08-24 02:24:27 +0200170 hb_uniscribe_font_data_t *data = (hb_uniscribe_font_data_t *) hb_font_get_user_data (font, &hb_uniscribe_data_key);
Behdad Esfahbodbf3eef52011-08-09 00:13:24 +0200171 if (likely (data)) return data;
172
173 data = (hb_uniscribe_font_data_t *) calloc (1, sizeof (hb_uniscribe_font_data_t));
174 if (unlikely (!data))
175 return &_hb_uniscribe_font_data_nil;
176
177 data->hdc = GetDC (NULL);
178
Behdad Esfahbodd6660352011-08-10 22:08:36 +0200179 if (unlikely (!populate_log_font (&data->log_font, data->hdc, font)))
Behdad Esfahbodbf3eef52011-08-09 00:13:24 +0200180 DEBUG_MSG (UNISCRIBE, font, "Font populate_log_font() failed");
181 else {
Behdad Esfahbodd6660352011-08-10 22:08:36 +0200182 data->hfont = CreateFontIndirectW (&data->log_font);
Behdad Esfahbodbf3eef52011-08-09 00:13:24 +0200183 if (unlikely (!data->hfont))
184 DEBUG_MSG (UNISCRIBE, font, "Font CreateFontIndirectW() failed");
185 if (!SelectObject (data->hdc, data->hfont))
186 DEBUG_MSG (UNISCRIBE, font, "Font SelectObject() failed");
187 }
188
Behdad Esfahbod50729342011-08-24 02:24:27 +0200189 if (unlikely (!hb_font_set_user_data (font, &hb_uniscribe_data_key, data,
Behdad Esfahbod33ccc772011-08-09 00:43:24 +0200190 (hb_destroy_func_t) _hb_uniscribe_font_data_destroy,
191 FALSE)))
Behdad Esfahbodbf3eef52011-08-09 00:13:24 +0200192 {
193 _hb_uniscribe_font_data_destroy (data);
Behdad Esfahbod50729342011-08-24 02:24:27 +0200194 data = (hb_uniscribe_font_data_t *) hb_font_get_user_data (font, &hb_uniscribe_data_key);
Behdad Esfahbod33ccc772011-08-09 00:43:24 +0200195 if (data)
196 return data;
197 else
198 return &_hb_uniscribe_font_data_nil;
Behdad Esfahbodbf3eef52011-08-09 00:13:24 +0200199 }
200
201 return data;
202}
203
Behdad Esfahbodd6660352011-08-10 22:08:36 +0200204LOGFONTW *
205hb_uniscribe_font_get_logfontw (hb_font_t *font)
206{
207 hb_uniscribe_font_data_t *font_data = _hb_uniscribe_font_get_data (font);
208 if (unlikely (!font_data))
209 return NULL;
210 return &font_data->log_font;
211}
212
213HFONT
214hb_uniscribe_font_get_hfont (hb_font_t *font)
215{
216 hb_uniscribe_font_data_t *font_data = _hb_uniscribe_font_get_data (font);
217 if (unlikely (!font_data))
218 return 0;
219 return font_data->hfont;
220}
221
Behdad Esfahbodbf3eef52011-08-09 00:13:24 +0200222
Behdad Esfahbod02aeca92011-08-04 22:31:05 -0400223hb_bool_t
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -0400224hb_uniscribe_shape (hb_font_t *font,
225 hb_buffer_t *buffer,
226 const hb_feature_t *features,
Behdad Esfahbod02aeca92011-08-04 22:31:05 -0400227 unsigned int num_features,
Behdad Esfahbod05015732011-08-10 16:25:56 +0200228 const char * const *shaper_options)
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -0400229{
Behdad Esfahbod02aeca92011-08-04 22:31:05 -0400230 buffer->guess_properties ();
231
Behdad Esfahbodbf3eef52011-08-09 00:13:24 +0200232#define FAIL(...) \
233 HB_STMT_START { \
234 DEBUG_MSG (UNISCRIBE, NULL, __VA_ARGS__); \
235 return FALSE; \
236 } HB_STMT_END;
237
238 hb_uniscribe_face_data_t *face_data = _hb_uniscribe_face_get_data (font->face);
Behdad Esfahboda9057eb2011-08-09 00:47:55 +0200239 if (unlikely (!face_data->fh))
Behdad Esfahbodbf3eef52011-08-09 00:13:24 +0200240 FAIL ("Couldn't get face data");
241
242 hb_uniscribe_font_data_t *font_data = _hb_uniscribe_font_get_data (font);
Behdad Esfahboda9057eb2011-08-09 00:47:55 +0200243 if (unlikely (!font_data->hfont))
Behdad Esfahbodbf3eef52011-08-09 00:13:24 +0200244 FAIL ("Couldn't get font font");
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -0400245
Behdad Esfahbod02aeca92011-08-04 22:31:05 -0400246 if (unlikely (!buffer->len))
247 return TRUE;
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -0400248
Behdad Esfahbodbf3eef52011-08-09 00:13:24 +0200249 HRESULT hr;
250
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -0400251retry:
252
253 unsigned int scratch_size;
254 char *scratch = (char *) buffer->get_scratch_buffer (&scratch_size);
255
256 /* Allocate char buffers; they all fit */
257
258#define ALLOCATE_ARRAY(Type, name, len) \
259 Type *name = (Type *) scratch; \
260 scratch += len * sizeof (name[0]); \
261 scratch_size -= len * sizeof (name[0]);
262
263#define utf16_index() var1.u32
264
265 WCHAR *pchars = (WCHAR *) scratch;
266 unsigned int chars_len = 0;
267 for (unsigned int i = 0; i < buffer->len; i++) {
268 hb_codepoint_t c = buffer->info[i].codepoint;
269 buffer->info[i].utf16_index() = chars_len;
270 if (likely (c < 0x10000))
271 pchars[chars_len++] = c;
272 else if (unlikely (c >= 0x110000))
273 pchars[chars_len++] = 0xFFFD;
274 else {
275 pchars[chars_len++] = 0xD800 + ((c - 0x10000) >> 10);
276 pchars[chars_len++] = 0xDC00 + ((c - 0x10000) & ((1 << 10) - 1));
277 }
278 }
279
280 ALLOCATE_ARRAY (WCHAR, wchars, chars_len);
281 ALLOCATE_ARRAY (WORD, log_clusters, chars_len);
282 ALLOCATE_ARRAY (SCRIPT_CHARPROP, char_props, chars_len);
283
284 /* On Windows, we don't care about alignment...*/
285 unsigned int glyphs_size = scratch_size / (sizeof (WORD) +
286 sizeof (SCRIPT_GLYPHPROP) +
287 sizeof (int) +
288 sizeof (GOFFSET) +
289 sizeof (uint32_t));
290
291 ALLOCATE_ARRAY (WORD, glyphs, glyphs_size);
292 ALLOCATE_ARRAY (SCRIPT_GLYPHPROP, glyph_props, glyphs_size);
293 ALLOCATE_ARRAY (int, advances, glyphs_size);
294 ALLOCATE_ARRAY (GOFFSET, offsets, glyphs_size);
295 ALLOCATE_ARRAY (uint32_t, vis_clusters, glyphs_size);
296
297
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -0400298#define MAX_ITEMS 10
299
300 SCRIPT_ITEM items[MAX_ITEMS + 1];
301 SCRIPT_STATE bidi_state = {0};
Behdad Esfahbodb4922992011-08-05 20:34:50 -0400302 WIN_ULONG script_tags[MAX_ITEMS];
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -0400303 int item_count;
304
305 bidi_state.uBidiLevel = HB_DIRECTION_IS_FORWARD (buffer->props.direction) ? 0 : 1;
306 bidi_state.fOverrideDirection = 1;
307
308 hr = ScriptItemizeOpenType (wchars,
309 chars_len,
310 MAX_ITEMS,
311 NULL,
312 &bidi_state,
313 items,
314 script_tags,
315 &item_count);
316 if (unlikely (FAILED (hr)))
Behdad Esfahbod2eb474a2011-08-07 00:59:38 -0400317 FAIL ("ScriptItemizeOpenType() failed: 0x%08xL", hr);
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -0400318
319#undef MAX_ITEMS
320
321 int *range_char_counts = NULL;
322 TEXTRANGE_PROPERTIES **range_properties = NULL;
323 int range_count = 0;
324 if (num_features) {
325 /* XXX setup ranges */
326 }
327
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -0400328 OPENTYPE_TAG language_tag = hb_ot_tag_from_language (buffer->props.language);
329
330 unsigned int glyphs_offset = 0;
331 unsigned int glyphs_len;
332 for (unsigned int i = 0; i < item_count; i++)
333 {
334 unsigned int chars_offset = items[i].iCharPos;
335 unsigned int item_chars_len = items[i + 1].iCharPos - chars_offset;
336 OPENTYPE_TAG script_tag = script_tags[i]; /* XXX buffer->props.script */
337
Behdad Esfahbodbf3eef52011-08-09 00:13:24 +0200338 hr = ScriptShapeOpenType (font_data->hdc,
339 &font_data->script_cache,
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -0400340 &items[i].a,
341 script_tag,
342 language_tag,
343 range_char_counts,
344 range_properties,
345 range_count,
346 wchars + chars_offset,
347 item_chars_len,
348 glyphs_size - glyphs_offset,
349 /* out */
350 log_clusters + chars_offset,
351 char_props + chars_offset,
352 glyphs + glyphs_offset,
353 glyph_props + glyphs_offset,
354 (int *) &glyphs_len);
355
356 if (unlikely (items[i].a.fNoGlyphIndex))
Behdad Esfahbod02aeca92011-08-04 22:31:05 -0400357 FAIL ("ScriptShapeOpenType() set fNoGlyphIndex");
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -0400358 if (unlikely (hr == E_OUTOFMEMORY))
359 {
360 buffer->ensure (buffer->allocated * 2);
361 if (buffer->in_error)
Behdad Esfahbod02aeca92011-08-04 22:31:05 -0400362 FAIL ("Buffer resize failed");
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -0400363 goto retry;
364 }
Behdad Esfahbod2eb474a2011-08-07 00:59:38 -0400365 if (unlikely (hr == USP_E_SCRIPT_NOT_IN_FONT))
366 FAIL ("ScriptShapeOpenType() failed: Font doesn't support script");
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -0400367 if (unlikely (FAILED (hr)))
Behdad Esfahbod2eb474a2011-08-07 00:59:38 -0400368 FAIL ("ScriptShapeOpenType() failed: 0x%08xL", hr);
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -0400369
Behdad Esfahbodbf3eef52011-08-09 00:13:24 +0200370 hr = ScriptPlaceOpenType (font_data->hdc,
371 &font_data->script_cache,
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -0400372 &items[i].a,
373 script_tag,
374 language_tag,
375 range_char_counts,
376 range_properties,
377 range_count,
378 wchars + chars_offset,
379 log_clusters + chars_offset,
380 char_props + chars_offset,
381 item_chars_len,
382 glyphs + glyphs_offset,
383 glyph_props + glyphs_offset,
384 glyphs_len,
385 /* out */
386 advances + glyphs_offset,
387 offsets + glyphs_offset,
388 NULL);
389 if (unlikely (FAILED (hr)))
Behdad Esfahbod2eb474a2011-08-07 00:59:38 -0400390 FAIL ("ScriptPlaceOpenType() failed: 0x%08xL", hr);
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -0400391
392 glyphs_offset += glyphs_len;
393 }
394 glyphs_len = glyphs_offset;
395
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -0400396 /* Ok, we've got everything we need, now compose output buffer,
397 * very, *very*, carefully! */
398
399 /* Calculate visual-clusters. That's what we ship. */
400 for (unsigned int i = 0; i < buffer->len; i++)
Behdad Esfahbod577326b2011-08-07 01:04:40 -0400401 vis_clusters[i] = 0;
402 for (unsigned int i = 0; i < buffer->len; i++) {
403 uint32_t *p = &vis_clusters[log_clusters[buffer->info[i].utf16_index()]];
404 *p = MIN (*p, buffer->info[i].cluster);
405 }
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -0400406 for (unsigned int i = 1; i < glyphs_len; i++)
407 if (!glyph_props[i].sva.fClusterStart)
408 vis_clusters[i] = vis_clusters[i - 1];
409
410#undef utf16_index
411
412 buffer->ensure (glyphs_len);
413 if (buffer->in_error)
Behdad Esfahbod02aeca92011-08-04 22:31:05 -0400414 FAIL ("Buffer in error");
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -0400415
Behdad Esfahbod02aeca92011-08-04 22:31:05 -0400416#undef FAIL
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -0400417
418 /* Set glyph infos */
Behdad Esfahbodd753ac72011-08-09 14:03:12 +0200419 buffer->len = 0;
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -0400420 for (unsigned int i = 0; i < glyphs_len; i++)
421 {
Behdad Esfahbodd753ac72011-08-09 14:03:12 +0200422 if (glyph_props[i].sva.fZeroWidth)
423 continue;
424
425 hb_glyph_info_t *info = &buffer->info[buffer->len++];
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -0400426
427 info->codepoint = glyphs[i];
428 info->cluster = vis_clusters[i];
429
430 /* The rest is crap. Let's store position info there for now. */
431 info->mask = advances[i];
432 info->var1.u32 = offsets[i].du;
433 info->var2.u32 = offsets[i].dv;
434 }
435
436 /* Set glyph positions */
437 buffer->clear_positions ();
438 for (unsigned int i = 0; i < glyphs_len; i++)
439 {
440 hb_glyph_info_t *info = &buffer->info[i];
441 hb_glyph_position_t *pos = &buffer->pos[i];
442
443 /* TODO vertical */
444 pos->x_advance = info->mask;
445 pos->x_offset = info->var1.u32;
446 pos->y_offset = info->var2.u32;
447 }
448
449 /* Wow, done! */
Behdad Esfahbod02aeca92011-08-04 22:31:05 -0400450 return TRUE;
Behdad Esfahbod0fbb2dc2011-08-03 19:55:04 -0400451}
452
453