⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 unistr.c

📁 上一个上传的有问题,这个是好的。visopsys包括系统内核和GUI的全部SOURCE code ,还包括一些基本的docs文档。里面src子目录对应所有SOURCE code.对于想研究操作系统的朋
💻 C
📖 第 1 页 / 共 2 页
字号:
/** * unistr.c - Unicode string handling. Part of the Linux-NTFS project. * * Copyright (c) 2000-2004 Anton Altaparmakov * * This program/include file is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as published * by the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program/include file is distributed in the hope that it will be * useful, but WITHOUT ANY WARRANTY; without even the implied warranty * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program (in the main directory of the Linux-NTFS * distribution in the file COPYING); if not, write to the Free Software * Foundation,Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA * * Modified 01/2007 by Andy McLaughlin for Visopsys port. */#ifdef HAVE_CONFIG_H#include "config.h"#endif#ifdef HAVE_STDIO_H#include <stdio.h>#endif#ifdef HAVE_STDLIB_H#include <stdlib.h>#endif#ifdef HAVE_WCHAR_H#include <wchar.h>#endif#ifdef HAVE_STRING_H#include <string.h>#endif#ifdef HAVE_ERRNO_H#include <errno.h>#endif#include "attrib.h"#include "types.h"#include "unistr.h"#include "debug.h"#include "logging.h"/* * IMPORTANT * ========= * * All these routines assume that the Unicode characters are in little endian * encoding inside the strings!!! *//* * This is used by the name collation functions to quickly determine what * characters are (in)valid. */#if 0static const u8 legal_ansi_char_array[0x40] = {	0x00, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10,	0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10,	0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10,	0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10,	0x17, 0x07, 0x18, 0x17, 0x17, 0x17, 0x17, 0x17,	0x17, 0x17, 0x18, 0x16, 0x16, 0x17, 0x07, 0x00,	0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17,	0x17, 0x17, 0x04, 0x16, 0x18, 0x16, 0x18, 0x18,};#endif/** * ntfs_names_are_equal - compare two Unicode names for equality * @s1:			name to compare to @s2 * @s1_len:		length in Unicode characters of @s1 * @s2:			name to compare to @s1 * @s2_len:		length in Unicode characters of @s2 * @ic:			ignore case bool * @upcase:		upcase table (only if @ic == IGNORE_CASE) * @upcase_size:	length in Unicode characters of @upcase (if present) * * Compare the names @s1 and @s2 and return TRUE (1) if the names are * identical, or FALSE (0) if they are not identical. If @ic is IGNORE_CASE, * the @upcase table is used to perform a case insensitive comparison. */BOOL ntfs_names_are_equal(const ntfschar *s1, size_t s1_len,		const ntfschar *s2, size_t s2_len,		const IGNORE_CASE_BOOL ic,		const ntfschar *upcase, const u32 upcase_size){	if (s1_len != s2_len)		return FALSE;	if (!s1_len)		return TRUE;	if (ic == CASE_SENSITIVE)		return ntfs_ucsncmp(s1, s2, s1_len) ? FALSE: TRUE;	return ntfs_ucsncasecmp(s1, s2, s1_len, upcase, upcase_size) ? FALSE:								       TRUE;}/** * ntfs_names_collate - collate two Unicode names * @name1:	first Unicode name to compare * @name1_len:	length of first Unicode name to compare * @name2:	second Unicode name to compare * @name2_len:	length of second Unicode name to compare * @err_val:	if @name1 contains an invalid character return this value * @ic:		either CASE_SENSITIVE or IGNORE_CASE * @upcase:	upcase table (ignored if @ic is CASE_SENSITIVE) * @upcase_len:	upcase table size (ignored if @ic is CASE_SENSITIVE) * * ntfs_names_collate() collates two Unicode names and returns: * *  -1 if the first name collates before the second one, *   0 if the names match, *   1 if the second name collates before the first one, or * @err_val if an invalid character is found in @name1 during the comparison. * * The following characters are considered invalid: '"', '*', '<', '>' and '?'. */int ntfs_names_collate(const ntfschar *name1, const u32 name1_len,		const ntfschar *name2, const u32 name2_len,		const int err_val __attribute__((unused)),		const IGNORE_CASE_BOOL ic, const ntfschar *upcase,		const u32 upcase_len){	u32 cnt;	ntfschar c1, c2;#ifdef DEBUG	if (!name1 || !name2 || (ic && (!upcase || !upcase_len))) {		ntfs_log_debug("ntfs_names_collate received NULL pointer!\n");		exit(1);	}#endif	for (cnt = 0; cnt < min(name1_len, name2_len); ++cnt) {		c1 = le16_to_cpu(*name1);		name1++;		c2 = le16_to_cpu(*name2);		name2++;		if (ic) {			if (c1 < upcase_len)				c1 = le16_to_cpu(upcase[c1]);			if (c2 < upcase_len)				c2 = le16_to_cpu(upcase[c2]);		}#if 0		if (c1 < 64 && legal_ansi_char_array[c1] & 8)			return err_val;#endif		if (c1 < c2)			return -1;		if (c1 > c2)			return 1;	}	if (name1_len < name2_len)		return -1;	if (name1_len == name2_len)		return 0;	/* name1_len > name2_len */#if 0	c1 = le16_to_cpu(*name1);	if (c1 < 64 && legal_ansi_char_array[c1] & 8)		return err_val;#endif	return 1;}/** * ntfs_ucsncmp - compare two little endian Unicode strings * @s1:		first string * @s2:		second string * @n:		maximum unicode characters to compare * * Compare the first @n characters of the Unicode strings @s1 and @s2, * The strings in little endian format and appropriate le16_to_cpu() * conversion is performed on non-little endian machines. * * The function returns an integer less than, equal to, or greater than zero * if @s1 (or the first @n Unicode characters thereof) is found, respectively, * to be less than, to match, or be greater than @s2. */int ntfs_ucsncmp(const ntfschar *s1, const ntfschar *s2, size_t n){	ntfschar c1, c2;	size_t i;#ifdef DEBUG	if (!s1 || !s2) {		ntfs_log_debug("ntfs_wcsncmp() received NULL pointer!\n");		exit(1);	}#endif	for (i = 0; i < n; ++i) {		c1 = le16_to_cpu(s1[i]);		c2 = le16_to_cpu(s2[i]);		if (c1 < c2)			return -1;		if (c1 > c2)			return 1;		if (!c1)			break;	}	return 0;}/** * ntfs_ucsncasecmp - compare two little endian Unicode strings, ignoring case * @s1:			first string * @s2:			second string * @n:			maximum unicode characters to compare * @upcase:		upcase table * @upcase_size:	upcase table size in Unicode characters * * Compare the first @n characters of the Unicode strings @s1 and @s2, * ignoring case. The strings in little endian format and appropriate * le16_to_cpu() conversion is performed on non-little endian machines. * * Each character is uppercased using the @upcase table before the comparison. * * The function returns an integer less than, equal to, or greater than zero * if @s1 (or the first @n Unicode characters thereof) is found, respectively, * to be less than, to match, or be greater than @s2. */int ntfs_ucsncasecmp(const ntfschar *s1, const ntfschar *s2, size_t n,		const ntfschar *upcase, const u32 upcase_size){	ntfschar c1, c2;	size_t i;#ifdef DEBUG	if (!s1 || !s2 || !upcase) {		ntfs_log_debug("ntfs_wcsncasecmp() received NULL pointer!\n");		exit(1);	}#endif	for (i = 0; i < n; ++i) {		if ((c1 = le16_to_cpu(s1[i])) < upcase_size)			c1 = le16_to_cpu(upcase[c1]);		if ((c2 = le16_to_cpu(s2[i])) < upcase_size)			c2 = le16_to_cpu(upcase[c2]);		if (c1 < c2)			return -1;		if (c1 > c2)			return 1;		if (!c1)			break;	}	return 0;}/** * ntfs_ucsnlen - determine the length of a little endian Unicode string * @s:		pointer to Unicode string * @maxlen:	maximum length of string @s * * Return the number of Unicode characters in the little endian Unicode * string @s up to a maximum of maxlen Unicode characters, not including * the terminating (ntfschar)'\0'. If there is no (ntfschar)'\0' between @s * and @s + @maxlen, @maxlen is returned. * * This function never looks beyond @s + @maxlen. */u32 ntfs_ucsnlen(const ntfschar *s, u32 maxlen){	u32 i;	for (i = 0; i < maxlen; i++) {		if (!le16_to_cpu(s[i]))			break;	}	return i;}/** * ntfs_ucsndup - duplicate little endian Unicode string * @s:		pointer to Unicode string * @maxlen:	maximum length of string @s * * Return a pointer to a new little endian Unicode string which is a duplicate * of the string s.  Memory for the new string is obtained with malloc(3), and * can be freed with free(3). * * A maximum of @maxlen Unicode characters are copied and a terminating * (ntfschar)'\0' little endian Unicode character is added. * * This function never looks beyond @s + @maxlen. * * Return a pointer to the new little endian Unicode string on success and NULL * on failure with errno set to the error code. */ntfschar *ntfs_ucsndup(const ntfschar *s, u32 maxlen){	ntfschar *dst;	u32 len;	len = ntfs_ucsnlen(s, maxlen);	dst = malloc((len + 1) * sizeof(ntfschar));	if (dst) {		memcpy(dst, s, len * sizeof(ntfschar));		dst[len] = cpu_to_le16(L'\0');	}	return dst;}#ifndef __VISOPSYS__/** * ntfs_name_upcase - Map an Unicode name to its uppercase equivalent * @name: * @name_len: * @upcase: * @upcase_len: * * Description... * * Returns: */void ntfs_name_upcase(ntfschar *name, u32 name_len, const ntfschar *upcase,		const u32 upcase_len){	u32 i;	ntfschar u;	for (i = 0; i < name_len; i++)		if ((u = le16_to_cpu(name[i])) < upcase_len)			name[i] = upcase[u];}/** * ntfs_file_value_upcase - Convert a filename to upper case * @file_name_attr: * @upcase: * @upcase_len: * * Description... * * Returns: */void ntfs_file_value_upcase(FILE_NAME_ATTR *file_name_attr,		const ntfschar *upcase, const u32 upcase_len){	ntfs_name_upcase((ntfschar*)&file_name_attr->file_name,			file_name_attr->file_name_length, upcase, upcase_len);}#endif /* __VISOPSYS__ *//** * ntfs_file_values_compare - Which of two filenames should be listed first * @file_name_attr1: * @file_name_attr2: * @err_val: * @ic: * @upcase: * @upcase_len: * * Description... * * Returns: */int ntfs_file_values_compare(const FILE_NAME_ATTR *file_name_attr1,		const FILE_NAME_ATTR *file_name_attr2,		const int err_val, const IGNORE_CASE_BOOL ic,		const ntfschar *upcase, const u32 upcase_len){	return ntfs_names_collate((ntfschar*)&file_name_attr1->file_name,			file_name_attr1->file_name_length,			(ntfschar*)&file_name_attr2->file_name,			file_name_attr2->file_name_length,			err_val, ic, upcase, upcase_len);}/** * ntfs_ucstombs - convert a little endian Unicode string to a multibyte string * @ins:	input Unicode string buffer

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -