fpc/rtl/inc/getopts.pp
marco 499df41c28 --- Merging r40529 into '.':
U    rtl/objpas/sysutils/sysstr.inc
U    rtl/objpas/sysutils/sysstrh.inc
--- Recording mergeinfo for merge of r40529 into '.':
 U   .
--- Merging r40548 into '.':
U    rtl/unix/unix.pp
--- Recording mergeinfo for merge of r40548 into '.':
 G   .
--- Merging r40803 into '.':
U    utils/ptopu.pp
--- Recording mergeinfo for merge of r40803 into '.':
 G   .
--- Merging r40818 into '.':
U    packages/openssl/src/openssl.pas
--- Recording mergeinfo for merge of r40818 into '.':
 G   .
--- Merging r40838 into '.':
G    packages/openssl/src/openssl.pas
--- Recording mergeinfo for merge of r40838 into '.':
 G   .
--- Merging r40841 into '.':
U    packages/fcl-res/src/coffwriter.pp
--- Recording mergeinfo for merge of r40841 into '.':
 G   .
--- Merging r40908 into '.':
U    rtl/inc/getopts.pp
--- Recording mergeinfo for merge of r40908 into '.':
 G   .
--- Merging r41085 into '.':
U    rtl/objpas/sysutils/syswide.inc
U    rtl/objpas/sysutils/syswideh.inc
--- Recording mergeinfo for merge of r41085 into '.':
 G   .
--- Merging r41263 into '.':
U    packages/rtl-objpas/src/inc/strutils.pp
--- Recording mergeinfo for merge of r41263 into '.':
 G   .
--- Merging r41331 into '.':
U    rtl/objpas/classes/parser.inc
--- Recording mergeinfo for merge of r41331 into '.':
 G   .
--- Merging r41332 into '.':
U    packages/fcl-xml/src/xmlconf.pp
--- Recording mergeinfo for merge of r41332 into '.':
 G   .

# revisions: 40529,40548,40803,40818,40838,40841,40908,41085,41263,41331,41332
r40529 | michael | 2018-12-12 09:29:24 +0100 (Wed, 12 Dec 2018) | 1 line
Changed paths:
   M /trunk/rtl/objpas/sysutils/sysstr.inc
   M /trunk/rtl/objpas/sysutils/sysstrh.inc

Added overloads UintToStr for Delphi compatbibility (bug ID 0034690)
r40548 | michael | 2018-12-14 11:00:44 +0100 (Fri, 14 Dec 2018) | 1 line
Changed paths:
   M /trunk/rtl/unix/unix.pp

* Fix bug #0034499
r40803 | michael | 2019-01-08 04:55:32 +0100 (Tue, 08 Jan 2019) | 1 line
Changed paths:
   M /trunk/utils/ptopu.pp

* Applied patch by Bart Broersma to fix bug ID #34277
r40818 | michael | 2019-01-09 16:04:04 +0100 (Wed, 09 Jan 2019) | 1 line
Changed paths:
   M /trunk/packages/openssl/src/openssl.pas

* Add PEM_write_bio_PKCS7, bug ID  #0034842
r40838 | michael | 2019-01-10 23:11:33 +0100 (Thu, 10 Jan 2019) | 1 line
Changed paths:
   M /trunk/packages/openssl/src/openssl.pas

* Fix stack overflow
r40841 | michael | 2019-01-11 11:53:45 +0100 (Fri, 11 Jan 2019) | 1 line
Changed paths:
   M /trunk/packages/fcl-res/src/coffwriter.pp

* Call inherited constructor
r40908 | michael | 2019-01-19 17:35:30 +0100 (Sat, 19 Jan 2019) | 1 line
Changed paths:
   M /trunk/rtl/inc/getopts.pp

* Fix bug ID #19842 using patch from Bart Broersma
r41085 | marco | 2019-01-27 15:52:52 +0100 (Sun, 27 Jan 2019) | 2 lines
Changed paths:
   M /trunk/rtl/objpas/sysutils/syswide.inc
   M /trunk/rtl/objpas/sysutils/syswideh.inc

 * unicode version of isleadchar. utf8 still to follow, see #34754
r41263 | marco | 2019-02-09 13:31:15 +0100 (Sat, 09 Feb 2019) | 2 lines
Changed paths:
   M /trunk/packages/rtl-objpas/src/inc/strutils.pp

 * Patch from Serge Anvarov with missing strutils aliases. Mantis #35047
r41331 | michael | 2019-02-16 09:39:40 +0100 (Sat, 16 Feb 2019) | 1 line
Changed paths:
   M /trunk/rtl/objpas/classes/parser.inc

Fix bug ID #35086: TParser should reset position (tentative)
r41332 | michael | 2019-02-16 09:50:13 +0100 (Sat, 16 Feb 2019) | 1 line
Changed paths:
   M /trunk/packages/fcl-xml/src/xmlconf.pp

* Fix bug ID #34854

git-svn-id: branches/fixes_3_2@41923 -
2019-04-22 11:51:36 +00:00

506 lines
13 KiB
ObjectPascal

{
This file is part of the Free Pascal run time library.
Copyright (c) 1999-2000 by Michael Van Canneyt,
member of the Free Pascal development team.
Getopt implementation for Free Pascal, modeled after GNU getopt
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
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.
**********************************************************************}
unit getopts;
Interface
Const
No_Argument = 0;
Required_Argument = 1;
Optional_Argument = 2;
EndOfOptions = #255;
Type
POption = ^TOption;
TOption = Record
Name : String;
Has_arg : Integer;
Flag : PChar;
Value : Char;
end;
Orderings = (require_order,permute,return_in_order);
Const
OptSpecifier : set of char=['-'];
Var
OptArg : String;
OptInd : Longint;
OptErr : Boolean;
OptOpt : Char;
Function GetOpt (ShortOpts : String) : char;
Function GetLongOpts (ShortOpts : String;LongOpts : POption;var Longind : Longint) : char;
Implementation
{$IFNDEF FPC}
{***************************************************************************
Create an ArgV
***************************************************************************}
uses SysUtils;
type PtrInt = Integer;
type
ppchar = ^pchar;
apchar = array[0..127] of pchar;
var
argc : longint;
argv : apchar;
const
CHAR_SIZE = SizeOf(Char);
procedure setup_arguments;
var
arglen,
count : longint;
argstart,
cmdline : pchar;
quote : set of char;
argsbuf : array[0..127] of pchar;
s : string;
i : integer;
begin
{ create argv[0] which is the started filename }
s:=paramstr(0);
arglen:=length(s);
getmem(argsbuf[0], ( ( arglen + 1 ) * CHAR_SIZE ) );
strpcopy(argsbuf[0],s);
{ create commandline }
s:='';
for i:=1 to paramcount do
begin
if Pos(' ', paramstr(i)) > 0 then
s := s + '"' + paramstr(i) + '" '
else
s:=s+paramstr(i)+' ';
end;
s:=s+#0;
cmdline:=@s[1];
count:=1;
repeat
{ skip leading spaces }
while cmdline^ in [' ',#9,#13] do
inc(PtrInt(cmdline),CHAR_SIZE);
case cmdline^ of
#0 : break;
'"' : begin
quote:=['"'];
inc(PtrInt(cmdline),CHAR_SIZE);
end;
'''' : begin
quote:=[''''];
inc(PtrInt(cmdline),CHAR_SIZE);
end;
else
quote:=[' ',#9,#13];
end;
{ scan until the end of the argument }
argstart:=cmdline;
while (cmdline^<>#0) and not(cmdline^ in quote) do
inc(PtrInt(cmdline),CHAR_SIZE);
{ reserve some memory }
arglen:=cmdline-argstart;
getmem(argsbuf[count],(arglen+1) * CHAR_SIZE);
move(argstart^,argsbuf[count]^,arglen * CHAR_SIZE);
argsbuf[count][arglen]:=#0;
{ skip quote }
if cmdline^ in quote then
inc(PtrInt(cmdline),CHAR_SIZE);
inc(count);
until false;
{ create argc }
argc:=count;
{ create an nil entry }
argsbuf[count]:=nil;
inc(count);
{ create the argv }
move(argsbuf,argv,count shl 2);
end;
{$ENDIF}
{***************************************************************************
Real Getopts
***************************************************************************}
Var
NextChar,
Nrargs,
first_nonopt,
last_nonopt : Longint;
Ordering : Orderings;
Procedure Exchange;
var
bottom,
middle,
top,i,len : longint;
temp : pchar;
begin
bottom:=first_nonopt;
middle:=last_nonopt;
top:=optind;
while (top>middle) and (middle>bottom) do
begin
if (top-middle>middle-bottom) then
begin
len:=middle-bottom;
for i:=0 to len-1 do
begin
temp:=argv[bottom+i];
argv[bottom+i]:=argv[top-(middle-bottom)+i];
argv[top-(middle-bottom)+i]:=temp;
end;
top:=top-len;
end
else
begin
len:=top-middle;
for i:=0 to len-1 do
begin
temp:=argv[bottom+i];
argv[bottom+i]:=argv[middle+i];
argv[middle+i]:=temp;
end;
bottom:=bottom+len;
end;
end;
first_nonopt:=first_nonopt + optind-last_nonopt;
last_nonopt:=optind;
end; { exchange }
procedure getopt_init (var opts : string);
begin
{ Initialize some defaults. }
Optarg:='';
Optind:=1;
First_nonopt:=1;
Last_nonopt:=1;
OptOpt:='?';
Nextchar:=0;
case opts[1] of
'-' : begin
ordering:=return_in_order;
delete(opts,1,1);
end;
'+' : begin
ordering:=require_order;
delete(opts,1,1);
end;
else
ordering:=permute;
end;
end;
Function Internal_getopt (Var Optstring : string;LongOpts : POption;
LongInd : pointer;Long_only : boolean ) : char;
var
temp,endopt,
option_index : byte;
indfound : integer;
currentarg,
optname : string;
p,pfound : POption;
exact,ambig : boolean;
c : char;
begin
optarg:='';
if optind=0 then
getopt_init(optstring);
{ Check if We need the next argument. }
if (optind<nrargs) then
currentarg:=strpas(argv[optind])
else
currentarg:='';
if (nextchar=0) then
begin
if ordering=permute then
begin
{ If we processed options following non-options : exchange }
if (first_nonopt<>last_nonopt) and (last_nonopt<>optind) then
exchange
else
if last_nonopt<>optind then
first_nonopt:=optind;
while (optind<nrargs) and (not(argv[optind][0] in OptSpecifier) or
(length(strpas(argv[optind]))=1)) do
inc(optind);
last_nonopt:=optind;
end;
{ Check for '--' argument }
if optind<nrargs then
currentarg:=strpas(argv[optind])
else
currentarg:='';
if (optind<>nrargs) and (currentarg='--') then
begin
inc(optind);
if (first_nonopt<>last_nonopt) and (last_nonopt<>optind) then
exchange
else
if first_nonopt=last_nonopt then
first_nonopt:=optind;
last_nonopt:=nrargs;
optind:=nrargs;
end;
{ Are we at the end of all arguments ? }
if optind>=nrargs then
begin
if first_nonopt<>last_nonopt then
optind:=first_nonopt;
Internal_getopt:=EndOfOptions;
exit;
end;
if optind<nrargs then
currentarg:=strpas(argv[optind])
else
currentarg:='';
{ Are we at a non-option ? }
if not(currentarg[1] in OptSpecifier) or (length(currentarg)=1) then
begin
if ordering=require_order then
begin
Internal_getopt:=EndOfOptions;
exit;
end
else
begin
optarg:=strpas(argv[optind]);
inc(optind);
Internal_getopt:=#0;
exit;
end;
end;
{ At this point we're at an option ...}
nextchar:=2;
if (longopts<>nil) and ((currentarg[2]='-') and
(currentArg[1]='-')) then
inc(nextchar);
{ So, now nextchar points at the first character of an option }
end;
{ Check if we have a long option }
if longopts<>nil then
if length(currentarg)>1 then
if ((currentarg[2]='-') and (currentArg[1]='-'))
or
((not long_only) and (pos(currentarg[2],optstring)<>0)) then
begin
{ Get option name }
endopt:=pos('=',currentarg);
if endopt=0 then
endopt:=length(currentarg)+1;
optname:=copy(currentarg,nextchar,endopt-nextchar);
{ Match partial or full }
p:=longopts;
pfound:=nil;
exact:=false;
ambig:=false;
option_index:=0;
indfound:=0;
while (p^.name<>'') and (not exact) do
begin
if pos(optname,p^.name)<>0 then
begin
if length(optname)=length(p^.name) then
begin
exact:=true;
pfound:=p;
indfound:=option_index;
end
else
if pfound=nil then
begin
indfound:=option_index;
pfound:=p
end
else
ambig:=true;
end;
inc(PByte(p),sizeof(toption)); //inc(pointer(p),sizeof(toption)); // for Delphi compatibility
inc(option_index);
end;
if ambig and not exact then
begin
if opterr then
writeln(argv[0],': option "',optname,'" is ambiguous');
nextchar:=0;
inc(optind);
Internal_getopt:='?';
exit;
end;
if pfound<>nil then
begin
inc(optind);
if endopt<=length(currentarg) then
begin
if pfound^.has_arg>0 then
optarg:=copy(currentarg,endopt+1,length(currentarg)-endopt)
else
begin
if opterr then
if currentarg[2]='-' then
writeln(argv[0],': option "--',pfound^.name,'" doesn''t allow an argument')
else
writeln(argv[0],': option "',currentarg[1],pfound^.name,'" doesn''t allow an argument');
nextchar:=0;
internal_getopt:='?';
exit;
end;
end
else { argument in next paramstr... }
begin
if pfound^.has_arg=1 then
begin
if optind<nrargs then
begin
optarg:=strpas(argv[optind]);
inc(optind);
end { required argument }
else
begin { no req argument}
if opterr then
writeln(argv[0],': option ',pfound^.name,' requires an argument');
nextchar:=0;
if optstring[1]=':' then
Internal_getopt:=':'
else
Internal_getopt:='?';
exit;
end;
end;
end; { argument in next parameter end;}
nextchar:=0;
if longind<>nil then
plongint(longind)^:=indfound+1;
if pfound^.flag<>nil then
begin
pfound^.flag^:=pfound^.value;
internal_getopt:=#0;
exit;
end;
internal_getopt:=pfound^.value;
exit;
end; { pfound<>nil }
{ We didn't find it as an option }
if (not long_only) or
((currentarg[2]='-') or (pos(CurrentArg[nextchar],optstring)=0)) then
begin
if opterr then
if currentarg[2]='-' then
writeln(argv[0],' unrecognized option "--',optname,'"')
else
writeln(argv[0],' unrecognized option "',currentarg[1],optname,'"');
nextchar:=0;
inc(optind);
Internal_getopt:='?';
exit;
end;
end; { Of long options.}
{ We check for a short option. }
temp:=pos(currentarg[nextchar],optstring);
c:=currentarg[nextchar];
inc(nextchar);
if nextchar>length(currentarg) then
begin
inc(optind);
nextchar:=0;
end;
if (temp=0) or (c=':') then
begin
if opterr then
writeln(argv[0],': illegal option -- ',c);
optopt:=c;
internal_getopt:='?';
exit;
end;
Internal_getopt:=optstring[temp];
if optstring[temp+1]=':' then
if optstring[temp+2]=':' then
begin { optional argument }
if nextchar>0 then
begin
optarg:=copy (currentarg,nextchar,length(currentarg)-nextchar+1);
inc(optind);
nextchar:=0;
end else if (optind<>nrargs) then
begin
optarg:=strpas(argv[optind]);
if optarg[1]='-' then
optarg:=''
else
inc(optind);
nextchar:=0;
end;
end
else
begin { required argument }
if nextchar>0 then
begin
optarg:=copy (currentarg,nextchar,length(currentarg)-nextchar+1);
inc(optind);
end
else
if (optind=nrargs) then
begin
if opterr then
writeln (argv[0],': option requires an argument -- ',optstring[temp]);
optopt:=optstring[temp];
if optstring[1]=':' then
Internal_getopt:=':'
else
Internal_Getopt:='?';
end
else
begin
optarg:=strpas(argv[optind]);
inc(optind)
end;
nextchar:=0;
end; { End of required argument}
end; { End of internal getopt...}
Function GetOpt(ShortOpts : String) : char;
begin
getopt:=internal_getopt(shortopts,nil,nil,false);
end;
Function GetLongOpts(ShortOpts : String;LongOpts : POption;var Longind : Longint) : char;
begin
getlongopts:=internal_getopt(shortopts,longopts,@longind,true);
end;
initialization
{ create argv if not running under FPC }
{$ifndef FPC}
setup_arguments;
{$endif}
{ Needed to detect startup }
Opterr:=true;
Optind:=0;
nrargs:=argc;
end.