org.xbill.DNS.tools.primary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.dnsjava
Show all versions of org.apache.servicemix.bundles.dnsjava
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 1999-2004 Brian Wellington ([email protected])
package org.xbill.DNS.tools;
import java.util.Iterator;
import org.xbill.DNS.Name;
import org.xbill.DNS.RRset;
import org.xbill.DNS.Zone;
public class primary {
private static void usage() {
System.out.println("usage: primary [-t] [-a | -i] origin file");
System.exit(1);
}
public static void main(String[] args) throws Exception {
boolean time = false;
boolean axfr = false;
boolean iterator = false;
int arg = 0;
if (args.length < 2) {
usage();
}
while (args.length - arg > 2) {
switch (args[0]) {
case "-t":
time = true;
break;
case "-a":
axfr = true;
break;
case "-i":
iterator = true;
break;
}
arg++;
}
Name origin = Name.fromString(args[arg++], Name.root);
String file = args[arg++];
long start = System.currentTimeMillis();
Zone zone = new Zone(origin, file);
long end = System.currentTimeMillis();
if (axfr) {
Iterator it = zone.AXFR();
while (it.hasNext()) {
System.out.println(it.next());
}
} else if (iterator) {
Iterator it = zone.iterator();
while (it.hasNext()) {
System.out.println(it.next());
}
} else {
System.out.println(zone);
}
if (time) {
System.out.println("; Load time: " + (end - start) + " ms");
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy