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
|
// Copyright (C) 1999-2002 Paul O. Lewis
//
// This file is part of NCL (Nexus Class Library).
//
// NCL 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.
//
// NCL 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 NCL; if not, write to the Free Software Foundation, Inc.,
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
#include "ncl/ncl.h"
#include "basiccmdline.h"
#include <sstream>
#include <cassert>
using namespace std;
/*----------------------------------------------------------------------------------------------------------------------
The constructor simply passes along `i' to the base class constructor. Nothing else needs to be done.
*/
MyNexusToken::MyNexusToken(
istream & i) /* is the input file stream attached to the NEXUS file to be read */
: NxsToken(i)
{
}
/*----------------------------------------------------------------------------------------------------------------------
Overrides the NxsToken::OutputComment virtual function (which does nothing) to display output comments [!comments
like this one beginning with an exclamation point]. The output comment contained in `msg' is simply sent to the
standard output stream cout.
*/
void MyNexusToken::OutputComment(
const NxsString & msg) /* is the output comment to be displayed */
{
cout << msg << endl;
}
/*----------------------------------------------------------------------------------------------------------------------
Initializes the `NCL_BLOCKTYPE_ATTR_NAME' data member to "BASICCMDLINE" and calls the FactoryDefaults member function to perform the
remaining initializations. The data member `next_command' is set to NULL so that memory will be allocated for it in
FactoryDefaults.
*/
BASICCMDLINE::BASICCMDLINE()
{
NCL_BLOCKTYPE_ATTR_NAME = "BASICCMDLINE";
// Make sure all data members that are pointers are initialized to NULL!
// Failure to do this will result in problems because functions such as
// FactoryDefaults() will try to delete an object if it is non-NULL.
taxa = NULL;
trees = NULL;
assumptions = NULL;
distances = NULL;
characters = NULL;
data = NULL;
unaligned = NULL;
next_command = NULL;
FactoryDefaults();
}
/*----------------------------------------------------------------------------------------------------------------------
Closes `logf' if it is open and deletes memory allocated to `next_command'.
*/
BASICCMDLINE::~BASICCMDLINE()
{
NCL_ASSERT(next_command != NULL);
delete [] next_command;
if (logf_open)
logf.close();
}
/*----------------------------------------------------------------------------------------------------------------------
The code here is identical to the base class version (simply returns 0), so the code here should either be
modified or this derived version eliminated altogether. Under what circumstances would you need to modify the
default code, you ask? This function should be modified to something meaningful if this derived class needs to
construct and run a NxsSetReader object to read a set involving characters. The NxsSetReader object may need to
use this function to look up a character label encountered in the set. A class that overrides this method should
return the character index in the range [1..`nchar']; i.e., add one to the 0-offset index.
*/
unsigned BASICCMDLINE::CharLabelToNumber(
NxsString) NCL_COULD_BE_CONST /* is the character label to be translated to character number */
{
return 0;
}
/*----------------------------------------------------------------------------------------------------------------------
Called by the NxsReader object when a block named `blockName' is entered. Allows program to notify user of
progress in parsing the NEXUS file. Also gives program the opportunity to ask user if it is ok to purge data
currently contained in this block. If user is asked whether existing data should be deleted, and the answer comes
back no, then then return false, otherwise return true. Overrides pure virtual function in class NxsReader.
*/
bool BASICCMDLINE::EnteringBlock(
NxsString blockName) /* is the name of the block just entered */
{
message = "Reading ";
message += blockName;
message += " block...";
PrintMessage();
return true;
}
/*----------------------------------------------------------------------------------------------------------------------
Called by the NxsReader object when exiting a block named `blockName'. Allows program to notify user of progress
in parsing the NEXUS file. Virtual function that overrides the pure virtual function in the base class NxsReader.
*/
void BASICCMDLINE::ExitingBlock(
NxsString ) /* is the name of the block just exited */
{
}
/*----------------------------------------------------------------------------------------------------------------------
Sets all data members to their factory default settings: `inf_open', `logf_open' and `quit_now' are set to false;
`message' to the null string, and the pointers `data', `characters', `assumptions', `taxa' and `trees'
are all set to NULL. The C-string `next_command' is allocated COMMAND_MAXLEN + 1 bytes if it is currently NULL,
and its first byte is set to the null character to create an empty `next_command' string.
*/
void BASICCMDLINE::FactoryDefaults()
{
isEmpty = true;
inf_open = false;
logf_open = false;
quit_now = false;
message.clear();
if (trees != NULL)
{
Detach(trees);
delete trees;
trees = NULL;
}
if (taxa != NULL)
{
Detach(taxa);
delete taxa;
taxa = NULL;
}
if (assumptions != NULL)
{
Detach(assumptions);
delete assumptions;
assumptions = NULL;
}
if (distances != NULL)
{
Detach(distances);
delete distances;
distances = NULL;
}
if (characters != NULL)
{
Detach(characters);
delete characters;
characters = NULL;
}
if (data != NULL)
{
Detach(data);
delete data;
data = NULL;
}
if (unaligned != NULL)
{
Detach(unaligned);
delete unaligned;
unaligned = NULL;
}
if (next_command == NULL)
{
next_command = new char[COMMAND_MAXLEN + 1];
}
next_command[0] = '\0';
}
/*----------------------------------------------------------------------------------------------------------------------
Returns true if file named `fn' already exists, false otherwise.
*/
bool BASICCMDLINE::FileExists(
const char * fn) /* is the name of the file to check */
{
bool exists = false;
FILE *fp = fopen(fn, "r");
if (fp != NULL)
{
fclose(fp);
exists = true;
}
return exists;
}
/*----------------------------------------------------------------------------------------------------------------------
Called whenever a file name needs to be read from either the command line or a file. Expects next token to be "="
followed by the token representing the file name. Call this function after, say, the keyword "file" has been read
in the following LOG command:
>
log file=doofus.txt start replace;
>
Note that this function will read only the "=doofus.txt " leaving "start replace;" in the stream for reading at
a later time.
*/
NxsString BASICCMDLINE::GetFileName(
NxsToken & token) /* is the token used to read from `in' */
{
// Eat the equals sign
token.GetNextToken();
if (!token.Equals("="))
{
errormsg = "Expecting an equals sign, but found ";
errormsg += token.GetToken();
errormsg += " instead";
throw NxsException(errormsg, token.GetFilePosition(), token.GetFileLine(), token.GetFileColumn());
}
// Now get the filename itself
token.GetNextToken();
return token.GetToken();
}
/*----------------------------------------------------------------------------------------------------------------------
Called when the END or ENDBLOCK command needs to be parsed from within the BASICCMDLINE block. Basically just
checks to make sure the next token in the data file is a semicolon.
*/
void BASICCMDLINE::HandleEndblock(
NxsToken & token) /* is the token used to read from `in' */
{
// Get the semicolon following END or ENDBLOCK token
token.GetNextToken();
if (!token.Equals(";"))
{
errormsg = "Expecting ';' to terminate the END or ENDBLOCK command, but found ";
errormsg += token.GetToken();
errormsg += " instead";
throw NxsException(errormsg, token.GetFilePosition(), token.GetFileLine(), token.GetFileColumn());
}
}
/*----------------------------------------------------------------------------------------------------------------------
Handles everything after the EXECUTE keyword and the terminating semicolon. Purges all blocks before executing
file specified, and no warning is given of this.
*/
void BASICCMDLINE::HandleExecute(
NxsToken & token) /* is the token used to read from `in' */
{
// Issuing the EXECUTE command from within a file is a no-no (at least in this program)
if (inf_open)
{
errormsg = "Cannot issue execute command from within a BASICCMDLINE block";
throw NxsException(errormsg, token.GetFilePosition(), token.GetFileLine(), token.GetFileColumn());
}
// Get the file name to execute (note: if filename contains underscores, these will be
// automatically converted to spaces; user should surround such filenames with single quotes)
token.GetNextToken();
NxsString fn = token.GetToken();
// Get the semicolon terminating the EXECUTE command
token.GetNextToken();
if (!token.Equals(";"))
{
errormsg = "Expecting ';' to terminate the EXECUTE command, but found ";
errormsg += token.GetToken();
errormsg += " instead";
throw NxsException(errormsg, token.GetFilePosition(), token.GetFileLine(), token.GetFileColumn());
}
if (FileExists(fn.c_str()))
{
cerr << endl;
cerr << "Opening " << fn << "..." << endl;
PurgeBlocks();
ifstream inf(fn.c_str(), ios::binary | ios::in);
inf_open = true;
MyNexusToken ftoken(inf);
try
{
Execute(ftoken);
}
catch(NxsException x)
{
NexusError(errormsg, x.pos, x.line, x.col);
}
if (inf_open)
inf.close();
inf_open = false;
// Users are allowed to put DATA blocks in their NEXUS files, but internally the data is always
// stored in a NxsCharacterBlock object.
if (characters->IsEmpty() && !data->IsEmpty())
{
data->TransferTo(*characters);
}
} // if (FileExists(fn.c_str()))
else
{
cerr << endl;
cerr << "Oops! Could not find specified file: " << fn << endl;
}
}
/*----------------------------------------------------------------------------------------------------------------------
Called when the HELP command needs to be parsed from within the BASICCMDLINE block.
*/
void BASICCMDLINE::HandleHelp(
NxsToken & token) /* is the token used to read from `in' */
{
// Retrieve all tokens for this command, stopping only in the event
// of a semicolon or an unrecognized keyword
for (;;)
{
token.GetNextToken();
if (token.Equals(";"))
{
break;
}
else
{
errormsg = "Unexpected keyword (";
errormsg += token.GetToken();
errormsg += ") encountered reading HELP command";
throw NxsException(errormsg, token.GetFilePosition(), token.GetFileLine(), token.GetFileColumn());
}
}
message = "\nExamples of use of available commands:";
message += "\n help -> shows this message";
message += "\n log file=mylog.txt start -> opens log file named mylog.txt";
message += "\n log stop -> closes current log file";
message += "\n exe mydata.nex -> executes nexus file mydata.nex";
message += "\n show -> reports on blocks currently stored";
message += "\n quit -> terminates application";
message += "\n";
PrintMessage();
}
/*----------------------------------------------------------------------------------------------------------------------
Called when the HELP command needs to be parsed from within the BASICCMDLINE block.
*/
void BASICCMDLINE::HandleShow(
NxsToken & token) /* is the token used to read from `in' */
{
// Retrieve all tokens for this command, stopping only in the event
// of a semicolon or an unrecognized keyword
for (;;)
{
token.GetNextToken();
if (token.Equals(";"))
break;
else
{
errormsg = "Unexpected keyword (";
errormsg += token.GetToken();
errormsg += ") encountered reading HELP command";
throw NxsException(errormsg, token.GetFilePosition(), token.GetFileLine(), token.GetFileColumn());
}
}
bool taxaStored = !taxa->IsEmpty();
bool treesStored = !trees->IsEmpty();
bool assumptionsStored = !assumptions->IsEmpty();
bool distancesStored = !distances->IsEmpty();
bool charactersStored = !characters->IsEmpty();
bool dataStored = !data->IsEmpty();
bool unalignedStored = !unaligned->IsEmpty();
bool isAnythingStored = (taxaStored || treesStored || assumptionsStored || distancesStored || charactersStored || dataStored || unalignedStored);
if (isAnythingStored)
message = "\nNexus blocks currently stored:";
else
message = "\nNo Nexus blocks are currently stored.";
PrintMessage();
if (!taxa->IsEmpty())
{
cerr << "\n TAXA block found" << endl;
taxa->Report(cerr);
if (logf_open)
taxa->Report(logf);
}
if (!trees->IsEmpty())
{
cerr << "\n TREES block found" << endl;
trees->Report(cerr);
if (logf_open)
trees->Report(logf);
}
if (!assumptions->IsEmpty())
{
cerr << "\n ASSUMPTIONS block found" << endl;
assumptions->Report(cerr);
if (logf_open)
assumptions->Report(logf);
}
if (!distances->IsEmpty())
{
cerr << "\n DISTANCES block found" << endl;
distances->Report(cerr);
if (logf_open)
distances->Report(logf);
}
if (!characters->IsEmpty())
{
cerr << "\n CHARACTERS block found" << endl;
characters->Report(cerr);
if (logf_open)
characters->Report(logf);
}
if (!data->IsEmpty())
{
cerr << "\n DATA block found" << endl;
data->Report(cerr);
if (logf_open)
data->Report(logf);
}
if (!unaligned->IsEmpty())
{
cerr << "\n UNALIGNED block found" << endl;
unaligned->Report(cerr);
if (logf_open)
unaligned->Report(logf);
}
}
/*----------------------------------------------------------------------------------------------------------------------
Called when the LOG command needs to be parsed from within the BASICCMDLINE block.
*/
void BASICCMDLINE::HandleLog(
NxsToken & token) /* is the token used to read from `in' */
{
bool starting = false;
bool stopping = false;
bool appending = false;
bool replacing = false;
bool name_provided = false;
NxsString logfname;
// Retrieve all tokens for this command, stopping only in the event
// of a semicolon or an unrecognized keyword
for (;;)
{
token.GetNextToken();
if (token.Equals(";"))
{
break;
}
else if (token.Abbreviation("STOp"))
{
stopping = true;
}
else if (token.Abbreviation("STArt"))
{
starting = true;
}
else if (token.Abbreviation("Replace"))
{
replacing = true;
}
else if (token.Abbreviation("Append"))
{
appending = true;
}
else if (token.Abbreviation("File"))
{
logfname = GetFileName(token);
name_provided = true;
}
else
{
errormsg = "Unexpected keyword (";
errormsg += token.GetToken();
errormsg += ") encountered reading LOG command";
throw NxsException(errormsg, token.GetFilePosition(), token.GetFileLine(), token.GetFileColumn());
}
}
// Check for incompatible combinations of keywords
if (stopping && (starting || appending || replacing || name_provided))
{
errormsg = "Cannot specify STOP with any of the following START, APPEND, REPLACE, FILE";
throw NxsException(errormsg, token.GetFilePosition(), token.GetFileLine(), token.GetFileColumn());
}
if (appending && replacing)
{
errormsg = "Cannot specify APPEND and REPLACE at the same time";
throw NxsException(errormsg, token.GetFilePosition(), token.GetFileLine(), token.GetFileColumn());
}
if (logf_open && (starting || name_provided || appending || replacing))
{
errormsg = "Cannot start log file since log file is already open";
throw NxsException(errormsg, token.GetFilePosition(), token.GetFileLine(), token.GetFileColumn());
}
// Is user closing an open log file?
if (stopping)
{
logf.close();
logf_open = false;
message = "\nLog file closed";
PrintMessage();
return;
}
// If this far, must be attempting to open a log file
if (!name_provided)
{
errormsg = "Must provide a file name when opening a log file\n";
errormsg += "e.g., log file=doofus.txt start replace;";
throw NxsException(errormsg, token.GetFilePosition(), token.GetFileLine(), token.GetFileColumn());
}
if (appending)
{
logf_open = true;
logf.open(logfname.c_str(), ios::out | ios::app);
message = "\nAppending to log file ";
message += logfname;
PrintMessage();
}
else if (replacing)
{
logf_open = true;
logf.open(logfname.c_str());
message = "\nReplacing log file ";
message += logfname;
PrintMessage();
}
else
{
bool exists = FileExists(logfname.c_str());
bool userok = true;
if (exists && !UserQuery("Ok to replace?", "Log file specified already exists", BASICCMDLINE::UserQueryEnum(BASICCMDLINE::uq_yes | BASICCMDLINE::uq_no)))
userok = false;
if (userok)
{
logf_open = true;
logf.open(logfname.c_str());
}
if (exists && userok)
{
message = "\nReplacing log file ";
message += logfname;
}
else if (userok)
{
message = "\nLog file ";
message += logfname;
message += " opened";
}
else
{
message = "\nLog command aborted";
}
PrintMessage();
}
}
/*----------------------------------------------------------------------------------------------------------------------
Accepts a string in the form of a BASICCMDLINE block containing one command and processes it just like a real
BASICCMDLINE block in a NEXUS data file.
*/
void BASICCMDLINE::HandleNextCommand()
{
std::istringstream cmdin(next_command);
MyNexusToken token(cmdin);
try
{
Read(token);
}
catch(NxsException x)
{
NexusError(errormsg, x.pos, x.line, x.col);
}
}
/*----------------------------------------------------------------------------------------------------------------------
Called when an error is encountered in a NEXUS file. Allows program to give user details of the error as well as
the precise location of the error.
*/
void BASICCMDLINE::NexusError(
NxsString msg, /* is the error message */
file_pos , /* is the point in the NEXUS file where the error occurred */
long line, /* is the line in the NEXUS file where the error occurred */
long col) /* is the column in the NEXUS file where the error occurred */
{
message = "\n";
message += msg;
PrintMessage();
if (inf_open)
{
message = "Line: ";
message += line;
PrintMessage();
message = "Column: ";
message += col;
PrintMessage();
}
}
/*----------------------------------------------------------------------------------------------------------------------
Begins with the command just entered by the user, which is stored in the data member `next_command', adds a
semicolon (if the user failed to supply one), and then adds the string "end;" so the whole bundle looks like a
very short BASICCMDLINE block. This is then passed to HandleNextCommand, which processes it just like a real
BASICCMDLINE block in a NEXUS data file.
*/
void BASICCMDLINE::PreprocessNextCommand()
{
// If user failed to add the terminating semicolon, we'll do it now. We will also remove the line feed
// at the end and add the command "end;" to the end of the line (see explanation below).
unsigned len = (unsigned)strlen(next_command);
NCL_ASSERT(len > 0);
// Remove any whitespace characters from end of string entered by user
//
unsigned i = len;
while (i > 0 && next_command[i-1] == ' ' || next_command[i-1] == '\t' || next_command[i-1] == '\n')
i--;
// If character at position i - 1 is a semicolon, put '\0' terminator at position i;
// otherwise, put a semicolon at position i and terminator at i + 1
if (next_command[i-1] != ';')
{
next_command[i] = ';';
i++;
}
NCL_ASSERT(i <= COMMAND_MAXLEN);
next_command[i] = '\0';
// Now add a semicolon at the beginning and terminate with an "END;" command
// so that we can pretend this is simply a very short private NEXUS block
// containing only one command. This allows us to simply use the Read
// function we inherited from the base class BstBase to process the command.
len = (unsigned)strlen(next_command);
NCL_ASSERT(len < COMMAND_MAXLEN-2);
NxsString tmp = ";";
tmp += next_command;
tmp += "end;";
strcpy(next_command, tmp.c_str());
}
/*----------------------------------------------------------------------------------------------------------------------
All output is funneled through here. Writes string currently stored in `message' (a NxsString data member) to the
output file stream, if open, and also to the console via cerr. Places a newline after the string if `linefeed' is
true.
*/
void BASICCMDLINE::PrintMessage(
bool linefeed) const /* if true, places newline character after message */
{
cerr << message;
if (linefeed)
cerr << endl;
if (logf_open)
{
logf << message;
if (linefeed)
logf << endl;
}
}
/*----------------------------------------------------------------------------------------------------------------------
Detaches all blocks, deletes them, creates new blocks, and finally adds the new blocks. Call this function if
you want to be sure that there is no data currently stored in any blocks.
*/
void BASICCMDLINE::PurgeBlocks()
{
if (blockList != NULL)
{
Detach(taxa);
Detach(trees);
Detach(assumptions);
Detach(distances);
Detach(characters);
Detach(data);
Detach(unaligned);
}
delete taxa;
delete trees;
delete assumptions;
delete distances;
delete characters;
delete data;
delete unaligned;
taxa = new NxsTaxaBlock();
trees = new NxsTreesBlock(taxa);
assumptions = new NxsAssumptionsBlock(taxa);
distances = new NxsDistancesBlock(taxa);
characters = new NxsCharactersBlock(taxa, assumptions);
data = new NxsDataBlock(taxa, assumptions);
unaligned = new NxsUnalignedBlock(taxa);
Add(taxa);
Add(trees);
Add(assumptions);
Add(distances);
Add(characters);
Add(data);
Add(unaligned);
}
/*----------------------------------------------------------------------------------------------------------------------
This function provides the ability to read everything following the block name (which is read by the NxsReader
object) to the END or ENDBLOCK statement. Characters are read from the input stream `in'. Overrides the virtual
function in the base class.
*/
void BASICCMDLINE::Read(
NxsToken & token) /* is the token used to read from `in' */
{
isEmpty = false;
// This should be the semicolon after the block name
token.GetNextToken();
if (!token.Equals(";"))
{
errormsg = "Expecting ';' after ";
errormsg += NCL_BLOCKTYPE_ATTR_NAME;
errormsg += " block name, but found ";
errormsg += token.GetToken();
errormsg += " instead";
throw NxsException(errormsg, token.GetFilePosition(), token.GetFileLine(), token.GetFileColumn());
}
for (;;)
{
token.GetNextToken();
if (token.Abbreviation("ENdblock"))
{
HandleEndblock(token);
break;
}
else if (token.Abbreviation("Help"))
{
HandleHelp(token);
}
else if (token.Abbreviation("Log"))
{
HandleLog(token);
}
else if (token.Abbreviation("EXecute"))
{
HandleExecute(token);
}
else if (token.Abbreviation("Show"))
{
HandleShow(token);
}
else if (token.Abbreviation("Quit"))
{
quit_now = true;
message = "\nBASICCMDLINE says goodbye\n";
PrintMessage();
break;
}
else
{
SkippingCommand(token.GetToken());
do
{
token.GetNextToken();
}
while (!token.AtEOF() && !token.Equals(";"));
if (token.AtEOF())
{
errormsg = "Unexpected end of file encountered";
throw NxsException(errormsg, token.GetFilePosition(), token.GetFileLine(), token.GetFileColumn());
}
}
}
}
/*----------------------------------------------------------------------------------------------------------------------
Overrides the NxsBlock virtual function. This function does nothing because the BASICCMDLINE block is simply a
private command block and does not store any data.
*/
void BASICCMDLINE::Reset()
{
NxsBlock::Reset();
}
/*----------------------------------------------------------------------------------------------------------------------
This function outputs a brief report of the contents of this BASICCMDLINE block. Overrides the virtual function
in the NxsBlock base class.
*/
void BASICCMDLINE::Report(
ostream & out) NCL_COULD_BE_CONST /* is the output stream to which to write the report */
{
message.clear();
PrintMessage();
out << message << '\n';
message = NCL_BLOCKTYPE_ATTR_NAME;
message += " block contains...";
PrintMessage();
out << message << '\n';
}
/*----------------------------------------------------------------------------------------------------------------------
Runs the command line interpreter, allowing BASICCMDLINE to interact with user. Typically, this is the only
function called in main after a BASICCMDLINE object is created. If `infile_name' is non-NULL, the first command
executed by the command interpreter will be "EXECUTE `infile_name'".
*/
void BASICCMDLINE::Run(
char * infile_name) /* is the name of the NEXUS data file to execute (can be NULL) */
{
taxa = new NxsTaxaBlock();
trees = new NxsTreesBlock(taxa);
assumptions = new NxsAssumptionsBlock(taxa);
characters = new NxsCharactersBlock(taxa, assumptions);
distances = new NxsDistancesBlock(taxa);
data = new NxsDataBlock(taxa, assumptions);
unaligned = new NxsUnalignedBlock(taxa);
Add(taxa);
Add(trees);
Add(assumptions);
Add(characters);
Add(distances);
Add(data);
Add(unaligned);
Add(this);
if (infile_name != NULL)
{
strcpy(next_command, "exe \'");
strncat(next_command, infile_name, 252);
strncat(next_command, "\'", 252);
PreprocessNextCommand();
HandleNextCommand();
}
quit_now = false;
while (!quit_now)
{
cerr << endl;
cerr << "BASICCMDLINE> ";
//cin.getline(next_command, COMMAND_MAXLEN);
unsigned i = 0;
for(;;)
{
int ch = cin.get();
if (i > COMMAND_MAXLEN)
{
cerr << endl;
cerr << "Error: the length of any one command cannot exceed ";
cerr << COMMAND_MAXLEN << " characters" << endl;
break;
}
else if (ch == 10 || ch == 13)
break;
next_command[i++] = (char)ch;
next_command[i] = '\0';
}
PreprocessNextCommand();
HandleNextCommand();
}
}
/*----------------------------------------------------------------------------------------------------------------------
Called when program does not recognize a block name encountered in a NEXUS file. Virtual function that overrides
the virtual function in the base class NxsReader.
*/
void BASICCMDLINE::SkippingBlock(
NxsString blockName) /* is the unrecognized block name */
{
message = "Skipping unknown block (";
message += blockName;
message += ")";
PrintMessage();
}
/*----------------------------------------------------------------------------------------------------------------------
This function is called when an unknown command named `commandName' is about to be skipped. This version of the
function (which is identical to the base class version) does nothing (i.e., no warning is issued that a command
was unrecognized). Modify this virtual function to provide such warnings to the user (or eliminate it altogether
since the base class version already does what this does).
*/
void BASICCMDLINE::SkippingCommand(
NxsString commandName) /* is the name of the command being skipped */
{
message = "Skipping unknown command (";
message += commandName;
message += ")";
PrintMessage();
}
/*----------------------------------------------------------------------------------------------------------------------
Called by the NxsReader object when skipping a block named blockName that has been disabled. Allows program to
notify user of progress in parsing the NEXUS file. Virtual function that overrides the virtual function in the
base class NxsReader.
*/
void BASICCMDLINE::SkippingDisabledBlock(
NxsString ) /* is the name of the block just exited */
{
}
/*----------------------------------------------------------------------------------------------------------------------
The code here is identical to the base class version (simply returns 0), so the code here should either be modified
or this derived version eliminated altogether. Under what circumstances would you need to modify the default code,
you ask? This function should be modified to something meaningful if this derived class needs to construct and run
a NxsSetReader object to read a set involving taxa. The NxsSetReader object may need to use this function to look
up a taxon label encountered in the set. A class that overrides this method should return the taxon index in the
range [1..ntax]; i.e., add one to the 0-offset index.
*/
unsigned BASICCMDLINE::TaxonLabelToNumber(
NxsString ) const /* is the taxon label to be translated to a taxon number */
{
return 0;
}
/*----------------------------------------------------------------------------------------------------------------------
Returns true if response is either "ok" or "yes", and returns false if response is either "no" or "cancel".
This is a general query function that can handle many situations. The possible responses are enumerated in
BASICCMDLINE::UserQueryEnum: uq_cancel, uq_ok, uq_yes, and uq_no. Not yet fully implemented: only handles uq_ok
alone or the (uq_yes | uq_no) combination.
*/
bool BASICCMDLINE::UserQuery(
NxsString mb_message, /* is the question posed to the user */
NxsString mb_title, /* is the title of the message box */
BASICCMDLINE::UserQueryEnum mb_choices) /* is the bit combination of uq_xx values indicating which buttons to show */
{
const bool yes_no = (mb_choices == (BASICCMDLINE::uq_yes | BASICCMDLINE::uq_no));
const bool ok_only = (mb_choices == BASICCMDLINE::uq_ok);
NCL_ASSERT(ok_only || yes_no); // Still working on other choices
if (ok_only)
{
cerr << endl;
cerr << mb_title << endl;
cerr << " " << mb_message;
cerr << " (press return to acknowledge) ";
cin.getline(next_command, COMMAND_MAXLEN);
return true;
}
cerr << endl;
cerr << mb_title << endl;
cerr << " " << mb_message;
cerr << " (y/n) ";
cin.getline(next_command, COMMAND_MAXLEN);
// This could be made much simpler by just checking first letter: if 'y' then
// assume yes, if 'n' assume no.
bool yep = (next_command[0] == 'y' && next_command[1] == '\0');
bool nope = (next_command[0] == 'n' && next_command[1] == '\0');
while (!yep && !nope)
{
cerr << endl;
cerr << "Must answer by typing either y or n and then pressing the Enter key" << endl;
cerr << endl;
cerr << mb_title << endl;
cerr << " " << mb_message;
cerr << " (y/n) ";
cin.getline(next_command, COMMAND_MAXLEN);
yep = (next_command[0] == 'y' && next_command[1] == '\0');
nope = (next_command[0] == 'n' && next_command[1] == '\0');
}
return yep;
}
int main(int argc, char *argv[])
{
char * infile_name = NULL;
if (argc > 2)
{
cerr << "Sorry, this program can accept at most one command" << endl;
cerr << "line argument, which must be the name of a NEXUS" << endl;
cerr << "data file." << endl;
cerr << endl;
exit(0);
}
else if (argc > 1)
{
infile_name = argv[1];
}
BASICCMDLINE basiccmdline;
basiccmdline.Run(infile_name);
return 0;
}
|