Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* The MIT License (MIT)
*
* Copyright (c) 2011-2014, Yannis Gonianakis
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.github.jgonian.ipmath;
import static java.math.BigInteger.*;
import java.math.BigInteger;
public final class Ipv6Range extends AbstractIpRange {
private static final long serialVersionUID = 1L;
protected Ipv6Range(Ipv6 start, Ipv6 end) {
super(start, end);
}
@Override
protected Ipv6Range newInstance(BigInteger start, BigInteger end) {
return Ipv6Range.from(start).to(end);
}
@Override
protected Ipv6Range newInstance(Ipv6 start, Ipv6 end) {
return new Ipv6Range(start, end);
}
public static Ipv6RangeBuilder from(Ipv6 from) {
return new Ipv6RangeBuilder(from);
}
public static Ipv6RangeBuilder from(BigInteger from) {
return new Ipv6RangeBuilder(Ipv6.of(from));
}
public static Ipv6RangeBuilder from(String from) {
return new Ipv6RangeBuilder(Ipv6.parse(from));
}
/**
* Parses a String into an {@link Ipv6Range}.
*
* @param range a dash separated string of two IPv6 addresses e.g. "2001:db8::1-2001:db8::2"
* or a CIDR-notation string, e.g. "2001:0db8:0:cd30::/60"
* @return a new {@link Ipv6Range}
* @throws IllegalArgumentException if the string cannot be parsed
* @see #parseCidr(String)
*/
public static Ipv6Range parse(String range) {
int idx = range.indexOf(DASH);
if (idx != -1) {
Ipv6 start = Ipv6.parse(range.substring(0, idx));
Ipv6 end = Ipv6.parse(range.substring(idx + 1, range.length()));
return new Ipv6Range(start, end);
} else {
return parseCidr(range);
}
}
/**
* Parses a String of an IPv6 address and its subnet mask formatted as in a
* Classless Inter-Domain Routing (CIDR) notation.
*
* @param cidrString a CIDR-notation string, e.g. "2001:0db8:0:cd30::/60"
* @return a new {@link Ipv6Range}
* @throws IllegalArgumentException if the string cannot be parsed
* @see rfc4632
* @see rfc4291 §2.3
*/
public static Ipv6Range parseCidr(String cidrString) {
int idx = cidrString.indexOf(SLASH);
Validate.isTrue(idx != -1, "Argument [" + cidrString + "] is not a range or does not comply with the CIDR notation");
String address = cidrString.substring(0, idx);
String prefix = cidrString.substring(idx + 1, cidrString.length());
return Ipv6Range.from(address).andPrefixLength(prefix);
}
public static Ipv6Range parseDecimalNotation(String range) {
int idx = range.indexOf(DASH);
Validate.isTrue(idx != -1, "Argument [" + range + "] does not comply with the decimal range notation");
BigInteger start = new BigInteger(range.substring(0, idx));
BigInteger end = new BigInteger(range.substring(idx + 1, range.length()));
return Ipv6Range.from(start).to(end);
}
@Override
public BigInteger size() {
return (end().value().subtract(start().value())).add(ONE);
}
public static class Ipv6RangeBuilder extends AbstractRangeBuilder {
private final Ipv6 from;
protected Ipv6RangeBuilder(Ipv6 from) {
this.from = from;
}
public Ipv6Range to(BigInteger end) {
return to(Ipv6.of(end));
}
public Ipv6Range to(String end) {
return to(Ipv6.parse(end));
}
public Ipv6Range andPrefixLength(String prefixLength) {
return andPrefixLength(Integer.parseInt(prefixLength));
}
public Ipv6Range andPrefixLength(int prefixLength) {
Validate.isTrue(from.lowerBoundForPrefix(prefixLength).equals(from),
from + "/" + prefixLength + " is not a legal IPv6 address prefix.");
return to(from.upperBoundForPrefix(prefixLength));
}
@Override
public Ipv6Range to(Ipv6 to) {
return new Ipv6Range(from, to);
}
}
}