org.kapott.hbci.tools.ValidateXMLGVTemplate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbci4j-core Show documentation
Show all versions of hbci4j-core Show documentation
HBCI4j - Home Banking Computer Interface for Java
/**********************************************************************
*
* This file is part of HBCI4Java.
* Copyright (c) 2001-2008 Stefan Palme
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
**********************************************************************/
package org.kapott.hbci.tools;
import java.io.File;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.NodeList;
/** Dieses Tool ist nur für die interne Verwendung für die Entwicklung von
* HBCI4Java gedacht.
* Die XML-Dateien mit den HBCI-Syntax-Beschreibungen werden zum Teil automatisch
* erzeugt. Mit diesem Tool können die dafür benötigten Templates auf Konsistenz
* geprüft werden. */
public class ValidateXMLGVTemplate
{
private static void validateRefs(Element sfelem, List deflist)
{
String sfname=sfelem.getAttribute("id");
NodeList refs=sfelem.getElementsByTagName("SEG");
int l=refs.getLength();
for (int i=0; i i=deflist.iterator(); i.hasNext();) {
System.out.println("warning: defined "+sfname+" '"+i.next()+"' not referenced in SF '"+sfname+"'");
}
}
}
public static void main(String[] args)
throws Exception
{
DocumentBuilderFactory fac=DocumentBuilderFactory.newInstance();
fac.setIgnoringComments(true);
fac.setIgnoringElementContentWhitespace(true);
fac.setNamespaceAware(false);
fac.setValidating(false);
DocumentBuilder builder=fac.newDocumentBuilder();
File f=new File(args[0]);
Document doc=builder.parse(f);
Element root=doc.getDocumentElement();
NodeList segdefs=root.getElementsByTagName("SEGdef");
int l=segdefs.getLength();
List seen=new ArrayList();
List gvs=new ArrayList();
List gvrs=new ArrayList();
List params=new ArrayList();
for (int i=0; i