VirtualBox

source: vbox/trunk/src/VBox/Main/glue/string.cpp@ 5546

Last change on this file since 5546 was 4071, checked in by vboxsync, 17 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 KB
Line 
1/** @file
2 *
3 * MS COM / XPCOM Abstraction Layer:
4 * Smart string classes definition
5 */
6
7/*
8 * Copyright (C) 2006-2007 innotek GmbH
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License as published by the Free Software Foundation,
14 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
15 * distribution. VirtualBox OSE is distributed in the hope that it will
16 * be useful, but WITHOUT ANY WARRANTY of any kind.
17 */
18
19#include "VBox/com/string.h"
20
21namespace com
22{
23
24struct FormatData
25{
26 static const size_t CacheIncrement = 256;
27 size_t size;
28 size_t pos;
29 char *cache;
30};
31
32void Utf8StrFmt::init (const char *format, va_list args)
33{
34 if (!format)
35 return;
36
37 // assume an extra byte for a terminating zero
38 size_t fmtlen = strlen (format) + 1;
39
40 FormatData data;
41 data.size = FormatData::CacheIncrement;
42 if (fmtlen >= FormatData::CacheIncrement)
43 data.size += fmtlen;
44 data.pos = 0;
45 data.cache = (char *) ::RTMemTmpAllocZ (data.size);
46
47 size_t n = ::RTStrFormatV (strOutput, &data, NULL, NULL, format, args);
48
49 AssertMsg (n == data.pos,
50 ("The number of bytes formatted doesn't match: %d and %d!",
51 n, data.pos));
52 NOREF (n);
53
54 // finalize formatting
55 data.cache [data.pos] = 0;
56 (*static_cast <Utf8Str *> (this)) = data.cache;
57 ::RTMemTmpFree (data.cache);
58}
59
60// static
61DECLCALLBACK(size_t) Utf8StrFmt::strOutput (void *pvArg, const char *pachChars,
62 size_t cbChars)
63{
64 Assert (pvArg);
65 FormatData &data = *(FormatData *) pvArg;
66
67 if (!(pachChars == NULL && cbChars == 0))
68 {
69 Assert (pachChars);
70
71 // append to cache (always assume an extra byte for a terminating zero)
72 size_t needed = cbChars + 1;
73 if (data.pos + needed > data.size)
74 {
75 data.size += FormatData::CacheIncrement;
76 if (needed >= FormatData::CacheIncrement)
77 data.size += needed;
78 data.cache = (char *) ::RTMemRealloc (data.cache, data.size);
79 }
80 strncpy (data.cache + data.pos, pachChars, cbChars);
81 data.pos += cbChars;
82 }
83
84 return cbChars;
85}
86
87}; // namespace com
88
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette