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
|
unit poparser;
(****************************************************************)
(* *)
(* (C) Copyright by Lars B. Dybdahl *)
(* E-mail: Lars@dybdahl.dk, phone +45 70201241 *)
(* You received this file under the Mozilla Public License 1.1 *)
(* *)
(* See http://dybdahl.dk/dxgettext/ for more information *)
(* *)
(****************************************************************)
// This assumes utf-8 only in the .po files
interface
uses
Classes;
type
TPoEntry=
class
public
UserCommentList:TStringList; // Entire lines, utf8!
AutoCommentList:TStringList; // Entire lines, utf8!
MsgId:widestring; // singular and plural are separated by #0, if plural form is present
MsgStr:widestring; // plural forms are separated by #0, if present
constructor Create;
destructor Destroy; override;
procedure Assign (po:TPoEntry);
procedure Clear;
procedure WriteToStream (str:TStream); // Adds an empty line afterwards.
end;
TPoEntryList=
class
private
list:TStringList; // Strings are searchkeys, objects are TList of TPoEntries
function GetSearchKey (MsgId:widestring):utf8string;
public
constructor Create;
destructor Destroy; override;
procedure LoadFromFile (filename:string);
procedure SaveToFile (filename:string);
procedure Clear;
function Find (MsgId:widestring):TPoEntry;
function Delete (MsgId:widestring):boolean; // True if found and deleted, false if not found
procedure Add (entry:TPoEntry); // Will fail if MsgId exists. Entry is copied.
// Iterate through all items. When nil is returned, no more elements are there.
function FindFirst:TPoEntry;
function FindNext (po:TPoEntry):TPoEntry;
end;
// Easy to use parser for .po files. Just put all the lines into AddLine(),
// and each time a translation has been found, it turns true once.
// Always end your parsing by putting an empty line into Addline.
TPoParser=
class
private
LineNumber:Integer;
IsMsgId:boolean;
entry:TPoEntry; // This is the return value if last AddLine returned True
entryhasdata:boolean;
public
constructor Create;
destructor Destroy; override;
// Put all your lines into AddLine(). It will return nil most
// of the times, but it will return an entry each time the whitespace
// after an entry has been reached. The entry is only valid until the next
// call to AddLine().
function AddLine (line:utf8string):TPoEntry;
// Read a couple of lines from file and return next TPoEntry. Returns nil if no more entries.
function ReadNextEntry (var tf:TextFile):TPoEntry;
property CurrentLineNumber:integer read LineNumber;
end;
procedure StreamWrite (s:TStream;line:utf8string);
procedure StreamWriteln (s:TStream;line:utf8string='');
procedure StreamWriteMinimumPoHeader (s:TStream;appname:widestring);
procedure StreamWriteDefaultPoTemplateHeader (s:TStream;appname:widestring);
implementation
uses
Math, SysUtils, gnugettext;
procedure StreamWriteMinimumPoHeader (s:TStream;appname:widestring);
begin
StreamWriteln(s, 'msgid ""');
StreamWriteln(s, 'msgstr ""');
StreamWriteln(s, '"POT-Creation-Date: ' + FormatDateTime('yyyy-mm-dd hh:nn', now) + '\n"');
StreamWriteln(s, '"PO-Revision-Date: ' + FormatDateTime('yyyy-mm-dd hh:nn', now) + '\n"');
StreamWriteln(s, '"Last-Translator: Somebody <your.email@address.com>\n"');
StreamWriteln(s, '"MIME-Version: 1.0\n"');
StreamWriteln(s, '"Content-Type: text/plain; charset=UTF-8\n"');
StreamWriteln(s, '"Content-Transfer-Encoding: 8bit\n"');
StreamWriteln(s, '"X-Generator: ' + utf8encode(appname) + '\n"');
Streamwriteln(s, '');
end;
procedure StreamWriteDefaultPoTemplateHeader (s:TStream;appname:widestring);
begin
StreamWriteln(s, '# SOME DESCRIPTIVE TITLE.');
StreamWriteln(s, '# Copyright (C) YEAR THE PACKAGE''S COPYRIGHT HOLDER');
StreamWriteln(s, '# This file is distributed under the same license as the PACKAGE package.');
StreamWriteln(s, '# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.');
StreamWriteln(s, '#');
StreamWriteln(s, 'msgid ""');
StreamWriteln(s, 'msgstr ""');
StreamWriteln(s, '"Project-Id-Version: PACKAGE VERSION\n"');
StreamWriteln(s, '"POT-Creation-Date: ' + FormatDateTime('yyyy-mm-dd hh:nn', now) + '\n"');
StreamWriteln(s, '"PO-Revision-Date: ' + FormatDateTime('yyyy-mm-dd hh:nn', now) + '\n"');
StreamWriteln(s, '"Last-Translator: Somebody <your.email@address.com>\n"');
StreamWriteln(s, '"MIME-Version: 1.0\n"');
StreamWriteln(s, '"Content-Type: text/plain; charset=UTF-8\n"');
StreamWriteln(s, '"Content-Transfer-Encoding: 8bit\n"');
StreamWriteln(s, '"X-Generator: ' + utf8encode(appname) + '\n"');
Streamwriteln(s, '');
end;
procedure StreamWriteln (s:TStream;line:utf8string='');
begin
StreamWrite (s, line);
StreamWrite (s, sLineBreak);
end;
procedure StreamWrite (s:TStream;line:utf8string);
var
len:integer;
begin
len:=length(line);
if len>0 then
if s.Write(line[1],len)<>len then
raise Exception.Create (_('Error when writing to stream.'));
end;
function String2PO (s:utf8string):utf8string;
// Converts a string to the syntax that is used in .po files
var
i: integer;
c: char;
escnext:boolean;
begin
Result := '';
escnext:=False;
for i := 1 to length(s) do begin
c := s[i];
case c of
#32..#33, #35..pred('\'),succ('\')..#255:
begin
if escnext then Result:=Result+'\';
Result := Result + c;
escnext:=False;
end;
'\':begin
Result:=Result+'\\';
escnext:=False;
end;
#13:; // Do nothing
#10:begin
Result := Result + '\n';
escnext:=False;
end;
#34:begin
Result := Result + '\"';
escnext:=False;
end;
#0:begin
Result := Result + '\0';
escnext:=True;
end;
#9:begin
Result:=Result+'\t';
escnext:=False;
end;
else
Result := Result + '\x' + IntToHex(ord(c),2);
escnext:=True;
end;
end;
Result := '"' + Result + '"';
end;
{ TPoParser }
function TPoParser.AddLine(line: utf8string):TPoEntry;
var
i:integer;
value:utf8string;
begin
try
Inc (LineNumber);
line:=trim(line);
if line<>'' then begin
if not entryhasdata then begin
entry.Clear;
entryhasdata:=False;
end;
if copy(line,1,2)='# ' then
entry.UserCommentList.Add(line)
else
if copy(line,1,1)='#' then
entry.AutoCommentList.Add(line)
else begin
if uppercase(copy(line,1,12))='MSGID_PLURAL' then begin
IsMsgId:=True;
delete (line,1,12);
line:=trim(line);
entry.MsgId:=entry.MsgId+#0;
end;
if uppercase(copy(line,1,5))='MSGID' then begin
IsMsgId:=True;
delete (line,1,5);
line:=trim(line);
end;
if uppercase(copy(line,1,6))='MSGSTR' then begin
IsMsgId:=False;
delete (line,1,6);
if copy(line,1,1)='[' then begin
if copy(line,2,1)<>'0' then
entry.MsgStr:=entry.MsgStr+#0;
delete (line,1,3);
end;
line:=trim(line);
end;
if (copy(line,1,1)<>'"') or (copy(line,length(line),1)<>'"') then
raise Exception.Create (Format(_('Illegal line: %s'),[line]));
value:=copy(line,2,length(line)-2);
i:=1;
while i<length(value) do begin
if value[i]='\' then begin
delete (value,i,1);
case value[i] of
'0':value[i]:=#0;
'n':value[i]:=#10;
't':value[i]:=#9;
'x':begin
value[i]:=char(StrToInt('$'+copy(value,i+1,2)));
delete (value,i+1,2);
end;
else
// Do nothing - the character was just escaped.
end;
end;
inc (i);
end;
if IsMsgId then entry.MsgId:=entry.MsgId+utf8decode(value)
else entry.MsgStr:=entry.MsgStr+utf8decode(value);
end;
end;
if (line='') and entryhasdata then begin
Result:=entry;
end else begin
Result:=nil;
end;
entryhasdata:=line<>'';
except
on e:Exception do
raise Exception.Create (format(_('Exception %s in line %d:'+SLineBreak+'%s'),[e.ClassName,LineNumber,e.Message]));
end;
end;
constructor TPoParser.Create;
begin
LineNumber:=0;
entry:=TPoEntry.Create;
end;
destructor TPoParser.Destroy;
begin
FreeAndNil (entry);
inherited;
end;
function TPoParser.ReadNextEntry(var tf: TextFile): TPoEntry;
var
line:string;
begin
while not eof(tf) do begin
Readln (tf, line);
Result:=AddLine(line);
if Result<>nil then
exit;
end;
Result:=AddLine ('');
end;
{ TPoEntry }
procedure TPoEntry.Assign(po: TPoEntry);
begin
UserCommentList.Assign(po.UserCommentList);
AutoCommentList.Assign(po.AutoCommentList);
MsgId:=po.MsgId;
MsgStr:=po.MsgStr;
end;
procedure TPoEntry.Clear;
begin
UserCommentList.Clear;
AutoCommentList.Clear;
MsgId:='';
MsgStr:='';
end;
constructor TPoEntry.Create;
begin
UserCommentList:=TStringList.Create;
AutoCommentList:=TStringList.Create;
end;
destructor TPoEntry.Destroy;
begin
FreeAndNil (UserCommentList);
FreeAndNil (AutoCommentList);
inherited;
end;
function FindBestBreak (s:widestring;LineWidth:integer):integer;
// Returns number of characters to include in the line
var
spacepos:integer;
i,p:integer;
MaxLength:integer;
begin
p:=pos(#10,s);
spacepos:=0;
MaxLength:=min(length(s),LineWidth);
if (p>2) and (p<MaxLength) then begin
Result:=p;
exit;
end;
i:=MaxLength;
while i>=1 do begin
case s[i] of
#10:begin
Result:=i;
exit;
end;
' ':
if spacepos=0 then
spacepos:=i;
end;
dec (i);
end;
if spacepos>LineWidth div 2 then begin
Result:=spacepos;
end else
Result:=MaxLength;
if (Result>=2) and (ord(s[Result])<32) and (ord(s[Result])<>10) then begin
for i:=Result-1 downto 1 do begin
if (ord(s[i])>=32) or (ord(s[i])=10) then begin
Result:=i;
exit;
end;
end;
end;
end;
procedure TPoEntry.WriteToStream(str: TStream);
procedure WritePart (token:utf8string;msg:widestring);
var
p:integer;
part:widestring;
begin
StreamWrite (str, token+' ');
while true do begin
p:=FindBestBreak (msg,70);
part:=copy(msg,1,p);
delete (msg,1,length(part));
StreamWriteln (str, String2PO(utf8encode(part)));
if msg='' then
break;
end;
end;
var
s:utf8string;
p:integer;
idx:integer;
isplural:boolean;
begin
// Write comments
s:=trim(UserCommentList.Text);
if s<>'' then s:=s+sLineBreak;
StreamWrite (str, s);
s:=trim(AutoCommentList.Text);
if s<>'' then s:=s+sLineBreak;
StreamWrite (str, s);
// Write msgid and msgstr
p:=pos(#0,MsgId);
isplural:=p<>0;
if not isplural then
WritePart ('msgid',MsgId)
else begin
WritePart ('msgid',copy(MsgId,1,p-1));
WritePart ('msgid_plural',copy(MsgId,p+1,maxint));
end;
p:=pos(#0,MsgStr);
if (p=0) and (not isplural) then
WritePart ('msgstr',MsgStr)
else begin
idx:=0;
while true do begin
if p<>0 then begin
WritePart ('msgstr['+IntToStr(idx)+']',copy(MsgStr,1,p-1));
delete (MsgStr,1,p);
end else begin
WritePart ('msgstr['+IntToStr(idx)+']',MsgStr);
break;
end;
inc (idx);
p:=pos(#0,MsgStr);
end;
end;
// Write empty line
StreamWrite (str, sLineBreak);
end;
{ TPoEntryList }
procedure TPoEntryList.Add(entry: TPoEntry);
var
p:Integer;
l:TList;
idx:integer;
po:TPoEntry;
searchkey:utf8string;
begin
searchkey:=GetSearchKey(entry.MsgId);
if list.Find(searchkey,idx) then begin
l:=list.Objects[idx] as TList;
for p:=0 to l.count-1 do begin
po:=TObject(l.Items[p]) as TPoEntry;
if po.MsgId=entry.MsgId then
raise Exception.Create (Format(_('This list of translations cannot handle MsgId duplicates. Please remove the duplicate of "%s".'),[po.MsgId]));
end;
end else begin
l:=TList.Create;
list.AddObject(searchkey,l);
end;
po:=TPoEntry.Create;
po.Assign (entry);
l.Add(po);
end;
procedure TPoEntryList.Clear;
var
i,j:integer;
l:TList;
begin
for i:=0 to list.count-1 do begin
l:=list.Objects[i] as TList;
for j:=0 to l.count-1 do
TObject(l.Items[j]).Free;
l.Free;
end;
list.Clear;
end;
constructor TPoEntryList.Create;
begin
list:=TStringList.Create;
list.Duplicates:=dupError;
list.CaseSensitive:=True;
list.Sorted:=True;
end;
function TPoEntryList.Delete(MsgId: widestring): boolean;
var
p:Integer;
l:TList;
idx:integer;
po:TPoEntry;
begin
Result:=False;
if list.Find(GetSearchKey(MsgId),idx) then begin
l:=list.Objects[idx] as TList;
for p:=0 to l.count-1 do begin
po:=TObject(l.Items[p]) as TPoEntry;
if po.MsgId=MsgId then begin
po.Free;
l.Delete (p);
Result:=True;
if l.Count=0 then begin
l.Free;
list.Delete (idx);
end;
exit;
end;
end;
end;
end;
destructor TPoEntryList.Destroy;
begin
Clear;
FreeAndNil (list);
inherited;
end;
function TPoEntryList.Find(MsgId: widestring):TPoEntry;
var
p:Integer;
l:TList;
idx:integer;
begin
if list.Find(GetSearchKey(MsgId),idx) then begin
l:=list.Objects[idx] as TList;
for p:=0 to l.count-1 do begin
Result:=TObject(l.Items[p]) as TPoEntry;
if Result.MsgId=MsgId then
exit;
end;
end;
Result:=nil;
end;
function TPoEntryList.FindFirst: TPoEntry;
var
l:TList;
begin
if list.Count=0 then begin
Result:=nil;
exit;
end;
l:=list.Objects[0] as TList;
if l.Count=0 then
raise Exception.Create (_('Internal error in TPoEntryList data structure. Sublist for searchkey was empty.'));
Result:=TObject(l.Items[0]) as TPoEntry;
end;
function TPoEntryList.FindNext(po: TPoEntry): TPoEntry;
var
p:Integer;
l:TList;
idx:integer;
begin
Result:=Nil;
if list.Find(GetSearchKey(po.MsgId),idx) then begin
l:=list.Objects[idx] as TList;
p:=l.IndexOf(po);
if p=-1 then
raise Exception.Create (_('Error: Specified TPoEntry was not found in list.'));
if p=l.Count-1 then begin
if idx=list.Count-1 then begin
Result:=nil;
end else begin
l:=list.Objects[idx+1] as TList;
if l.Count=0 then
raise Exception.Create (_('Internal error in TPoEntryList data structure. Sublist for searchkey was empty.'));
Result:=TObject(l.Items[0]) as TPoEntry;
end;
end else
Result:=TObject(l.Items[p+1]) as TPoEntry;
end;
end;
function TPoEntryList.GetSearchKey(MsgId: widestring): utf8string;
var
p:integer;
begin
p:=pos(#10,MsgId);
if p<>0 then begin
Result:=utf8encode(copy(MsgId,1,p-1));
end else begin
Result:=utf8encode(MsgId);
end;
end;
procedure TPoEntryList.LoadFromFile(filename: string);
var
tf:TextFile;
pop:TPoParser;
pe:TPoEntry;
begin
AssignFile (tf,filename);
Reset (tf);
try
pop:=TPoParser.Create;
try
while true do begin
pe:=pop.ReadNextEntry(tf);
if pe=nil then
break;
Add (pe);
end;
finally
FreeAndNil (pop);
end;
finally
CloseFile (tf);
end;
end;
procedure TPoEntryList.SaveToFile(filename: string);
var
outfile:TFileStream;
pe:TPoEntry;
begin
outfile:=TFileStream.Create (filename, fmCreate);
try
// Write header
pe:=Find('');
if pe<>nil then
pe.WriteToStream(outfile);
// Write the rest
pe:=FindFirst;
while pe<>nil do begin
if pe.MsgId<>'' then
pe.WriteToStream(outfile);
pe:=FindNext (pe);
end;
finally
FreeAndNil (outfile);
end;
end;
end.
|