-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshell4.cpp
381 lines (352 loc) · 9.43 KB
/
shell4.cpp
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <io.h>
#include "shell.h"
#include "nnstring.h"
#include "nnhash.h"
#include "getline.h"
#include "reader.h"
/* 逆クォートで読みこめる文字列量を戻す */
static int getQuoteMax()
{
NnString *max=(NnString*)properties.get("backquote");
return max == NULL ? 0 : 1024 ;
}
/* 逆クォート処理
* sp 元文字列(`の次を指していること)
* dst 先文字列
* max 上限
* return
* 0 成功
* -1 オーバーフロー
*/
static int doQuote( const char *&sp , NnString &dst , int max , NyadosShell &sh )
{
NnString q;
while( *sp != '\0' ){
if( *sp =='`' ){
/* 連続する `` は、一つの ` へ変換する。 */
if( *(sp+1) != '`' )
break;
++sp;
}
if( isKanji(*sp) )
q += *sp++;
q += *sp++;
}
if( q.length() <= 0 ){
dst += '`';
return 0;
}
fflush(stdout);
fflush(stderr);
/* テンポラリファイルを使って実現…ださださ */
NnString tempfn=NnDir::tempfn();
FILE *fp=fopen( tempfn.chars() , "w" );
int tmpfd = dup(1);
dup2( fileno(fp) , 1 );
sh.interpret( q );
dup2( tmpfd , 1 );
::close( tmpfd );
fclose(fp);
FileReader pp( tempfn.chars() );
// PipeReader pp( q.chars() );
int lastchar=' ';
int ch;
while( !pp.eof() && (ch=pp.getchr()) != EOF ){
if( isSpace(ch) ){
if( ! isSpace(lastchar) )
dst += ' ';
}else{
dst += (char)ch;
}
lastchar = ch;
if( dst.length() >= max )
return -1;
}
dst.trim();
::remove( tempfn.chars() );
return 0;
}
/* リダイレクト先を読み取り、結果を FileWriter オブジェクトで返す.
* オープンできない場合はエラーメッセージも勝手に出力.
* sp 最初の'>'の直後
* 実行後は、
* return
* 出力先
*/
static FileWriter *readWriteRedirect( const char *&sp )
{
// append ?
const char *mode = "w";
if( *sp == '>' ){
++sp;
mode = "a";
}
NnString fn;
NyadosShell::readNextWord(sp,fn);
if( fn.empty() ){
fputs("syntax error near unexpected token `newline'\n",stderr);
return NULL;
}
FileWriter *fw=new FileWriter(fn.chars(),mode);
if( fw != NULL && fw->ok() ){
return fw;
}else{
perror( fn.chars() );
delete fw;
return NULL;
}
}
/* sp が特殊フォルダーを示す文字列から始まっていたら真を返す
* sp … 先頭位置
* quote … 二重引用符内なら真にする
* spc … 直前の文字が空白なら真にしておく
* return
* doFolder で変換すべき文字列であれば、その長さ
*/
int isFolder( const char *sp , int quote , int spc )
{
if( ! spc || quote )
return 0;
if( *sp=='~' &&
(getEnv("HOME")!=NULL || getEnv("USERPROFILE") != NULL ) &&
properties.get("tilde")!=NULL)
{
int n=1;
while( isalnum(sp[n] & 255) || sp[n]=='_' )
++n;
return n;
}
if( sp[0]=='.' && sp[1]=='.' && sp[2]=='.' && properties.get("dots")!=NULL ){
int n=3;
while( sp[n] == '.' )
++n;
return n;
}
return 0;
}
/* sp で始まる特殊フォルダー名を本来のフォルダー名へ変換する
* sp … 先頭位置
* len … 長さ
* dst … 本来のフォルダー名を入れるところ
* quote … 二重引用符内なら真にする
*/
static void doFolder( const char *&sp , int len , NnString &dst , int & )
{
NnString name(sp,len),value;
NnDir::filter( name.chars() , value );
sp += len;
if( value.findOf(" \t\v\r\n") >= 0 ){
dst << '"' << value << '"';
}else{
dst << value;
}
}
/* 環境変数などを展開する(内蔵コマンド向け)
* src - 元文字列
* dst - 結果が入る
* return
* 0 - 成功 , -1 - 失敗
*/
int NyadosShell::explode4internal( const NnString &src , NnString &dst )
{
/* パイプまわりの処理を先に実行する */
NnString firstcmd; /* 最初のパイプ文字までのコマンド */
NnString restcmd; /* それ移行のコマンド */
src.splitTo( firstcmd , restcmd , "|" );
if( ! restcmd.empty() ){
if( restcmd.at(0) == '&' ){ /* 標準出力+エラー出力 */
NnString pipecmds( restcmd.chars()+1 );
PipeWriter *pw=new PipeWriter(pipecmds);
if( pw == NULL || ! pw->ok() ){
perror( pipecmds.chars() );
delete pw;
return -1;
}
this->setOut( pw );
this->setErr( new WriterClone(&out_) );
}else{ /* 標準出力のみ */
NnString pipecmds( restcmd.chars()+1 );
PipeWriter *pw=new PipeWriter(pipecmds);
if( pw == NULL || ! pw->ok() ){
perror( pipecmds.chars() );
delete pw;
return -1;
}
this->setOut( pw );
}
}
int prevchar=' ';
int quote=0;
int len;
dst.erase();
int backquotemax=getQuoteMax();
const char *sp=firstcmd.chars();
while( *sp != '\0' ){
if( *sp == '"' )
quote = !quote;
int prevchar1=(*sp & 255);
if( (len=isFolder(sp,quote,isSpace(prevchar))) != 0 ){
doFolder( sp , len , dst , quote );
}else if( *sp == '>' && !quote ){
++sp;
FileWriter *fw=readWriteRedirect( sp );
if( fw != NULL ){
this->setOut(fw);
}else{
conErr << "can't redirect stdout.\n";
return -1;
}
}else if( *sp == '1' && *(sp+1) == '>' && !quote ){
if( ! restcmd.empty() ){
/* すでにリダイレクトしていたら、エラー */
conErr << "ambigous redirect.\n";
return -1;
}
sp += 2;
if( *sp == '&' && *(sp+1) == '2' ){
sp += 2;
this->setOut( new WriterClone(&err_) );
}else if( *sp == '&' && *(sp+1) == '-' ){
sp += 2;
this->setOut( new NullWriter() );
}else{
FileWriter *fw=readWriteRedirect( sp );
if( fw != NULL ){
this->setOut(fw);
}else{
conErr << "can't redirect stdout.\n";
return -1;
}
}
}else if( *sp == '2' && *(sp+1) == '>' && !quote ){
sp += 2;
if( *sp == '&' && *(sp+1) == '1' ){
sp += 2;
this->setErr( new WriterClone(&out_) );
}else if( *sp == '&' && *(sp+1) == '-' ){
sp += 2;
this->setErr( new NullWriter() );
}else{
FileWriter *fw=readWriteRedirect( sp );
if( fw != NULL ){
this->setErr(fw);
}else{
conErr << "can't redirect stderr.\n";
return -1;
}
}
}else if( *sp == '`' && backquotemax > 0 ){
++sp;
if( doQuote( sp , dst , backquotemax , *this ) == -1 ){
fputs("over flow commandline.\n",stderr);
return -1;
}
++sp;
}else{
if( isKanji(*sp) )
dst += *sp++;
dst += *sp++;
}
prevchar = prevchar1;
}
return 0;
}
/* ヒアドキュメントを行う
* sp - 「<<END」の最初の < の位置を差す。
* dst - 結果(「< 一時ファイル名」等)が入る
* prefix - 「<」or「 」
*/
void NyadosShell::doHereDocument( const char *&sp , NnString &dst , char prefix )
{
int quote_mode = 0 , quote = 0 ;
sp += 2;
/* 終端マークを読み取る */
NnString endWord;
while( *sp != '\0' && (!isspace(*sp & 255) || quote ) ){
if( *sp == '"' ){
quote ^= 1;
quote_mode = 1;
}else{
endWord << *sp ;
}
++sp;
}
/* ドキュメント部分を一時ファイルに書き出す */
this->heredocfn=NnDir::tempfn();
FILE *fp=fopen( heredocfn.chars() , "w" );
if( fp != NULL ){
VariableFilter variable_filter(*this);
NnString line;
NnString *prompt=new NnString(endWord);
*prompt << '>';
this->nesting.append( prompt );
while( this->readline(line) >= 0 && !line.startsWith(endWord) ){
/* <<"EOF" ではなく、<<EOF 形式の場合は、
* %...% 形式の単語を置換する必要あり
*/
if( ! quote_mode )
variable_filter( line );
fputs( line.chars() , fp );
if( ! line.endsWith("\n") )
putc('\n',fp);
line.erase();
}
delete this->nesting.pop();
fclose( fp );
dst << prefix << heredocfn ;
}
}
/* 外部コマンド用プリプロセス.
* ・%1,%2 を変換する
* ・プログラム名の / を ¥へ変換する。
* src - 元文字列
* dst - 加工した結果文字列の入れ先
* return 0 - 成功 , -1 失敗(オーバーフローなど)
*/
int NyadosShell::explode4external( const NnString &src , NnString &dst )
{
/* プログラム名をフィルターにかける:チルダ変換など */
NnString progname,args;
src.splitTo( progname,args );
NnDir::filter( progname.chars() , dst );
if( args.empty() )
return 0;
dst << ' ';
int backquotemax=getQuoteMax();
int quote=0;
int len;
// 引数のコピー.
int spc=1;
for( const char *sp=args.chars() ; *sp != '\0' ; ++sp ){
if( *sp == '"' )
quote ^= 1;
if( (len=isFolder(sp,quote,spc)) != 0 ){
doFolder( sp , len , dst , quote );
--sp;
}else if( *sp == '`' && backquotemax > 0 ){
++sp;
if( doQuote( sp , dst , backquotemax , *this ) == -1 ){
fputs("Over flow commandline.\n",stderr);
return -1;
}
}else if( *sp == '<' && *(sp+1) == '<' && quote == 0 ){
/* ヒアドキュメント */
doHereDocument( sp , dst , '<' );
}else if( *sp == '<' && *(sp+1) == '=' && quote == 0 ){
/* インラインファイルテキスト */
doHereDocument( sp , dst , ' ' );
}else if( *sp == '|' && *(sp+1) == '&' ){
dst << "2>&1 |";
}else{
if( isKanji(*sp) )
dst += *sp++;
dst += *sp;
}
spc = isSpace( *sp );
}
return 0;
}