Changeset 3451
- Timestamp:
- Feb 10, 2019, 11:57:06 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/alt_1.e ¶
r3448 r3451 143 143 compile endif 144 144 -- Edit filename on current text line 145 getline line146 orig_line = line145 getline LineStr 146 OrgLineStr = LineStr 147 147 SearchPath = '%INCLUDE%;%PATH%' -- default search path 148 148 CurMode = GetMode() … … 152 152 153 153 -------------------------------------------------------------------------- shell or .DOS DIR 154 call p save_pos( save_pos)154 call pSave_Pos( savepos) 155 155 getsearch oldsearch 156 156 Cmd = '' … … 169 169 SearchPath = ShellDir';%PATH%' 170 170 setsearch oldsearch 171 call p restore_pos( save_pos)171 call pRestore_Pos( savepos) 172 172 elseif upcase( leftstr( .filename, 8)) = '.DOS DIR' then -- if a .DOS DIR buffer, 173 173 parse value upcase( .filename) with '.DOS DIR' Params -- retrieve params from the title … … 176 176 endif 177 177 178 if upcase( cmd) = 'DIR' then -- if "dir" executed as last cmd in .command_shell_ or if .DOS DIR178 if upcase( cmd) = 'DIR' then -- if "dir" executed as last cmd in .command_shell_ or if .DOS DIR 179 179 Flags = '' 180 180 Mask = '' … … 184 184 185 185 if pos( 'B', Flags) then -- if DIR /B, lines are filenames only and there is no "Directory of" line 186 Name = line186 Name = LineStr 187 187 wildcardpos = verify( Mask, '*?', 'M') 188 188 if wildcardpos then -- if a wildcard is used … … 248 248 enddo 249 249 setsearch oldsearch 250 call p restore_pos(save_pos)250 call pRestore_Pos( savepos) 251 251 252 252 --sayerror 'drive = 'drive', prevdir = 'prevdir', cddir = 'cddir', dirname = 'dirname … … 292 292 elseif pos( 'F', flags) then -- if DIR /F, then the line is the fully-qualified filename 293 293 -- Note: DIR /F /B is resolved to DIR /B. 294 FullName = line294 FullName = LineStr 295 295 296 296 else -- if not DIR /F or DIR /B, then parse the dir listing … … 298 298 299 299 -- Check if word under cursor is fully qualified 300 p1 = pos( ':\', line)301 p2 = pos( '\\', line)300 p1 = pos( ':\', LineStr) 301 p2 = pos( '\\', LineStr) 302 302 if p1 > 0 then 303 FullName = strip( substr( line, p1 - 1))303 FullName = strip( substr( LineStr, p1 - 1)) 304 304 elseif p2 > 0 then 305 FullName = strip( substr( line, p2))305 FullName = strip( substr( LineStr, p2)) 306 306 endif 307 307 308 308 if FullName = '' then 309 if verify( word( line, 1), DIR_DATETIME_CHARS) = 0 & -- date310 Alt1VerifyTime( word( line, 2), DIR_DATETIME_CHARS) then -- time309 if verify( word( LineStr, 1), DIR_DATETIME_CHARS) = 0 & -- date 310 Alt1VerifyTime( word( LineStr, 2), DIR_DATETIME_CHARS) then -- time 311 311 -- probably a dir listing, not FAT 312 NameIsDir = (word( line, 3) = '<DIR>')313 if verify( word( line, 3), DIR_SIZE_CHARS) = 0 | -- size312 NameIsDir = (word( LineStr, 3) = '<DIR>') 313 if verify( word( LineStr, 3), DIR_SIZE_CHARS) = 0 | -- size 314 314 NameIsDir then 315 if verify( word( line, 4), DIR_SIZE_CHARS) = 0 then -- EAsize316 if verify( word( line, 5), DIR_ATTRIB_CHARS) = 0 & -- attribs if /v specified317 length( word( line, 5)) = 4 &318 word( line, 6) <> '' then319 Name = subword( line, 6)315 if verify( word( LineStr, 4), DIR_SIZE_CHARS) = 0 then -- EAsize 316 if verify( word( LineStr, 5), DIR_ATTRIB_CHARS) = 0 & -- attribs if /v specified 317 length( word( LineStr, 5)) = 4 & 318 word( LineStr, 6) <> '' then 319 Name = subword( LineStr, 6) 320 320 else 321 Name = subword( line, 5)321 Name = subword( LineStr, 5) 322 322 endif 323 323 else … … 327 327 --sayerror 'non-FAT size is invalid' 328 328 endif 329 elseif verify( word( line, words(line) - 1), DIR_DATETIME_CHARS) = 0 & -- date330 Alt1VerifyTime( word( line, words(line)), DIR_DATETIME_CHARS) then -- time329 elseif verify( word( LineStr, words( LineStr) - 1), DIR_DATETIME_CHARS) = 0 & -- date 330 Alt1VerifyTime( word( LineStr, words( LineStr)), DIR_DATETIME_CHARS) then -- time 331 331 -- probably a dir listing, FAT 332 332 --sayerror 'passed FAT code date/time verify' 333 NameIsDir = (word( line, words(line) - 2) = '<DIR>')334 if verify( word( line, words(line) - 2), DIR_SIZE_CHARS) = 0 | -- size333 NameIsDir = (word( LineStr, words( LineStr) - 2) = '<DIR>') 334 if verify( word( LineStr, words( LineStr) - 2), DIR_SIZE_CHARS) = 0 | -- size 335 335 NameIsDir then 336 p = wordindex( line, words(line) - 2) -- col of 3rdlast word337 Name = strip( substr( line, 1, p - 1))336 p = wordindex( LineStr, words( LineStr) - 2) -- col of 3rdlast word 337 Name = strip( substr( LineStr, 1, p - 1)) 338 338 HasExtCol = ((substr( Name, 9, 1) = ' ') & (pos( Name, '.') = 0)) -- listing with separated extension column 339 339 if HasExtCol then … … 399 399 endif 400 400 attrib = '' 401 -- qfilemode: Check if file or dir exists and query attribs402 if ( qfilemode( FullName, attrib) = 0) & (FullName > '') then401 -- QFileMode: Check if file or dir exists and query attribs 402 if (QFileMode( FullName, attrib) = 0) & (FullName > '') then 403 403 if verify( FullName, ' =', 'M') then -- enquote 404 404 FullName = '"'FullName'"' … … 418 418 -------------------------------------------------------------------------- .tree 419 419 if upcase( leftstr( .filename, 5)) = '.TREE' then 420 if substr( line, 5, 1)''substr( line, 8, 1)''substr( line, 15, 1) ||421 substr( line, 18, 1) = '--::' then422 name = substr( line, 52)423 if substr( line, 31, 1) = '>' then420 if substr( LineStr, 5, 1)''substr( LineStr, 8, 1)''substr( LineStr, 15, 1) || 421 substr( LineStr, 18, 1) = '--::' then 422 name = substr( LineStr, 52) 423 if substr( LineStr, 31, 1) = '>' then 424 424 if isadefc( 'tree_dir') then 425 'tree_dir "'name'\* .*"'425 'tree_dir "'name'\*"' 426 426 else 427 427 'dir' name … … 448 448 parse value .filename with file ext . 449 449 if ext = 'OUTPUT' & file = substr( 'LISTFILE', 1, length( file)) then 450 parse value linewith fn ft fm .450 parse value LineStr with fn ft fm . 451 451 parse value .userstring with '[lt:'lt']' 452 452 if lt = '' then … … 461 461 -- LaMail index support 462 462 if upcase( rightstr( .filename, 4)) = '.NDX' then 463 parse value orig_linewith 28 fn ft . 84 ext464 if pos( \1, ext) then463 parse value OrgLineStr with 28 fn ft . 84 ext 464 if pos( \1, ext) then 465 465 'e' substr( .filename, 1, length( .filename) - 4)'\'fn'.'ft 466 466 return … … 472 472 -- should work with any preprocesor, filetype, past to future 473 473 -- set 'ESEARCH' to search other directories 474 parse value lowcase( line) with word1 word2 .474 parse value lowcase( LineStr) with word1 word2 . 475 475 if rightstr( word1, 7) = 'include' then -- if first word ends in "include" 476 476 delim = leftstr( word2, 1) 477 477 fTryCurFirst = 1 478 478 if pos( delim, "'" || '"') > 0 then -- file has quote delimiters? 479 parse value linewith . (delim) filename (delim) .479 parse value LineStr with . (delim) filename (delim) . 480 480 elseif delim = '<' then 481 parse value linewith . '<' filename '>' .481 parse value LineStr with . '<' filename '>' . 482 482 if CurMode = 'C' then 483 483 fTryCurFirst = 0 484 ; if lowcase( ' ' || rightstr(filename, 2)) <> '.h' then JBSQ: Support new C++ includes w/o '.h'?484 ; if lowcase( ' ' || rightstr( filename, 2)) <> '.h' then JBSQ: Support new C++ includes w/o '.h'? 485 485 ; filename = filename || '.h' 486 486 ; endif … … 504 504 ext = substr( upcase( .filename), lastpos( '.', upcase( .filename)) + 1) 505 505 if ext = 'USE' or ext = 'XRF' then 506 if substr( line, 1, 1) = ' ' then -- child line507 parse value linewith . infunc linenum file506 if substr( LineStr, 1, 1) = ' ' then -- child line 507 parse value LineStr with . infunc linenum file 508 508 for i = .line - 1 to 1 by -1 -- search upward for parent line 509 getline line, i510 if substr( line, 1, 1) <> ' ' then511 parse value linewith func .509 getline LineStr, i 510 if substr( LineStr, 1, 1) <> ' ' then 511 parse value LineStr with func . 512 512 leave 513 513 endif … … 525 525 sayerror 'Found 'func' in 'infunc' in 'file'.' 526 526 else -- parent line 527 parse value linewith func linenum file527 parse value LineStr with func linenum file 528 528 if linenum = '#' then -- might have a '#' in 2nd column 529 529 parse value file with linenum file … … 552 552 parse value .filename with filename filetyp fmode . -- Not as crude, TJR 553 553 if ('INDEX' = filetyp & 'PROCS' = rightstr( filename, 5)) then 554 if vmfile( fn, ft) then555 parse value linewith proc fn ft uid node date .554 if VmFile( fn, ft) then 555 parse value LineStr with proc fn ft uid node date . 556 556 if ('PROCS' <> ft) then -- Is the current line an entry? 557 getline line, .line - 1-- Go back one line and try again.558 parse value linewith proc fn ft uid node date .557 getline LineStr, .line - 1 -- Go back one line and try again. 558 parse value LineStr with proc fn ft uid node date . 559 559 if ('PROCS' <> ft) then -- One more time. . . . 560 560 sayerror 'Sorry, cursor is not at a PROCS index entry. No file loaded.' … … 583 583 return 584 584 else 585 getline line586 if (uid = substr( line, lastpos( 'by ', line) + 3,587 length( uid))) then585 getline LineStr 586 if (uid = substr( LineStr, lastpos( 'by ', LineStr) + 3, 587 length( uid))) then 588 588 sayerror proc' macro added by 'uid' on 'date'.' 589 589 beginline -- Move to beginning. … … 606 606 lp = lastpos( '\', word( .filename, 1)) 607 607 if substr( .filename, lp + 1, 17) = '.Output from grep' then 608 parse value textline( 1) with 'SEARCH:'next608 parse value textline( 1) with 'SEARCH:'next 609 609 if next > '' then 610 610 fGnuGrep = 0 … … 618 618 if fGnuGrep = 1 then 619 619 -- New: get current dir from line 1 to handle relative paths. 620 parse value textline( 2) with 'Current directory = 'CurDir621 622 if substr( line, 1, 2) = '\\' | substr( line, 2, 2) = ':\' then -- fully qualified623 parse value substr( line, 3) with next':'LineNumber':'rest624 FileName = substr( line, 1, 2 + length(next))620 parse value textline( 2) with 'Current directory = 'CurDir 621 622 if substr( LineStr, 1, 2) = '\\' | substr( LineStr, 2, 2) = ':\' then -- fully qualified 623 parse value substr( LineStr, 3) with next':'LineNumber':'rest 624 FileName = substr( LineStr, 1, 2 + length( next)) 625 625 FileName = translate( FileName, '\', '/') 626 626 else 627 parse value linewith FileMask':'LineNumber':'rest627 parse value LineStr with FileMask':'LineNumber':'rest 628 628 if LineNumber then 629 629 FileMask = translate( FileMask, '\', '/') … … 651 651 fGnuGrep = 0 then -- LAM's GREP 652 652 getsearch oldsearch 653 call p save_pos( save_pos)653 call pSave_Pos( savepos) 654 654 'xcom l . File #. -' -- Find previous file 655 655 setsearch oldsearch … … 659 659 else 660 660 getline newline 661 call p restore_pos( save_pos)661 call pRestore_Pos( savepos) 662 662 parse value newline with "==> " filename " <==" 663 663 call A1Load( filename, SearchPath, 1) 664 664 ;;compile if 1 -- LAM: I use /L 665 665 ; Now supports both; if line starts with a number, assume /L; if not, do search. 666 parse value orig_linewith num ')'667 if pos( '(', num) & not pos(' ', num) then666 parse value OrgLineStr with num ')' 667 if pos( '(', num) & not pos( ' ', num) then 668 668 parse value num with . '(' num 669 669 endif 670 670 parse value num with num ':' col 671 if IsNum( num) then671 if IsNum( num) then 672 672 y = num 673 673 x = 1 674 674 .cursory = .windowheight%2 675 if IsNum( col) then675 if IsNum( col) then 676 676 x = col 677 677 endif 678 ' postme goto' y x678 'PostMe GoTo' y x 679 679 return 680 680 endif 681 681 ;;compile else -- TJR doesn't 682 parse value orig_linewith "==>" tempstr682 parse value OrgLineStr with "==>" tempstr 683 683 if tempstr = '' then 684 684 -- Let it be hilighted by the built-in stuff... 685 ' postme xcom l '\158''orig_line\158'eaf+' /* ALT-158 is the search delim */685 'PostMe xcom l '\158''OrgLineStr\158'eaf+' -- ALT-158 is the search delim 686 686 if rc then 687 sayerror substr( line, 1, 60)'. . . Not Found.'687 sayerror substr( LineStr, 1, 60)'. . . Not Found.' 688 688 endif 689 689 endif … … 696 696 ---------------------------------------------------------------------------- .Output from gsee 697 697 if substr( .filename, 1, 17) = '.Output from gsee' then -- LAM's GSEE 698 parse value linewith name '.' ext 13 52 path699 if substr( line, 9, 1) = '.' & substr( line, 53, 1) = ':' then698 parse value LineStr with name '.' ext 13 52 path 699 if substr( LineStr, 9, 1) = '.' & substr( LineStr, 53, 1) = ':' then 700 700 if length( path) > 3 then 701 701 path = path'\' 702 702 endif 703 call A1Load( path''strip( name)'.'ext, SearchPath, 0)703 call A1Load( path''strip( name)'.'ext, SearchPath, 0) 704 704 return 705 705 endif … … 711 711 linenum = '' 712 712 col = '' 713 p = pos( '(', line)713 p = pos( '(', LineStr) 714 714 if p > 0 then 715 parse value linewith next '(' num ')' .715 parse value LineStr with next '(' num ')' . 716 716 if verify( num, '0123456789:') = 0 then -- if number or colon 717 p2 = pos( strip( strip( next), 'b', \9), line)717 p2 = pos( strip( strip( next), 'b', \9), LineStr) 718 718 if p2 > 0 then 719 719 .col = p2 720 720 endif 721 line= next721 LineStr = next 722 722 linenum = num 723 723 parse value linenum with linenum ':' col -- LAM: CSet/2 includes column … … 732 732 SeparatorList = '"'||"'"||'(){}[]<>,;|+ '\9'#' 733 733 734 -- call find_token( StartCol, EndCol, SeparatorList, '')734 -- call Find_Token( StartCol, EndCol, SeparatorList, '') 735 735 -- fWordFound = (StartCol <> 0 & EndCol >= StartCol) 736 736 -- Checking the return code is better in the case the cursor is 737 737 -- on a 'diad'. JBS 738 rcx = find_token( StartCol, EndCol, SeparatorList, '')738 rcx = Find_Token( StartCol, EndCol, SeparatorList, '') 739 739 fWordFound = (rcx == 1) 740 740 741 741 if fWordFound then -- if word found 742 Spec = substr( line, StartCol, EndCol - StartCol + 1)742 Spec = substr( LineStr, StartCol, EndCol - StartCol + 1) 743 743 -- strip trailing periods 744 744 -- This has been moved ahead of where it was in order to handle … … 815 815 -- Found by the last procs? 816 816 if NepmdFileExists( Spec) then 817 ' edit "'Spec'"'817 'Edit "'Spec'"' 818 818 elseif NepmdDirExists( Spec) then 819 819 --'dir "'Spec'"' … … 826 826 else 827 827 if linenum > '' & col > '' then 828 ' postme goto' linenum col828 'PostMe GoTo' linenum col 829 829 elseif linenum > '' then 830 ' postme goto' linenum830 'PostMe GoTo' linenum 831 831 endif 832 832 endif … … 889 889 890 890 getfileid curfid 891 ' tree 'strip( Dir, 't', '\')'\'SpecName891 'Tree 'strip( Dir, 't', '\')'\'SpecName 892 892 getfileid treefid 893 893 if treefid <> curfid then … … 906 906 Title = 'Find file "'SpecName'" in tree' 907 907 Text = 'Start in directory:' 908 Text = Text''copies( ' ', Max( 100 - length( Text), 0))908 Text = Text''copies( ' ', Max( 100 - length( Text), 0)) 909 909 parse value EntryBox( Title, 910 910 '/~OK/Change to ~work dir/Cancel', … … 912 912 0, 913 913 240, 914 atoi( 1) || atoi(0) || atol(0) ||914 atoi( 1) || atoi( 0) || atol( 0) || 915 915 Text) with button 2 Dir \0 916 916 Dir = strip( Dir) … … 944 944 945 945 if WildcardPos then 946 if YES_CHAR <> AskYesNo( WILDCARD_WARNING__MSG, '', filename) then946 if YES_CHAR <> AskYesNo( WILDCARD_WARNING__MSG, '', FileName) then 947 947 return 948 948 endif 949 'edit "'FileName'"' 949 FileName = GetRealCase( FileName) 950 'Edit "'FileName'"' 950 951 951 952 else 952 call parse_filename( FileName)953 call Parse_FileName( FileName) 953 954 954 955 -- Every check for existing names returns always 0 for wildcards in name. … … 994 995 -- LoadName must exist 995 996 FullName = NepmdQueryFullname( LoadName) 996 --dprintf( 'A1Load: FullName = 'FullName', LoadName = 'LoadName) 997 'edit "'FullName'"' 997 'Edit "'FullName'"' 998 998 endif 999 999 endif
Note:
See TracChangeset
for help on using the changeset viewer.