-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdosshell.cpp
executable file
·371 lines (341 loc) · 9.49 KB
/
dosshell.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
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <time.h>
#include "config.h"
#include "ntcons.h"
#include "nnhash.h"
#include "getline.h"
#include "nndir.h"
#include "writer.h"
/* このハッシュテーブルに、拡張子が登録されていると、
* その拡張子のファイル名は、実行可能と見なされる。
* (基本的に登録内容は、文字列 => 文字列 が前提)
* なお、拡張子は小文字に変換して格納すること。
*/
NnHash DosShell::executableSuffix;
/* そのファイル名がディレクトリかどうかを末尾にスラッシュなどが
* ついているかどうかにより判定する。
* path - ファイル名
* return
* 非0 - ディレクトリ , 0 - 一般ファイル
*/
static int isDirectory( const char *path )
{
int lastroot=NnDir::lastRoot(path);
return lastroot != -1 && path[lastroot+1] == '\0';
}
/* そのファイル名が実行可能かどうかを拡張子より判定する。
* path - ファイル名
* return
* 非0 - 実行可能 , 0 - 実行不能
*/
static int isExecutable( const char *path )
{
const char *suffix=strrchr(path,'.');
/* 拡張子がなければ、実行不能 */
if( suffix == NULL || suffix[0]=='\0' || suffix[1]=='\0' )
return 0;
/* 小文字化 */
NnString sfxlwr(suffix+1);
sfxlwr.downcase();
return sfxlwr.compare("com") == 0
|| sfxlwr.compare("exe") == 0
|| sfxlwr.compare("bat") == 0
|| sfxlwr.compare("cmd") == 0
|| DosShell::executableSuffix.get(sfxlwr) != NULL ;
}
/* コマンド名補完のための候補リストを作成する。
* region - 被補完文字列の範囲
* array - 補完候補を入れる場所
* return
* 候補の数
*/
int DosShell::makeTopCompletionList( const NnString ®ion , NnVector &array )
{
NnString pathcore;
/* 先頭の引用符を除く */
if( region.at(0) == '"' ){
pathcore = region.chars() + 1;
}else{
pathcore = region;
}
makeCompletionList( region , array );
for(int i=0 ; i<array.size() ; ){
NnString *fname=(NnString *)((NnPair*)array.at(i))->first();
if( isExecutable( fname->chars()) || isDirectory( fname->chars() )){
++i;
}else{
array.deleteAt( i );
}
}
if( region.findOf("/\\") != -1 )
return array.size();
const char *path=getEnv("PATH",NULL);
if( path == NULL )
return array.size();
/* 環境変数 PATH を操作する */
NnString rest(path);
while( ! rest.empty() ){
NnString path1;
rest.splitTo(path1,rest,";");
if( path1.empty() )
continue;
path1.dequote();
path1 += "\\*";
for( NnDir dir(path1) ; dir.more() ; dir.next() ){
if( ! dir.isDir()
&& dir->istartsWith(pathcore)
&& isExecutable(dir.name()) )
{
if( array.append(new NnPair(new NnStringIC(dir.name()))) )
break;
}
}
/* エイリアスを見にゆく : (注意)グローバル変数を参照している */
extern NnHash aliases;
for( NnHash::Each p(aliases) ; p.more() ; p.next() ){
if( p->key().istartsWith(pathcore) ){
if( array.append( new NnPair(new NnStringIC(p->key()) )) )
break;
}
}
}
array.sort();
array.uniq();
return array.size();
}
void DosShell::putchr(int ch)
{
conOut << (char)ch;
}
void DosShell::putbs(int n)
{
while( n-- > 0 )
conOut << (char)'\b';
}
int DosShell::getkey()
{
fflush(stdout);
#ifdef NYACUS
conOut << "\x1B[>5l";
#endif
return Console::getkey();
}
/* 編集開始フック */
void DosShell::start()
{
prompt();
}
/* 編集終了フック */
void DosShell::end()
{
putchar('\n');
#ifdef NYACUS
Console::restore_default_console_mode();
#endif
}
#ifdef PROMPT_SHIFT
/* プロンプトのうち、nカラム目からを取り出す
* prompt - 元文字列
* offset - 取り出す位置
* result - 取り出した結果
* return
* 抽出プロンプトの桁数
*/
static int prompt_substr( const NnString &prompt , int offset , NnString &result )
{
int i=0;
int column=0;
int nprints=0;
int knj=0;
for(;;){
if( prompt.at(i) == '\x1B' ){
for(;;){
if( prompt.at(i) == '\0' )
goto exit;
result << (char)prompt.at(i);
if( isAlpha(prompt.at(i++)) )
break;
}
}else if( prompt.at(i) == '\0' ){
break;
}else{
if( column == offset ){
if( knj )
result << ' ';
else
result << (char)prompt.at(i);
++nprints;
}else if( column > offset ){
result << (char)prompt.at(i);
++nprints;
}
if( knj == 0 && isKanji(prompt.at(i)) )
knj = 1;
else
knj = 0;
++i;
column++;
}
}
exit:
return nprints;
}
#else
/* エスケープシーケンスを含まない文字数を得る.
* p - 文字列先頭ポインタ
* return
* 文字列のうち、エスケープシーケンスを含まない分の長さ
* (純粋な桁数)
*/
static int strlenNotEscape( const char *p )
{
int w=0,escape=0;
while( *p != '\0' ){
if( *p == '\x1B' )
escape = 1;
if( ! escape )
++w;
if( isAlpha(*p) )
escape = 0;
if( *p == '\n' )
w = 0;
++p;
}
return w;
}
#endif
/* プロンプトを表示する.
* return プロンプトの桁数(バイト数ではない=>エスケープシーケンスを含まない)
*/
int DosShell::prompt()
{
const char *sp=prompt_.chars();
NnString prompt;
time_t now;
time( &now );
struct tm *thetime = localtime( &now );
if( sp != NULL && sp[0] != '\0' ){
while( *sp != '\0' ){
if( *sp == '$' ){
++sp;
switch( toupper(*sp) ){
case '_': prompt << '\n'; break;
case '$': prompt << '$'; break;
case 'A': prompt << '&'; break;
case 'B': prompt << '|'; break;
case 'C': prompt << '('; break;
case 'D':
prompt.addValueOf(thetime->tm_year + 1900);
prompt << '-';
if( thetime->tm_mon + 1 < 10 )
prompt << '0';
prompt.addValueOf(thetime->tm_mon + 1);
prompt << '-';
if( thetime->tm_mday < 10 )
prompt << '0';
prompt.addValueOf( thetime->tm_mday );
switch( thetime->tm_wday ){
case 0: prompt << " (日)"; break;
case 1: prompt << " (月)"; break;
case 2: prompt << " (火)"; break;
case 3: prompt << " (水)"; break;
case 4: prompt << " (木)"; break;
case 5: prompt << " (金)"; break;
case 6: prompt << " (土)"; break;
}
break;
case 'E': prompt << '\x1B'; break;
case 'F': prompt << ')'; break;
case 'G': prompt << '>'; break;
case 'H': prompt << '\b'; break;
case 'I': break;
case 'L': prompt << '<'; break;
case 'N': prompt << (char)NnDir::getcwdrive(); break;
case 'P':{
NnString pwd;
NnDir::getcwd(pwd) ;
prompt << pwd;
break;
}
case 'Q': prompt << '='; break;
case 'S': prompt << ' '; break;
case 'T':
if( thetime->tm_hour < 10 )
prompt << '0';
prompt.addValueOf(thetime->tm_hour);
prompt << ':';
if( thetime->tm_min < 10 )
prompt << '0';
prompt.addValueOf(thetime->tm_min);
prompt << ':';
if( thetime->tm_sec < 10 )
prompt << '0';
prompt.addValueOf(thetime->tm_sec) ;
break;
case 'V':
prompt << SHELL_NAME ; break;
case 'W':{
NnString pwd;
NnDir::getcwd(pwd);
int rootpos=pwd.findLastOf("/\\");
if( rootpos == -1 || rootpos == 2 ){
prompt << pwd;
}else{
prompt << (char)pwd.at(0) << (char)pwd.at(1);
prompt << pwd.chars()+rootpos+1;
}
break;
}
default: prompt << '$' << *sp; break;
}
++sp;
}else{
prompt += *sp++;
}
}
}else{
NnString pwd;
NnDir::getcwd(pwd);
prompt << pwd << '>';
}
#ifdef PROMPT_SHIFT
NnString prompt2;
prompt_size = prompt_substr( prompt , prompt_offset , prompt2 );
conOut << prompt2;
#else
int prompt_size = strlenNotEscape( prompt.chars() );
conOut << prompt;
#endif
/* 必ずキープしなくてはいけない編集領域のサイズを取得する */
NnString *temp;
int minEditWidth = 10;
if( (temp=(NnString*)properties.get("mineditwidth")) != NULL
&& (minEditWidth=atoi(temp->chars())) < 1 )
{
minEditWidth = 10;
}
int whole_width=DEFAULT_WIDTH;
if( (temp=(NnString*)properties.get("width")) != NULL
&& (whole_width=atoi(temp->chars())) < 1 )
{
whole_width = DEFAULT_WIDTH;
}
#ifdef NYACUS
else {
whole_width = Console::getWidth();
}
#endif
int width=whole_width - prompt_size % whole_width ;
if( width <= minEditWidth ){
conOut << '\n';
width = whole_width;
}
setWidth( width );
return width;
}
void DosShell::clear()
{
conOut << "\x1B[2J";
}