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 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216
|
/*
* Copyright (c) 2002-2006 Samit Basu
*
* This program 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 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; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
/*
* To-add: copy/paste/select - typeahead
*/
#include <algorithm>
#include "KeyManager.hpp"
#include "Interpreter.hpp"
#include "Common.hpp"
#include "Context.hpp"
#include <qapplication.h>
#include <QtCore>
#include <iostream>
#define TAB_WIDTH 8
/*
* The following macro returns non-zero if a character is
* a control character.
*/
#define IS_CTRL_CHAR(c) ((unsigned char)(c) < ' ' || (unsigned char)(c)=='\177')
/*
* Given a binary control character, return the character that
* had to be pressed at the same time as the control key.
*/
#define CTRL_TO_CHAR(c) (toupper((unsigned char)(c) | 0x40))
#define GL_WORD_CHARS "_*\?\\[]"
// Maximum allowed number of columns in the text window
#define MAXCOLS 256
#define LINELEN 65536
// ----------------------------------------------------------------------------
// KeyManager
// ----------------------------------------------------------------------------
KeyManager::KeyManager() {
keypresswait = false;
cutbuf = "";
linelen = 1000;
ntotal = 0;
buff_curpos = 0;
term_curpos = 0;
keyseq_count = 0;
last_search = -1;
ncolumn = 80;
nline = 24;
insert = true;
// history.push_back("");
enteredLinesEmpty = true;
ReplacePrompt("");
loopactive = 0;
lineData = "";
ResetLineBuffer();
context = NULL;
QSettings settings("FreeMat", Interpreter::getVersionString());
QStringList historyList = settings.value("interpreter/history").toStringList();
if (!historyList.size())
history.push_back("");
for (int i=0;i<historyList.size();i++)
history.push_back(historyList[i]);
history.push_back(QString("%% ") + QDateTime::currentDateTime().toString());
}
Context* KeyManager::GetCompletionContext() {
return context;
}
void KeyManager::SetCompletionContext(Context* ctxt) {
context = ctxt;
}
int KeyManager::getTerminalWidth() {
return ncolumn;
}
void KeyManager::ClearHistory() {
history.clear();
history.push_back(QString("%% ") + QDateTime::currentDateTime().toString());
}
void KeyManager::SetTermWidth(int w) {
emit UpdateTermWidth(w);
ncolumn = w;
Redisplay();
}
void KeyManager::SetTermCurpos(int n) {
TerminalMove(n - term_curpos);
}
void KeyManager::PlaceCursor(int n) {
/*
* Don't allow the cursor position to go out of the bounds of the input
* line.
*/
if(n >= ntotal)
n = ntotal;
if(n < 0)
n = 0;
/*
* Record the new buffer position.
*/
buff_curpos = n;
/*
* Move the terminal cursor to the corresponding character.
*/
int tmpi = BuffCurposToTermCurpos(n);
SetTermCurpos(tmpi);
}
void KeyManager::PlaceCursorDXDY(int dx, int dy) {
int n = buff_curpos + dx + dy*ncolumn;
/*
* Don't move cursor if out of the bounds of the input
* line.
*/
if(n < 0 || n > ntotal)
return;
/*
* Record the new buffer position.
*/
buff_curpos = n;
/*
* Move the terminal cursor to the corresponding character.
*/
int tmpi = BuffCurposToTermCurpos(n);
SetTermCurpos(tmpi);
}
int KeyManager::DisplayedCharWidth(QChar c, int aterm_curpos) {
if(c=='\t')
return TAB_WIDTH - ((aterm_curpos % ncolumn) % TAB_WIDTH);
if(IS_CTRL_CHAR(c.toAscii()))
return 2;
if(!isprint((int)(unsigned char) c.toAscii())) {
char string[TAB_WIDTH + 4];
sprintf(string, "\\%o", (int)(unsigned char)c.toAscii());
return strlen(string);
};
return 1;
}
// Return the number of terminal characters needed to display a
// given substring.
int KeyManager::DisplayedStringWidth(QString s, int nc, int aterm_curpos) {
int slen=0; /* The displayed number of characters */
int i;
/*
* How many characters are to be measured?
*/
if(nc < 0)
nc = s.length();
/*
* Add up the length of the displayed string.
*/
for(i=0; i<nc; i++)
slen += DisplayedCharWidth(s[i], aterm_curpos + slen);
return slen;
}
void KeyManager::InsertString(int pos, QString s) {
lineData.insert(pos,s);
}
void KeyManager::InsertCharacter(int pos, QChar c) {
lineData.insert(pos,c);
}
void KeyManager::EraseCharacters(int pos, int cnt) {
lineData.remove(pos,cnt);
}
void KeyManager::SetCharacter(int pos, QChar c) {
if (pos < (int)(lineData.size()))
lineData[pos] = c;
else {
int topad = (pos-lineData.size()+1);
lineData.append(QString(topad,' '));
lineData[pos] = c;
}
}
int KeyManager::BuffCurposToTermCurpos(int n) {
return prompt_len + DisplayedStringWidth(lineData, n, prompt_len);
}
void KeyManager::Redisplay() {
/*
* Keep a record of the current cursor position.
*/
int sbuff_curpos = buff_curpos;
/*
* Move the cursor to the start of the terminal line, and clear from there
* to the end of the display.
*/
SetTermCurpos(0);
emit ClearEOD();
/*
* Nothing is displayed yet.
*/
term_len = 0;
/*
* Display the current prompt.
*/
DisplayPrompt();
/*
* Render the part of the line that the user has typed in so far.
*/
OutputString(lineData,'\0');
/*
* Restore the cursor position.
*/
PlaceCursor(sbuff_curpos);
}
void KeyManager::setTerminalWidth(int w) {
ncolumn = w;
}
void KeyManager::ReplacePrompt(QString aprompt) {
prompt = aprompt;
prompt_len = DisplayedStringWidth(aprompt,-1,0);
}
void KeyManager::TerminalMove(int n) {
int cur_row, cur_col; /* The current terminal row and column index of */
/* the cursor wrt the start of the input line. */
int new_row, new_col; /* The target terminal row and column index of */
/* the cursor wrt the start of the input line. */
/*
* How far can we move left?
*/
if(term_curpos + n < 0)
n = term_curpos;
/*
* Break down the current and target cursor locations into rows and columns.
*/
cur_row = term_curpos / ncolumn;
cur_col = term_curpos % ncolumn;
new_row = (term_curpos + n) / ncolumn;
new_col = (term_curpos + n) % ncolumn;
/*
* Move down to the next line.
*/
for(; cur_row < new_row; cur_row++)
emit MoveDown();
/*
* Move up to the previous line.
*/
for(; cur_row > new_row; cur_row--)
emit MoveUp();
/*
* Move to the right within the target line?
*/
if(cur_col < new_col) {
{
for(; cur_col < new_col; cur_col++)
emit MoveRight();
};
/*
* Move to the left within the target line?
*/
} else if(cur_col > new_col) {
{
for(; cur_col > new_col; cur_col--)
emit MoveLeft();
};
}
/*
* Update the recorded position of the terminal cursor.
*/
term_curpos += n;
}
void KeyManager::TruncateDisplay() {
/*
* Keep a record of the current terminal cursor position.
*/
int aterm_curpos = term_curpos;
/*
* First clear from the cursor to the end of the current input line.
*/
emit ClearEOL();
/*
* If there is more than one line displayed, go to the start of the
* next line and clear from there to the end of the display. Note that
* we can't use clear_eod to do the whole job of clearing from the
* current cursor position to the end of the terminal because
* clear_eod is only defined when used at the start of a terminal line
* (eg. with gnome terminals, clear_eod clears from the start of the
* current terminal line, rather than from the current cursor
* position).
*/
if(term_len / ncolumn > term_curpos / ncolumn) {
emit MoveDown();
emit MoveBOL();
emit ClearEOD();
/*
* Where is the cursor now?
*/
term_curpos = ncolumn * (aterm_curpos / ncolumn + 1);
/*
* Restore the cursor position.
*/
SetTermCurpos(aterm_curpos);
};
/*
* Update the recorded position of the final character.
*/
term_len = term_curpos;
}
static inline QString RightSubstring(const QString &a, int m) {
return (a.right(a.length()-m));
}
void KeyManager::AddCharToLine(QChar c) {
/*
* Keep a record of the current cursor position.
*/
int sbuff_curpos = buff_curpos;
int sterm_curpos = term_curpos;
/*
* Work out the displayed width of the new character.
*/
int width = DisplayedCharWidth(c, sterm_curpos);
/*
* If we are in insert mode, or at the end of the line,
* check that we can accomodate a new character in the buffer.
* If not, simply return, leaving it up to the calling program
* to check for the absence of a newline character.
*/
if((insert || sbuff_curpos >= ntotal) && ntotal >= linelen)
return;
/*
* Are we adding characters to the line (ie. inserting or appending)?
*/
if(insert || sbuff_curpos >= ntotal) {
/*
* If inserting, make room for the new character.
*/
if(sbuff_curpos < ntotal) {
InsertCharacter(sbuff_curpos,' ');
};
/*
* Copy the character into the buffer.
*/
SetCharacter(sbuff_curpos,c);
buff_curpos++;
/*
* If the line was extended, update the record of the string length
* and terminate the extended string.
*/
ntotal++;
/*
* Redraw the line from the cursor position to the end of the line,
* and move the cursor to just after the added character.
*/
OutputString(RightSubstring(lineData,sbuff_curpos), '\0');
SetTermCurpos(sterm_curpos + width);
/*
* Are we overwriting an existing character?
*/
} else {
/*
* Get the widths of the character to be overwritten and the character
* that is going to replace it.
*/
int old_width = DisplayedCharWidth(lineData[sbuff_curpos],
sterm_curpos);
/*
* Overwrite the character in the buffer.
*/
SetCharacter(sbuff_curpos,c);
/*
* If we are replacing with a narrower character, we need to
* redraw the terminal string to the end of the line, then
* overwrite the trailing old_width - width characters
* with spaces.
*/
if(old_width > width) {
OutputString(RightSubstring(lineData,sbuff_curpos), '\0');
/*
* Clear to the end of the terminal.
*/
TruncateDisplay();
/*
* Move the cursor to the end of the new character.
*/
SetTermCurpos(sterm_curpos + width);
buff_curpos++;
/*
* If we are replacing with a wider character, then we will be
* inserting new characters, and thus extending the line.
*/
} else if(width > old_width) {
/*
* Redraw the line from the cursor position to the end of the line,
* and move the cursor to just after the added character.
*/
OutputString(RightSubstring(lineData,sbuff_curpos), '\0');
SetTermCurpos(sterm_curpos + width);
buff_curpos++;
/*
* The original and replacement characters have the same width,
* so simply overwrite.
*/
} else {
/*
* Copy the character into the buffer.
*/
SetCharacter(sbuff_curpos,c);
buff_curpos++;
/*
* Overwrite the original character.
*/
OutputChar(c, lineData[buff_curpos]);
};
};
}
int KeyManager::DisplayPrompt() {
term_curpos = 0;
emit MoveBOL();
emit ClearEOL();
OutputString(prompt, '\0');
return 0;
}
/*.......................................................................
* Write a character to the terminal after expanding tabs and control
* characters to their multi-character representations.
*
* Input:
* gl GetLine * The resource object of this program.
* c char The character to be output.
* pad char Many terminals have the irritating feature that
* when one writes a character in the last column of
* of the terminal, the cursor isn't wrapped to the
* start of the next line until one more character
* is written. Some terminals don't do this, so
* after such a write, we don't know where the
* terminal is unless we output an extra character.
* This argument specifies the character to write.
* If at the end of the input line send '\0' or a
* space, and a space will be written. Otherwise,
* pass the next character in the input line
* following the one being written.
* Output:
* return int 0 - OK.
*/
void KeyManager::OutputChar(QChar c, QChar pad) {
QString ostring;
int nchar;
/*
* Check for special characters.
*/
if(c == '\t') {
/*
* How many spaces do we need to represent a tab at the current terminal
* column?
*/
nchar = DisplayedCharWidth('\t', term_curpos);
ostring = QString(nchar,' ');
} else {
nchar = 1;
ostring = QString(1,c);
};
/*
* Write the string to the terminal.
*/
emit OutputRawString(ostring);
/*
* Except for one exception to be described in a moment, the cursor should
* now have been positioned after the character that was just output.
*/
term_curpos += nchar;
/*
* Keep a record of the number of characters in the terminal version
* of the input line.
*/
if(term_curpos > term_len)
term_len = term_curpos;
/*
* If the new character ended exactly at the end of a line,
* most terminals won't move the cursor onto the next line until we
* have written a character on the next line, so append an extra
* space then move the cursor back.
*/
if(term_curpos % ncolumn == 0) {
int sterm_curpos = term_curpos;
OutputChar((pad != '\0') ? pad : ' ', ' ');
SetTermCurpos(sterm_curpos);
};
}
void KeyManager::OutputString(QString st, QChar pad) {
if (st.size() == 0) return;
for(int i=0;i<((int)st.size())-1;i++)
OutputChar(st[i],st[i+1]);
OutputChar(st[st.size()-1],pad);
}
KeyManager::~KeyManager() {
}
void KeyManager::ResetLineBuffer() {
// line.clear();
ntotal = 0;
buff_curpos = 0;
term_curpos = 0;
term_len = 0;
insert_curpos = 0;
lineData = "";
}
void KeyManager::NewLine() {
AddHistory(lineData);
PlaceCursor(ntotal);
emit OutputRawString("\r\n");
emit ExecuteLine(lineData + "\n");
ReplacePrompt("");
ResetLineBuffer();
DisplayPrompt();
}
void KeyManager::Ready() {
ReplacePrompt("--> ");
Redisplay();
}
void KeyManager::CursorLeft() {
PlaceCursor(buff_curpos-1);
}
void KeyManager::CursorRight() {
PlaceCursor(buff_curpos+1);
}
void KeyManager::BeginningOfLine() {
PlaceCursor(0);
}
void KeyManager::BackwardDeleteChar() {
if (1 > buff_curpos - insert_curpos)
return;
CursorLeft();
DeleteChars(1,0);
}
void KeyManager::ForwardDeleteChar() {
DeleteChars(1,0);
}
// Delete nc characters starting from the one under the cursor.
// Optionally copy the deleted characters to the cut buffer.
void KeyManager::DeleteChars(int nc, int cut) {
/*
* If there are fewer than nc characters following the cursor, limit
* nc to the number available.
*/
if(buff_curpos + nc > ntotal)
nc = ntotal - buff_curpos;
/*
* Copy the about to be deleted region to the cut buffer.
*/
if(cut) {
// Fixme
// cutbuf = string(line,buff_curpos,nc);
}
/*
* Nothing to delete?
*/
if(nc <= 0)
return;
/*
* Copy the remaining part of the line back over the deleted characters.
*/
EraseCharacters(buff_curpos,nc);
ntotal -= nc;
/*
* Redraw the remaining characters following the cursor.
*/
OutputString(RightSubstring(lineData,buff_curpos), '\0');
/*
* Clear to the end of the terminal.
*/
TruncateDisplay();
/*
* Place the cursor at the start of where the deletion was performed.
*/
PlaceCursor(buff_curpos);
}
void KeyManager::EndOfLine() {
PlaceCursor(ntotal);
}
void KeyManager::ClearCurrentLine() {
PlaceCursor(0);
ntotal = 0;
lineData.clear();
TruncateDisplay();
}
void KeyManager::KillLine() {
cutbuf = RightSubstring(lineData,buff_curpos);
ntotal = buff_curpos;
lineData.remove(ntotal,lineData.size()-1-ntotal);
TruncateDisplay();
PlaceCursor(buff_curpos);
}
void KeyManager::HistorySearchBackward() {
// update search prefix if current buffer is modified
if (last_search != keyseq_count-1)
SearchPrefix(lineData,buff_curpos);
last_search = keyseq_count;
HistoryFindBackwards();
ntotal = lineData.size();
buff_curpos = ntotal;
Redisplay();
}
void KeyManager::HistorySearchForward() {
// update search prefix if current buffer is modified
if (last_search != keyseq_count-1)
SearchPrefix(lineData,buff_curpos);
last_search = keyseq_count;
HistoryFindForwards();
ntotal = lineData.size();
buff_curpos = ntotal;
Redisplay();
}
void KeyManager::SearchPrefix(QString aline, int aprefix_len) {
prefix = aline.left(aprefix_len);
prefix_len = aprefix_len;
startsearch = history.size();
}
void KeyManager::AddHistory(QString mline) {
prefix = "";
prefix_len = 0;
if (mline.size() > 0) {
if (history.size() > 0 && history.back() != mline)
history.push_back(mline);
while (history.size() > 1000)
history.pop_front();
}
emit SendCommand(mline);
return;
}
void KeyManager::HistoryFindForwards() {
int i;
bool found;
if (startsearch >= (history.size()-1)) {
ResetLineBuffer();
AddStringToLine(prefix);
startsearch = history.size();
return;
}
i = startsearch+1;
found = false;
while (i<((int)history.size()) && !found) {
found = (prefix_len == 0) ||
(history[i].left(prefix_len) == prefix);
if (!found) i++;
}
if (!found && (i >= ((int)history.size()))) {
startsearch = history.size();
ResetLineBuffer();
AddStringToLine(prefix);
return;
}
lineData = history[i];
startsearch = i;
}
void KeyManager::HistoryFindBackwards() {
int i;
bool found;
if (startsearch == 0) return;
i = startsearch-1;
found = false;
while (history.size() > 0 && i>=0 && !found) {
found = (history[i].left(prefix_len) == prefix);
if (!found) i--;
}
if (!found) return;
lineData = history[i];
startsearch = i;
}
/*.......................................................................
* Insert/append a string to the line buffer and terminal at the current
* cursor position.
*
* Input:
* gl GetLine * The resource object of this library.
* s char * The string to be added.
* Output:
* return int 0 - OK.
* 1 - Insufficient room.
*/
void KeyManager::AddStringToLine(QString s) {
int buff_slen; /* The length of the string being added to line[] */
int term_slen; /* The length of the string being written to the terminal */
int sbuff_curpos; /* The original value of gl->buff_curpos */
int sterm_curpos; /* The original value of gl->term_curpos */
/*
* Keep a record of the current cursor position.
*/
sbuff_curpos = buff_curpos;
sterm_curpos = term_curpos;
/*
* How long is the string to be added?
*/
buff_slen = s.length();
term_slen = DisplayedStringWidth(s, buff_slen, sterm_curpos);
/*
* Check that we can accomodate the string in the buffer.
* If not, simply return, leaving it up to the calling program
* to check for the absence of a newline character.
*/
if(ntotal + buff_slen > linelen)
return;
/*
* Move the characters that follow the cursor in the buffer by
* buff_slen characters to the right.
*/
InsertString(buff_curpos,s);
/*
* Copy the string into the buffer.
*/
ntotal += buff_slen;
buff_curpos += buff_slen;
/*
* Maintain the buffer properly terminated.
*/
/*
* Write the modified part of the line to the terminal, then move
* the terminal cursor to the end of the displayed input string.
*/
OutputString(RightSubstring(lineData,sbuff_curpos), '\0');
SetTermCurpos(sterm_curpos + term_slen);
}
void KeyManager::Yank() {
buff_mark = buff_curpos;
if (cutbuf.isEmpty())
return;
AddStringToLine(cutbuf);
}
void KeyManager::ListCompletions(StringVector completions) {
int maxlen; /* The length of the longest matching string */
int width; /* The width of a column */
int ncol; /* The number of columns to list */
int nrow; /* The number of rows needed to list all of the matches */
int row,col; /* The row and column being written to */
int i;
/*
* Not enough space to list anything?
*/
if(ncolumn < 1)
return;
/*
* Work out the maximum length of the matching strings.
*/
maxlen = 0;
for(i=0; i<completions.size(); i++) {
int len = completions[i].length();
if(len > maxlen)
maxlen = len;
};
/*
* Nothing to list?
*/
if(maxlen == 0)
return;
/*
* Split the available terminal width into columns of maxlen + 2 characters.
*/
width = maxlen + 2;
ncol = ncolumn / width;
/*
* If the column width is greater than the terminal width, the matches will
* just have to overlap onto the next line.
*/
if(ncol < 1)
ncol = 1;
/*
* How many rows will be needed?
*/
nrow = (completions.size() + ncol - 1) / ncol;
/*
* Print the matches out in ncol columns, sorted in row order within each
* column.
*/
for(row=0; row < nrow; row++) {
for(col=0; col < ncol; col++) {
int m = col*nrow + row;
if(m < completions.size()) {
char buffer[4096];
sprintf(buffer, "%s%-*s%s", qPrintable(completions[m]),
(int) (ncol > 1 ? maxlen - completions[m].length():0),
"", col<ncol-1 ? " " : "\r\n");
emit OutputRawString(buffer);
} else {
emit OutputRawString("\r\n");
break;
}
}
}
}
QString GetCommonPrefix(StringVector matches,
QString tempstring) {
int minlength;
int prefixlength;
bool allmatch;
QString templ;
int i, j;
minlength = matches[0].size();
for (i=0;i<matches.size();i++)
minlength = (minlength < (int)matches[i].size()) ?
minlength : matches[i].size();
prefixlength = minlength;
templ = matches[0];
for (i=0;i<matches.size();i++) {
j = 0;
allmatch = true;
while (allmatch && (j<prefixlength)) {
QString mtch(matches[i]);
allmatch = (mtch[j] == templ[j]);
if (allmatch) j++;
}
prefixlength = (j < prefixlength) ? j : prefixlength;
}
if (prefixlength <= (int) tempstring.length())
return (QString(""));
else
return(templ.mid(tempstring.length(),prefixlength-tempstring.length()));
}
void KeyManager::CompleteWord() {
int redisplay=0; /* True if the whole line needs to be redrawn */
int suffix_len; /* The length of the completion extension */
int cont_len; /* The length of any continuation suffix */
int nextra; /* The number of characters being added to the */
/* total length of the line. */
int buff_pos; /* The buffer index at which the completion is */
/* to be inserted. */
StringVector matches;
redisplay = 1;
/*
* Get the cursor position at which the completion is to be inserted.
*/
buff_pos = buff_curpos;
/*
* Perform the completion.
*/
QString tempstring;
matches = GetCompletions(lineData, buff_curpos, tempstring);
if(matches.size() == 0) {
emit OutputRawString("\r\n");
term_curpos = 0;
redisplay = 1;
/*
* Are there any completions?
*/
} else if(matches.size() >= 1) {
/*
* If there any ambiguous matches, report them, starting on a new line.
*/
if(matches.size() > 1) {
emit OutputRawString("\r\n");
ListCompletions(matches);
redisplay = 1;
};
/*
* Find the common prefix
*/
QString prefix;
prefix = GetCommonPrefix(matches, tempstring);
/*
* Get the length of the suffix and any continuation suffix to add to it.
*/
suffix_len = prefix.length(); // This is supposed to be the length of the filename extension...
cont_len = 0;
/*
* Work out the number of characters that are to be added.
*/
nextra = suffix_len + cont_len;
/*
* Is there anything to be added?
*/
if(nextra) {
/*
* Will there be space for the expansion in the line buffer?
*/
if(ntotal + nextra < linelen) {
/*
* Make room to insert the filename extension.
*/
InsertString(buff_curpos,prefix.left(nextra));
/*
* Record the increased length of the line.
*/
ntotal += nextra;
/*
* Place the cursor position at the end of the completion.
*/
buff_curpos += nextra;
/*
* If we don't have to redisplay the whole line, redisplay the part
* of the line which follows the original cursor position, and place
* the cursor at the end of the completion.
*/
if(!redisplay) {
TruncateDisplay();
OutputString(RightSubstring(lineData,buff_pos), '\0');
PlaceCursor(buff_curpos);
return;
}
} else {
redisplay = 1;
}
}
}
/*
* Redisplay the whole line?
*/
if(redisplay) {
term_curpos = 0;
Redisplay();
}
}
void KeyManager::getKeyPress() {
keypresswait = true;
while (keypresswait)
qApp->processEvents();
}
void KeyManager::OnChar( int c ) {
if (keypresswait) {
keypresswait = false;
return;
}
keyseq_count++;
switch(c) {
case KM_BACKSPACE:
case KM_BACKSPACEALT:
BackwardDeleteChar();
break;
case KM_LEFT:
CursorLeft();
break;
case KM_RIGHT:
CursorRight();
break;
case KM_DELETE:
ForwardDeleteChar();
break;
case KM_INSERT:
insert = !insert;
break;
case KM_HOME:
BeginningOfLine();
break;
case KM_END:
EndOfLine();
break;
case KM_UP:
HistorySearchBackward();
break;
case KM_DOWN:
HistorySearchForward();
break;
case KM_CTRLA:
BeginningOfLine();
break;
case KM_CTRLB:
emit RegisterInterrupt();
break;
case KM_CTRLE:
EndOfLine();
break;
case KM_CTRLD:
ForwardDeleteChar();
break;
case KM_TAB:
if ((buff_curpos != 0) && (lineData[buff_curpos-1] != ' ') &&
(lineData[buff_curpos-1] != '\t'))
CompleteWord();
else
AddCharToLine(c);
break;
case KM_CTRLY:
Yank();
break;
case KM_CTRLW:
case KM_ESC:
ClearCurrentLine();
break;
case KM_CTRLK:
KillLine();
break;
case KM_NEWLINE:
case 10:
NewLine();
break;
default:
AddCharToLine(c);
}
}
void KeyManager::QueueString(QString t) {
AddStringToLine(t);
}
void KeyManager::QueueMultiString(QString t) {
t.replace(QChar(8233),"\n");
t.replace("\r\n","\n");
t.replace("\r","\n");
if (t.indexOf("\n") < 0) {
QueueString(t);
return;
}
QStringList tlist(t.split("\n"));
for (int i=0;i<tlist.size()-1;i++) {
QString t(tlist[i]);
emit OutputRawString(t+"\r\n");
emit ExecuteLine(t+"\n");
AddHistory(t);
}
if (t.endsWith('\n')) {
QString t(tlist.back());
emit OutputRawString(t+"\r\n");
emit ExecuteLine(t+"\n");
AddHistory(t);
} else {
QueueString(tlist.back());
}
return;
}
void KeyManager::QueueCommand(QString t) {
QueueString(t);
AddHistory(t);
emit OutputRawString("\r\n");
emit ExecuteLine(lineData+"\n");
ResetLineBuffer();
DisplayPrompt();
}
void KeyManager::QueueSilent(QString t) {
emit ExecuteLine(t+"\n");
}
//char* KeyManager::getLine(string aprompt) {
// emit UpdateVariables();
// ReplacePrompt(aprompt);
// DisplayPrompt();
// while (enteredLinesEmpty) {
// loopactive++;
// m_loop->exec();
// }
// string theline(enteredLines.front());
// enteredLines.pop_front();
// enteredLinesEmpty = (enteredLines.empty());
// char *cp;
// cp = strdup(theline.c_str());
// return cp;
//}
void KeyManager::RegisterTerm(QObject* term) {
connect(this,SIGNAL(MoveDown()),term,SLOT(MoveDown()));
connect(this,SIGNAL(MoveUp()),term,SLOT(MoveUp()));
connect(this,SIGNAL(MoveRight()),term,SLOT(MoveRight()));
connect(this,SIGNAL(MoveLeft()),term,SLOT(MoveLeft()));
connect(this,SIGNAL(ClearEOL()),term,SLOT(ClearEOL()));
connect(this,SIGNAL(ClearEOD()),term,SLOT(ClearEOD()));
connect(this,SIGNAL(MoveBOL()),term,SLOT(MoveBOL()));
connect(this,SIGNAL(OutputRawString(QString)),term,
SLOT(OutputRawString(QString)));
connect(this,SIGNAL(ClearDisplay()),term,SLOT(ClearDisplay()));
connect(term,SIGNAL(OnChar(int)),this,SLOT(OnChar(int)));
connect(term,SIGNAL(PlaceCursorDXDY(int, int)),this,SLOT(PlaceCursorDXDY(int, int)));
connect(term,SIGNAL(SetTextWidth(int)),this,SLOT(SetTermWidth(int)));
}
void KeyManager::ClearDisplayCommand() {
emit ClearDisplay();
Ready();
}
void KeyManager::ContinueAction() {
emit ExecuteLine("return\n");
}
void KeyManager::StopAction() {
emit ExecuteLine("retall\n");
}
void KeyManager::DbStepAction() {
emit ExecuteLine("dbstep\n");
}
void KeyManager::DbTraceAction() {
emit ExecuteLine("dbtrace\n");
}
void KeyManager::updateStackDepth(int x) {
if (x == 0) return;
if (x > 0) {
QString cmd;
for (int i=0;i<x;i++)
cmd += "dbup;";
cmd += "\n";
emit ExecuteLine(cmd);
} else {
QString cmd;
for (int i=0;i<-x;i++)
cmd += "dbdown;";
cmd += "\n";
emit ExecuteLine(cmd);
}
}
void KeyManager::SetPrompt(QString txt) {
ReplacePrompt(txt);
Redisplay();
emit UpdateInfoViews();
}
void KeyManager::ChangeDir(const QString& dir) {
emit ExecuteLine("cd '" + dir + "'\n");
}
StringVector KeyManager::GetCompletions(QString line,
int word_end,
QString &matchString) {
if (line.isEmpty()) return StringVector();
StringVector completions;
if (!context->getMutex()->tryLock()) return completions;
QMutexLocker lock(context->getMutex());
context->getMutex()->unlock();
/*
* Find the start of the filename prefix to be completed, searching
* backwards for the first unescaped space, or the start of the line.
*/
int startOfPath = line.lastIndexOf(QRegExp("[^\\\\] |^ |'"),word_end);
if (startOfPath < 0)
startOfPath = 0;
else
startOfPath++;
matchString = line.mid(startOfPath,qMax(0,word_end-startOfPath));
if (matchString.startsWith(' ')) matchString.remove(0,1);
/*
* the preceeding character was not a ' (quote), then
* do a command expansion, otherwise, do a filename expansion.
*/
if (!context) return completions;
if ((startOfPath == 0) ||
((startOfPath > 0) && (line[startOfPath-1] != '\''))) {
StringVector local_completions(context->getCompletions(matchString));
for (int i=0;i<local_completions.size();i++)
if (local_completions[i].indexOf("private:") == -1)
completions.push_back(local_completions[i]);
}
StringVector comp(GetCompletionList(matchString));
for (int i=0;i<comp.size();i++)
if (comp[i].indexOf("private:") == -1)
completions.push_back(comp[i]);
sort(completions.begin(),completions.end());
return completions;
}
void KeyManager::WriteHistory() {
QSettings settings("FreeMat", Interpreter::getVersionString());
QStringList historyList;
for (int i=0;i<history.size();i++)
historyList << history[i];
settings.setValue("interpreter/history",historyList);
}
|