]>
git.saurik.com Git - apple/libc.git/blob - locale/ldpart-fbsd.c
2 * Copyright (c) 2000, 2001 Alexey Zelkin <phantom@FreeBSD.org>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD: src/lib/libc/locale/ldpart.c,v 1.15 2004/04/25 19:56:50 ache Exp $");
30 #include "xlocale_private.h"
32 #include "namespace.h"
33 #include <sys/types.h>
42 #include "un-namespace.h"
45 #include "setlocale.h"
47 static int split_lines(char *, const char *);
49 __private_extern__
int
50 __part_load_locale(const char *name
,
51 unsigned char *using_locale
,
53 const char *category_filename
,
54 int locale_buf_size_max
,
55 int locale_buf_size_min
,
56 const char **dst_localebuf
)
58 int saverr
, fd
, i
, num_lines
;
61 char filename
[PATH_MAX
];
63 size_t namesize
, bufsize
;
66 * Slurp the locale file into the cache.
68 namesize
= strlen(name
) + 1;
70 /* 'PathLocale' must be already set & checked. */
72 /* Range checking not needed, 'name' size is limited */
73 strcpy(filename
, _PathLocale
);
74 strcat(filename
, "/");
75 strcat(filename
, name
);
76 strcat(filename
, "/");
77 strcat(filename
, category_filename
);
78 if ((fd
= _open(filename
, O_RDONLY
)) < 0)
80 if (_fstat(fd
, &st
) != 0)
82 if (st
.st_size
<= 0) {
86 bufsize
= namesize
+ st
.st_size
;
87 if ((lbuf
= malloc(bufsize
)) == NULL
) {
91 (void)strcpy(lbuf
, name
);
93 plim
= p
+ st
.st_size
;
94 if (_read(fd
, p
, (size_t) st
.st_size
) != st
.st_size
)
97 * Parse the locale file into localebuf.
99 if (plim
[-1] != '\n') {
103 num_lines
= split_lines(p
, plim
);
104 if (num_lines
>= locale_buf_size_max
)
105 num_lines
= locale_buf_size_max
;
106 else if (num_lines
>= locale_buf_size_min
)
107 num_lines
= locale_buf_size_min
;
114 * Record the successful parse in the cache.
116 if (*locale_buf
!= NULL
)
119 for (p
= *locale_buf
, i
= 0; i
< num_lines
; i
++)
120 dst_localebuf
[i
] = (p
+= strlen(p
) + 1);
121 for (i
= num_lines
; i
< locale_buf_size_max
; i
++)
122 dst_localebuf
[i
] = NULL
;
125 return (_LDP_LOADED
);
140 split_lines(char *p
, const char *plim
)
155 __private_extern__
void
156 __ldpart_free_extra(struct __xlocale_st_ldpart
*lp
)
159 free(lp
->_locale_buf
);