-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
intf.XRechnungHelper.pas
160 lines (140 loc) · 4.99 KB
/
intf.XRechnungHelper.pas
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
{
License XRechnung-for-Delphi
Copyright (C) 2024 Landrix Software GmbH & Co. KG
Sven Harazim, info@landrix.de
Version 3.0.2
This program 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 3 of the License, or
(at your option) any later version.
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. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
}
unit intf.XRechnungHelper;
interface
uses
System.SysUtils, System.Classes,System.StrUtils
,Xml.xmldom,Xml.XMLDoc,Xml.XMLIntf,Xml.XMLSchema
,Xml.Win.msxmldom, Winapi.MSXMLIntf, Winapi.msxml
;
type
TXRechnungXMLHelper = class(TObject)
public
class function FindChild(_Node : IXMLNode; const _NodeName : String; out _Result : IXMLNode) : Boolean;
class function SelectNode(_XnRoot: IXMLDOMNode; const _NodePath: String; out _Result : IXMLDOMNode): Boolean;
class function SelectNodes(_XnRoot: IXMLDOMNode; const _NodePath: String; out _Result : IXMLDOMNodeList): Boolean;
class function SelectNodeText(_XnRoot: IXMLDOMNode; const _NodePath: String): String;
class function SelectAttributeText(_XnRoot: IXMLDOMNode; const _Attribute: String): String;
class function FindNode(_XnRoot: IXMLDOMNode; const _NodePath: String): Boolean;
class function PrepareDocumentForXPathQuerys(_Xml : IXMLDocument) : IXMLDOMDocument2;
end;
implementation
{ TXRechnungXMLHelper }
class function TXRechnungXMLHelper.SelectNodes(_XnRoot: IXMLDOMNode;
const _NodePath: String; out _Result : IXMLDOMNodeList): Boolean;
begin
Result := false;
_Result := nil;
if not Assigned(_XnRoot) then
exit;
_Result := _XnRoot.selectNodes(_NodePath);
Result := _Result <> nil;
if Result then
Result := _Result.length > 0;
end;
class function TXRechnungXMLHelper.SelectNodeText(_XnRoot: IXMLDOMNode; const _NodePath: String): String;
var
node : IXMLDOMNode;
begin
Result := '';
if TXRechnungXMLHelper.SelectNode(_XnRoot,_NodePath,node) then
Result := node.Text;
end;
class function TXRechnungXMLHelper.SelectAttributeText(_XnRoot: IXMLDOMNode;
const _Attribute: String): String;
begin
Result := '';
if _XnRoot = nil then
exit;
if _Attribute = '' then
exit;
if _XnRoot.attributes.getNamedItem(_Attribute) <> nil then
Result := _XnRoot.attributes.getNamedItem(_Attribute).Text;
end;
class function TXRechnungXMLHelper.SelectNode(_XnRoot: IXMLDOMNode;
const _NodePath: String; out _Result : IXMLDOMNode): Boolean;
begin
Result := false;
_Result := nil;
if not Assigned(_XnRoot) then
exit;
_Result := _XnRoot.selectSingleNode(_NodePath);
Result := _Result <> nil;
end;
class function TXRechnungXMLHelper.FindChild(_Node: IXMLNode; const _NodeName: String;
out _Result: IXMLNode): Boolean;
begin
Result := false;
if _Node = nil then
exit;
_Result := _Node.ChildNodes.FindNode(_NodeName,'');
Result := _Result <> nil;
end;
class function TXRechnungXMLHelper.PrepareDocumentForXPathQuerys(_Xml: IXMLDocument): IXMLDOMDocument2;
var
hList: IDOMNodeList;
i: Integer;
s, sNSN, sNSUri: string;
sNsLine: string;
begin
Result := nil;
if not _Xml.Active then
exit;
hList := (_Xml.DOMDocument as IDOMNodeSelect).selectNodes('//namespace::*');
try
for i := 0 to hList.length - 1 do
begin
sNSN := StringReplace(hList.item[i].nodeName, 'xmlns:', '', []);
if sNSN = 'xml' then
begin // wenn es als xmlns:xml hinzugefuegt wird bekommt man die meldung das der Namespacename xml nicht verwendet werden darf...
sNSN := 'xmlns:MyXml';
sNSUri := hList.item[i].nodeValue;
end
else
if sNSN = 'xmlns' then
begin // den Default Namespace mit einem Namen versehen, damit XPath drauf zugreifen kann.
sNSN := 'xmlns:dn';
sNSUri := hList.item[i].nodeValue;
end
else
begin // alle anderen Namespace auch fuer XPath bekannt machen
sNSN := hList.item[i].nodeName;
sNSUri := hList.item[i].nodeValue;
end;
s := sNSN + '="'+sNSUri+'"';
if Pos(AnsiUpperCase(s), AnsiUpperCase(sNsLine)) > 0 then
continue;
if Pos(AnsiUpperCase(sNSN+'="'), AnsiUpperCase(sNsLine)) > 0 then
continue;
sNsLine := ' '+s + sNsLine;
end;
sNsLine := trim(sNsLine);
finally
hList := nil;
end;
Result := CoDOMDocument60.Create;
Result.loadXML(_Xml.XML.Text);
Result.setProperty('SelectionLanguage', 'XPath'); // ab 4.0 ist SelectionLanguage eh immer XPath
Result.setProperty('SelectionNamespaces', sNsLine) ;
end;
class function TXRechnungXMLHelper.FindNode(_XnRoot: IXMLDOMNode; const _NodePath: String): Boolean;
var
Node : IXMLDOMNode;
begin
Result := TXRechnungXMLHelper.SelectNode(_XnRoot,_NodePath,Node);
end;
end.