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
|
{
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
----------------------------------------------------------------------------
}
{ @abstract(SimpleXML output generator.) }
unit PasDoc_GenSimpleXML;
{$I pasdoc_defines.inc}
interface
uses
PasDoc_Utils,
PasDoc_Gen,
PasDoc_Items,
PasDoc_Languages,
PasDoc_StringVector,
PasDoc_Types,
Classes,
PasDoc_StringPairVector;
type
TSimpleXMLDocGenerator = class(TDocGenerator)
protected
function CodeString(const s: string): string; override;
function ConvertString(const s: string): string; override;
function ConvertChar(c: char): string; override;
procedure WriteUnit(const HL: integer; const U: TPasUnit); override;
procedure WriteExternalCore(const ExternalItem: TExternalItem;
const Id: TTranslationID); override;
function FormatSection(HL: integer; const Anchor: string;
const Caption: string): string; override;
function FormatAnchor(const Anchor: string): string; override;
function FormatTable(Table: TTableData): string; override;
function FormatList(ListData: TListData): string; override;
function FormatBold(const Text: string): string; override;
function FormatItalic(const Text: string): string; override;
private
space:string;
{ Returns XML <description> element with Item's AbstractDescription
and DetailedDescription.
Returns '' if Item doesn't have any description. }
function ItemDescription(Item: TPasItem): string;
procedure writefunction(const item:TPasItem);
procedure writeconstant(const item:TPasItem);
procedure writevariable(const item:TPasItem);
procedure writetypes(const item:TPasItem);
procedure writeclass(const item:TPasCIO);
procedure writeproperty(const item:TPasItem);
public
procedure WriteDocumentation; override;
function GetFileExtension: string; override;
end;
implementation
uses
PasDoc_ObjectVector, SysUtils;
function TSimpleXMLDocGenerator.GetFileExtension:string;
begin
Result := '.xml';
end;
procedure TSimpleXMLDocGenerator.WriteDocumentation;
begin
StartSpellChecking('sgml');
inherited;
WriteUnits(1);
WriteIntroduction;
WriteAdditionalFiles;
WriteConclusion;
EndSpellChecking;
end;
function TSimpleXMLDocGenerator.CodeString(const s: string): string;
begin
Result := '<code>' + S + '</code>';
end;
function TSimpleXMLDocGenerator.ConvertString(const S: String): String;
const
ReplacementArray: array[0..3] of TCharReplacement = (
(cChar: '<'; sSpec: '<'),
(cChar: '>'; sSpec: '>'),
(cChar: '&'; sSpec: '&'),
(cChar: '"'; sSpec: '"')
);
begin
Result := StringReplaceChars(S, ReplacementArray);
end;
function TSimpleXMLDocGenerator.ConvertChar(c: char): String;
begin
ConvertChar := ConvertString(c);
end;
function TSimpleXMLDocGenerator.ItemDescription(Item: TPasItem): string;
begin
if Item.HasDescription then
begin
{ Abstract and Detailed descriptions are somewhat siblings,
for most normal uses you want to glue them together.
That's why I (Michalis) decided it's most sensible to put them
as sibling XML elements, not make <abstract> child of <detailed>
of something like this. }
Result := '<description>';
if Item.AbstractDescription <> '' then
Result := Result + '<abstract>' + Item.AbstractDescription + '</abstract>';
if Item.DetailedDescription <> '' then
Result := Result + '<detailed>' + Item.DetailedDescription + '</detailed>';
Result := Result + '</description>';
end else
Result := '';
end;
procedure TSimpleXMLDocGenerator.writefunction(const item:TPasItem);
var
I: Integer;
meth: TPasMethod absolute item;
begin
if item is TPasMethod then
begin
WriteDirectLine(space +
'<function name="' + ConvertString(item.name) +
'" type="' + ConvertString(MethodTypeToString(TPasMethod(item).What)) +
'" declaration="' + ConvertString(item.FullDeclaration) + '">');
for I := 0 to meth.params.count - 1 do
WriteDirectLine(space +
' <param name="' + ConvertString(meth.params[i].name) + '">' +
meth.params[i].value +'</param>');
if meth.returns <> '' then
WriteDirectLine(space +
' <result>' + meth.returns + '</result>');
if item.HasDescription then
WriteDirectLine(space + ' ' + ItemDescription(Item));
WriteDirectLine(space + '</function>');
end;
end;
procedure TSimpleXMLDocGenerator.writeproperty(const item:TPasItem);
var
prop: TPasProperty absolute item;
begin
Assert(item is TPasProperty);
WriteDirectLine(space +
'<property name="' + ConvertString(item.name) +
'" indexdecl="' + ConvertString(prop.indexDecl) +
'" type="' + ConvertString(prop.Proptype) +
'" reader="' + ConvertString(prop.reader) +
'" writer="' + ConvertString(prop.writer) +
'" default="' + ConvertString(booltostr(prop.default)) +
'" defaultid="' + ConvertString(prop.defaultid) +
'" nodefault="' + ConvertString(booltostr(prop.nodefault)) +
'" storedid="' + ConvertString(prop.storedid) +'">');
if item.HasDescription then
WriteDirectLine(space + ' ' + ItemDescription(Item));
WriteDirectLine(space+'</property>');
end;
procedure TSimpleXMLDocGenerator.writeconstant(const item:TPasItem);
begin
WriteDirectLine(space +
'<constant name="' + ConvertString(item.FullDeclaration) + '">');
if item.HasDescription then
WriteDirectLine(space + ' ' + ItemDescription(Item));
WriteDirectLine(space+'</constant>');
end;
procedure TSimpleXMLDocGenerator.writevariable(const item:TPasItem);
begin
WriteDirectLine(space +
'<variable name="' + ConvertString(item.FullDeclaration) + '">');
if item.HasDescription then
WriteDirectLine(space + ' ' + ItemDescription(Item));
WriteDirectLine(space+'</variable>');
end;
procedure TSimpleXMLDocGenerator.writetypes(const item:TPasItem);
begin
WriteDirectLine(space +
'<type name="' + ConvertString(item.FullDeclaration) + '">');
if item.HasDescription then
WriteDirectLine(space + ' ' + ItemDescription(Item));
WriteDirectLine(space+'</type>');
end;
procedure TSimpleXMLDocGenerator.writeclass(const item:TPasCIO);
function writetype(t:TCIOType):string;
begin
result:='unknown';
case t of
CIO_CLASS:result:='class';
CIO_PACKEDCLASS:result:='packed class';
CIO_DISPINTERFACE:result:='dispinterface';
CIO_INTERFACE:result:='interface';
CIO_OBJECT:result:='object';
CIO_PACKEDOBJECT:result:='packed object';
CIO_RECORD:result:='record';
CIO_PACKEDRECORD:result:='packed record';
end;
end;
var
i: Integer;
begin
WriteDirectLine(space +
'<structure name="' + ConvertString(item.name) +
'" name_with_generic="' + ConvertString(item.NameWithGeneric) +
'" type="' + ConvertString(writetype(item.MyType)) + '">');
space:=space+' ';
if item.HasDescription then
WriteDirectLine(space + ItemDescription(Item));
for i:=0 to item.ancestors.count-1 do
WriteDirectLine(space +
'<ancestor name="' + ConvertString(item.ancestors[i].Name) +
'" declaration="' + ConvertString(item.ancestors[i].Value) + '" />');
for i:=0 to item.Methods.count-1 do
writefunction(item.Methods.PasItemAt[i]);
for i:=0 to item.Fields.count-1 do
writevariable(item.fields.PasItemAt[i]);
for i:=0 to item.Properties.count-1 do
writeproperty(item.Properties.PasItemAt[i]);
space:=copy(space,0,length(space)-2);
WriteDirectLine(space+'</structure>');
end;
procedure TSimpleXMLDocGenerator.WriteUnit(const HL: integer; const U: TPasUnit);
var
i: Integer;
begin
U.OutputFileName:=U.OutputFileName+'.xml';
if not Assigned(U) then begin
DoMessage(1, pmtError, 'TGenericXMLDocGenerator.WriteUnit: ' +
'Unit variable has not been initialized.', []);
Exit;
end;
if U.FileNewerThanCache(DestinationDirectory + U.OutputFileName) then
begin
DoMessage(3, pmtInformation, 'Data for unit "%s" was loaded from cache, '+
'and output file of this unit exists and is newer than cache, '+
'skipped.', [U.Name]);
Exit;
end;
if not CreateStream(U.OutputFileName) then Exit;
DoMessage(2, pmtInformation, 'Writing Docs for unit "%s"', [U.Name]);
WriteDirectLine('<unit name="' + ConvertString(U.SourceFileName) + '">');
space:=' ';
if u.HasDescription then
WriteDirectLine(space + ItemDescription(u));
//global uses
if WriteUsesClause and not IsEmpty(U.UsesUnits) then
for i:=0 to u.UsesUnits.count-1 do
WriteDirectLine(space +
'<uses name="' + ConvertString(u.UsesUnits[i]) + '"/>');
//global functions
for i:=0 to u.FuncsProcs.count-1 do
writefunction(u.FuncsProcs.PasItemAt[i]);
//global constants
for i:=0 to u.Constants.count-1 do
writeconstant(u.Constants.PasItemAt[i]);
//global vars
for i:=0 to u.Variables.count-1 do
writevariable(u.Variables.PasItemAt[i]);
//global types
for i:=0 to u.Types.count-1 do
writetypes(u.types.PasItemAt[i]);
//global classes
for i:=0 to u.CIOs.count-1 do
writeclass(TPasCIO(u.CIOs.PasItemAt[i]));
WriteDirectLine('</unit>');
end;
procedure TSimpleXMLDocGenerator.WriteExternalCore(
const ExternalItem: TExternalItem;
const Id: TTranslationID);
begin
{ TODO }
end;
function TSimpleXMLDocGenerator.FormatSection(HL: integer; const Anchor: string;
const Caption: string): string;
begin
Result := '';
{ TODO }
end;
function TSimpleXMLDocGenerator.FormatAnchor(const Anchor: string): string;
begin
{ TODO: untested, as this is used only by introduction-conclusion stuff
and WriteExternalCore is not impl yet. }
Result := Format('<anchor target="%s" />', [Anchor]);
end;
function TSimpleXMLDocGenerator.FormatTable(Table: TTableData): string;
const
RowElement: array [boolean] of string = ('row', 'rowhead');
var
RowNum, ColNum: Integer;
Row: TRowData;
begin
Result := LineEnding + LineEnding + '<table>' + LineEnding;
for RowNum := 0 to Table.Count - 1 do
begin
Row := Table.Items[RowNum] as TRowData;
Result := Result + ' <' + RowElement[Row.Head] + '>' + LineEnding;
for ColNum := 0 to Row.Cells.Count - 1 do
Result := Result +
Format(' <cell>%s</cell>', [Row.Cells[ColNum]]) + LineEnding;
Result := Result + ' </' + RowElement[Row.Head] + '>' + LineEnding;
end;
Result := Result + '</table>' + LineEnding + LineEnding;
end;
function TSimpleXMLDocGenerator.FormatList(ListData: TListData): string;
const
ListTag: array[TListType]of string =
( 'unorderedlist', 'orderedlist', 'definitionlist' );
var
i: Integer;
ListItem: TListItemData;
begin
Result := LineEnding + LineEnding +
Format('<%s>', [ListTag[ListData.ListType]]) + LineEnding;
for i := 0 to ListData.Count - 1 do
begin
ListItem := ListData.Items[i] as TListItemData;
Result := Result + '<item';
if ListData.ListType = ltDefinition then
Result := Result + ' label="' + ListItem.ItemLabel + '"';
Result := Result + '>' + ListItem.Text + '</item>' + LineEnding;
end;
Result := Result + Format('</%s>', [ListTag[ListData.ListType]]) +
LineEnding + LineEnding;
end;
function TSimpleXMLDocGenerator.FormatBold(const Text: string): string;
begin
Result := '<bold>' + Text + '</bold>';
end;
function TSimpleXMLDocGenerator.FormatItalic(const Text: string): string;
begin
Result := '<italic>' + Text + '</italic>';
end;
end.
|