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
|
{
Copyright 1998-2018 PasDoc developers.
This file is part of "PasDoc".
"PasDoc" 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.
"PasDoc" 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 "PasDoc"; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
----------------------------------------------------------------------------
}
{ @author(Johannes Berg <johannes@sipsolutions.de>)
@author(Michalis Kamburelis)
@author(Arno Garrels <first name.name@nospamgmx.de>)
@abstract(Basic types.) }
unit PasDoc_Types;
{$I pasdoc_defines.inc}
interface
uses
SysUtils, StrUtils, Types;
type
{$IFNDEF COMPILER_11_UP}
TBytes = array of Byte;
{$ENDIF}
{$IFNDEF COMPILER_12_UP}
UnicodeString = WideString;
RawByteString = AnsiString;
{$ENDIF}
{$IFNDEF PASDOC} // avoid PasDoc from trying to evaluate "NOT DECLARED"
{$IF NOT DECLARED(TStringDynArray)}
TStringDynArray = array of string;
{$ENDIF}
{$ENDIF}
TStringArray = TStringDynArray;
{ This represents parts of a qualified name of some item.
User supplies such name by separating each part with dot,
e.g. 'UnitName.ClassName.ProcedureName', then @link(SplitNameParts)
converts it to TNameParts like
['UnitName', 'ClassName', 'ProcedureName'].
Length must be @italic(always) between 1 and @link(MaxNameParts). }
TNameParts = TStringArray;
{ }
TPasDocMessageType = (pmtPlainText, pmtInformation, pmtWarning, pmtError);
{ }
TPasDocMessageEvent = procedure(const MessageType: TPasDocMessageType; const
AMessage: string; const AVerbosity: Cardinal) of object;
TCharSet = set of AnsiChar;
{ }
EPasDoc = class(Exception)
public
constructor Create(const AMessage: string;
const AArguments: array of const; const AExitCode: Word = 3);
end;
const
MaxNameParts = 3;
{ Windows Unicode code page ID }
CP_UTF16 = 1200;
CP_UTF16Be = 1201;
CP_UTF32 = 12000;
CP_UTF32Be = 12001;
{$IFNDEF FPC}
{$IFDEF MSWINDOWS}
LineEnding = #13#10;
{$ENDIF}
{$ENDIF}
{ Splits S, which can be made of any number of parts, separated by dots
(Delphi namespaces, like PasDoc.Output.HTML.TWriter.Write).
If S is not a valid identifier, @false is returned, otherwise @true is returned
and splitted name is returned as NameParts. }
function SplitNameParts(S: string; out NameParts: TNameParts): Boolean;
{ Simply returns an array with Length = 1 and one item = S. }
function OneNamePart(const S: string): TNameParts;
{ Simply concatenates all NameParts with dot. }
function GlueNameParts(const NameParts: TNameParts): string;
type
{ See command-line option @--implicit-visibility documentation at
[https://github.com/pasdoc/pasdoc/wiki/ImplicitVisibilityOption] }
TImplicitVisibility = (ivPublic, ivPublished, ivImplicit);
implementation
{ EPasDoc -------------------------------------------------------------------- }
constructor EPasDoc.Create(const AMessage: string; const AArguments: array of
const; const AExitCode: Word);
begin
ExitCode := AExitCode;
CreateFmt(AMessage, AArguments);
end;
{ global routines ------------------------------------------------------------ }
{$IF NOT DECLARED(SplitString)}
// Primitive implementation for ancient compilers, uses only 1st char of Delimiters
function SplitString(const S, Delimiters: string): TStringArray;
var
DelimCount, PrevDelimPos, DelimPos, i: Integer;
begin
// Count delims in name and set length of array
DelimCount := 0;
i := 0;
repeat
i := PosEx(Delimiters[1], s, i + 1);
if i > 0 then
Inc(DelimCount);
until i = 0;
SetLength(Result, DelimCount + 1);
// no delims - simple case
if DelimCount = 0 then
begin
Result[0] := s;
Exit;
end;
PrevDelimPos := 1;
for i := 0 to High(Result) do
begin
DelimPos := PosEx(Delimiters[1], s, PrevDelimPos);
if DelimPos = 0 then // last delim in the string
begin
Result[i] := Copy(s, PrevDelimPos, MaxInt);
Break;
end;
Result[i] := Copy(s, PrevDelimPos, DelimPos - PrevDelimPos);
PrevDelimPos := DelimPos + 1;
end;
end;
{$ENDIF}
function SplitNameParts(S: string;
out NameParts: TNameParts): Boolean;
const
{ set of characters, including all letters and the underscore }
IdentifierStart : TCharSet = ['A'..'Z', 'a'..'z', '_'];
{ set of characters, including all characters from @link(IdentifierStart)
plus the ten decimal digits }
IdentifierOther : TCharSet = ['A'..'Z', 'a'..'z', '_', '0'..'9', '.'];
var
i: Integer;
begin
Result := False;
SetLength(NameParts, 3);
S := Trim(S);
{ Check that S starts with IdentifierStart and
then only IdentifierOther chars follow }
if S = '' then Exit;
{$IFNDEF COMPILER_12_UP}
if (not (s[1] in IdentifierStart)) then Exit;
{$ELSE}
if not CharInSet(s[1], IdentifierStart) then Exit;
{$ENDIF}
i := 2;
while (i <= Length(s)) do begin
{$IFNDEF COMPILER_12_UP}
if (not (s[i] in IdentifierOther)) then Exit;
{$ELSE}
if not CharInSet(s[i], IdentifierOther) then Exit;
{$ENDIF}
Inc(i);
end;
NameParts := SplitString(s, '.');
Result := True;
end;
function OneNamePart(const S: string): TNameParts;
begin
Initialize(Result);
SetLength(Result, 1);
Result[0] := S;
end;
function GlueNameParts(const NameParts: TNameParts): string;
var
i: Integer;
begin
Result := NameParts[0];
for i := 1 to Length(NameParts) - 1 do
Result := Result + '.' + NameParts[i];
end;
end.
|