1 | /* $Id: utf8-l4env.cpp 620 2007-02-05 09:27:22Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * InnoTek Portable Runtime - UTF-8 helpers, l4env.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006 InnoTek Systemberatung GmbH
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * If you received this file as part of a commercial VirtualBox
|
---|
18 | * distribution, then only the terms of your commercial VirtualBox
|
---|
19 | * license agreement apply instead of the previous paragraph.
|
---|
20 | */
|
---|
21 |
|
---|
22 | /**
|
---|
23 | * Since the L4 microkernel does not actually deal with text,
|
---|
24 | * we obviously do not have a default character set. Some of
|
---|
25 | * the l4env utilities may do, but for now we will take ASCII
|
---|
26 | * as the default. Perhaps we can change that to UTF-8 sometime?
|
---|
27 | * @note Do a lot of testing of these functions as they are
|
---|
28 | * bound to be buggy for the moment!
|
---|
29 | */
|
---|
30 |
|
---|
31 | /*******************************************************************************
|
---|
32 | * Header Files *
|
---|
33 | *******************************************************************************/
|
---|
34 | #include <iprt/string.h>
|
---|
35 | #include <iprt/alloc.h>
|
---|
36 | #include <iprt/assert.h>
|
---|
37 | #include <iprt/err.h>
|
---|
38 |
|
---|
39 | #include <l4/sys/l4int.h>
|
---|
40 | #include <stdio.h>
|
---|
41 |
|
---|
42 |
|
---|
43 | /**
|
---|
44 | * Allocates tmp buffer, translates pszString from UTF8 to current codepage.
|
---|
45 | *
|
---|
46 | * @returns iprt status code.
|
---|
47 | * @param ppszString Receives pointer of allocated native CP string.
|
---|
48 | * The returned pointer must be freed using RTStrFree().
|
---|
49 | * @param pszString UTF-8 string to convert.
|
---|
50 | * In this case, the conversion is a simple one to ASCII, where we
|
---|
51 | * replace any "unknown" characters with '-'.
|
---|
52 | */
|
---|
53 | RTR3DECL(int) RTStrUtf8ToCurrentCP(char **ppszString, const char *pszString)
|
---|
54 | {
|
---|
55 | Assert(ppszString);
|
---|
56 | Assert(pszString);
|
---|
57 | size_t cch = strlen(pszString);
|
---|
58 | if (cch < 0) return VERR_INVALID_PARAMETER; /* very strange :-) */
|
---|
59 | *ppszString = (char *) RTMemTmpAlloc((cch + 1) * sizeof(uint8_t));
|
---|
60 | if (!*ppszString)
|
---|
61 | return VERR_NO_TMP_MEMORY;
|
---|
62 | const char *pIn = pszString;
|
---|
63 | char *pOut = *ppszString;
|
---|
64 | /* Translate all ascii characters to ascii, all others to '-' */
|
---|
65 | for (; *pIn != 0; pOut++) {
|
---|
66 | if (*pIn > 0) {
|
---|
67 | *pOut = *pIn;
|
---|
68 | pIn++;
|
---|
69 | } else {
|
---|
70 | while (*pIn < 0)
|
---|
71 | pIn++;
|
---|
72 | *pOut = '-';
|
---|
73 | }
|
---|
74 | }
|
---|
75 | *(pOut) = 0;
|
---|
76 | return VINF_SUCCESS;
|
---|
77 | }
|
---|
78 |
|
---|
79 |
|
---|
80 | /**
|
---|
81 | * Allocates tmp buffer, translates pszString from current codepage to UTF-8.
|
---|
82 | *
|
---|
83 | * @returns iprt status code.
|
---|
84 | * @param ppszString Receives pointer of allocated UTF-8 string.
|
---|
85 | * The returned pointer must be freed using RTStrFree().
|
---|
86 | * @param pszString Native string to convert.
|
---|
87 | * Again, we are converting from ASCII, so that there is even less to
|
---|
88 | * do than in the last function.
|
---|
89 | */
|
---|
90 | RTR3DECL(int) RTStrCurrentCPToUtf8(char **ppszString, const char *pszString)
|
---|
91 | {
|
---|
92 | return RTStrDupEx(ppszString, pszString);
|
---|
93 | }
|
---|
94 |
|
---|