-
Notifications
You must be signed in to change notification settings - Fork 0
/
wildcard.c
174 lines (148 loc) · 4.45 KB
/
wildcard.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*=============================================================================
*
* ワイルドカード検索
*
===============================================================================
/ Copyright (C) 1997-2007 Sota. All rights reserved.
/
/ Redistribution and use in source and binary forms, with or without
/ modification, are permitted provided that the following conditions
/ are met:
/
/ 1. Redistributions of source code must retain the above copyright
/ notice, this list of conditions and the following disclaimer.
/ 2. Redistributions in binary form must reproduce the above copyright
/ notice, this list of conditions and the following disclaimer in the
/ documentation and/or other materials provided with the distribution.
/
/ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
/ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
/ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
/ IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
/ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
/ BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
/ USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
/ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
/ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
/ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
/============================================================================*/
#define STRICT
#include <stdio.h>
#include <stdlib.h>
// IPv6対応
//#include <winsock.h>
#include <winsock2.h>
#include <windowsx.h>
#include "common.h"
#include "jreusr.h"
/*===== プロトタイプ =====*/
static int CheckNameMatch(char *str, char *regexp);
/*----- ワイルドカードにマッチするかどうかを返す ------------------------------
*
* Parameter
* char *str : 文字列
* char *regexp : ワイルドカード検索式
*
* Return Value
* int ステータス
* FFFTP_SUCCESS/FFFTP_FAIL
*
* Note
* VAX VMSの時は ; 以降は無視する
*----------------------------------------------------------------------------*/
int CheckFname(char *str, char *regexp)
{
int Sts;
char p1[FMAX_PATH+1];
char p2[FMAX_PATH+1];
char *p;
strcpy(p1, regexp);
strcpy(p2, str);
/* VAX VMSの時のための処理 */
if(AskHostType() == HTYPE_VMS)
{
if((p = strchr(p2, ';')) != NULL)
*p = NUL;
}
/* *? とか ** とかを削除 */
for(p = p1; *p != NUL; p++)
{
while((*p == '*') && ((*(p+1) == '?') || (*(p+1) == '*')))
memmove(p+1, p+2, strlen(p+2)+1);
}
if((strcmp(p1, "*.*") == 0) || (strcmp(p1, "????????.???") == 0))
strcpy(p1, "*");
Sts = FFFTP_SUCCESS;
if(strcmp(p1, "*") != 0)
{
if(strcmp(p1, "*.") == 0)
{
p = strchr(p2, '.');
if((p != NULL) && (*(p+1) != NUL))
Sts = FFFTP_FAIL;
}
else
Sts = CheckNameMatch(p2, p1);
}
return(Sts);
}
/*----- ワイルドカード検索サブルーチン ----------------------------------------
*
* Parameter
* char *str : 文字列
* char *regexp : ワイルドカード検索式
*
* Return Value
* int ステータス
* FFFTP_SUCCESS/FFFTP_FAIL
*----------------------------------------------------------------------------*/
static int CheckNameMatch(char *str, char *regexp)
{
char *p;
for(p = regexp; (*p != NUL) && (*str != NUL); )
{
switch(*p)
{
case '?':
str++;
p++;
break;
case '*':
/* Look for a character matching the one after the '*' */
p++;
if(*p == NUL)
return FFFTP_SUCCESS; /* Automatic match */
while(*str != NUL)
{
while((*str != NUL) && (toupper(*p)!=toupper(*str)))
str++;
if(CheckNameMatch(str, p))
return FFFTP_SUCCESS;
if(*str == NUL)
return FFFTP_FAIL;
else
str++;
}
return FFFTP_FAIL;
default:
if(toupper(*str) != toupper(*p))
return FFFTP_FAIL;
str++;
p++;
break;
}
}
if((*p == NUL) && (*str == NUL))
return FFFTP_SUCCESS;
if ((*p != NUL) && (str[0] == '.') && (str[1] == 0))
return(FFFTP_SUCCESS);
if ((*str == NUL) && (*p == '?'))
{
while (*p == '?')
p++;
return(*p == NUL);
}
if((*str == NUL) && (*p == '*') && (p[1] == '\0'))
return FFFTP_SUCCESS;
return FFFTP_FAIL;
}