2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.2 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 #include <mach/mach_types.h>
24 #include <mach/kmod.h>
27 #include <hfs/hfs_encodings.h>
31 MacJapaneseToUnicode(Str31 hfs_str
, UniChar
*uni_str
, UniCharCount maxCharLen
, UniCharCount
*usedCharLen
)
33 UInt32 processedChars
;
35 processedChars
= __CFFromMacJapanese(kCFStringEncodingUseCanonical
| kCFStringEncodingUseHFSPlusCanonical
,
42 if (processedChars
== (UInt32
)hfs_str
[0])
49 UnicodeToMacJapanese(UniChar
*uni_str
, UniCharCount unicodeChars
, Str31 hfs_str
)
51 UniCharCount srcCharsUsed
;
52 UInt32 usedByteLen
= 0;
54 srcCharsUsed
= __CFToMacJapanese(kCFStringEncodingComposeCombinings
| kCFStringEncodingUseHFSPlusCanonical
,
61 hfs_str
[0] = usedByteLen
;
63 if (srcCharsUsed
== unicodeChars
)
70 __private_extern__
int
71 hfs_japanese_start(kmod_info_t
*ki
, void *data
)
75 result
= hfs_addconverter(ki
->id
, kCFStringEncodingMacJapanese
,
76 MacJapaneseToUnicode
, UnicodeToMacJapanese
);
78 return (result
== 0 ? KERN_SUCCESS
: KERN_FAILURE
);
81 __private_extern__
int
82 hfs_japanese_stop(kmod_info_t
*ki
, void *data
)
86 result
= hfs_remconverter(ki
->id
, kCFStringEncodingMacJapanese
);
88 return (result
== 0 ? KERN_SUCCESS
: KERN_FAILURE
);