-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhistory.cpp
194 lines (180 loc) · 4.82 KB
/
history.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
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "nnstring.h"
#include "nnvector.h"
#include "history.h"
#include "reader.h"
#include "shell.h"
/* ヒストリの中から、特定文字列を含んだ行を取り出す
* key - 検索キー
* line - ヒットした行
* return 0 - 見つかった , -1 - 見つからなかった.
*/
int History::seekLineHas( const NnString &key , NnString &line )
{
NnString temp;
for( int j=size()-2 ; j >= 0 ; --j ){
this->get( j , temp );
if( strstr(temp.chars(),key.chars()) != NULL ){
line = temp;
return 0;
}
}
return -1;
}
/* ヒストリの中から、特定文字列から始まった行を取り出す
* key - 検索キー
* line - ヒットした行
* return 0 - 見つかった , -1 - 見つからなかった.
*/
int History::seekLineStartsWith( const NnString &key , NnString &line )
{
NnString temp;
for( int j=size()-2 ; j >= 0 ; --j ){
this->get( j , temp );
if( strncmp(temp.chars(),key.chars(),key.length())==0 ){
line = temp;
return 0;
}
}
return -1;
}
/* 文字列からヒストリ記号を検出して、置換を行う。
* hisObj - ヒストリオブジェクト
* src - 元文字列
* dst - 置換結果を入れる先 or エラー文字列
* return
* 0 - 正常終了 , -1 - エラー
*/
int preprocessHistory( History &hisObj , const NnString &src , NnString &dst )
{
NnString line;
int quote=0;
const char *sp=src.chars();
while( *sp != '\0' ){
if( *sp != '!' || quote ){
if( *sp == '"' )
quote = !quote;
dst += *sp++;
}else{
NnVector argv;
NnString *arg1;
if( *++sp == '\0' )
break;
int sign=0;
switch( *sp ){
case '!':
++sp;
case '*':case ':':case '$':case '^':
if( hisObj.size() >= 2 ){
hisObj.get(-2,line);
}else{
line = "";
}
break;
case '-':
sign = -1;
++sp;
default:
if( isDigit(*sp) ){
int number = (int)strtol(sp,(char**)&sp,10);
hisObj.get( sign ? -number-1 : +number , line );
}else if( *sp == '?' ){
NnString key,temp;
while( *sp != '\0' ){
if( *sp == '?' ){
++sp;
break;
}
key += *sp;
}
if( hisObj.seekLineHas(key,line) != 0 ){
dst.erase();
dst << "!?" << key << ": event not found.\n";
return -1;
}
}else{
NnString key;
NyadosShell::readWord(sp,key);
if( hisObj.seekLineStartsWith(key,line) != 0 ){
dst.erase();
dst << "!" << key << ": event not found.\n";
return -1;
}
}
break;
}
line.splitTo( argv );
if( *sp == ':' )
++sp;
switch( *sp ){
case '^':
if( argv.size() > 1 && (arg1=(NnString*)argv.at(1)) != NULL )
dst += *arg1;
++sp;
break;
case '$':
if( argv.size() > 0
&& (arg1=(NnString*)argv.at(argv.size()-1)) != NULL )
dst += *arg1;
++sp;
break;
case '*':
for(int j=1;j<argv.size();j++){
arg1 = (NnString*)argv.at( j );
if( arg1 != NULL )
dst += *arg1;
dst += ' ';
}
++sp;
break;
default:
if( isDigit(*sp) ){
int n=strtol(sp,(char**)&sp,10);
if( argv.size() >= n && (arg1=(NnString*)argv.at(n)) != NULL )
dst += *arg1;
}else{
dst += line;
}
break;
}
}
}
return 0;
}
NnString *History::operator[](int at)
{
if( at >= history.size() )
return NULL;
if( at >= 0 )
return (NnString *)history.at(at);
at += history.size();
if( at < 0 || at >= history.size() )
return NULL;
return (NnString *)history.at( at );
}
int History::size()
{
return history.size();
}
void History::pack()
{
NnString *r1=(*this)[-1];
NnString *r2=(*this)[-2];
if( size() >= 2 && r1 != NULL && r2 != NULL && r1->compare( *r2 ) == 0 )
delete history.pop();
}
History &History::operator << ( const NnString &str )
{
history.append( str.clone() );
return *this;
}
void History::read( Reader &reader )
{
NnString buffer;
while( reader.readLine(buffer) >= 0 ){
history.append( buffer.clone() );
}
}