IPv4Address.java
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package com.soebes.ip;
import java.util.Comparator;
import java.util.function.Function;
public record IPv4Address(int t1, int t2, int t3, int t4) {
public IPv4Address {
validate(t1, "t1");
validate(t2, "t2");
validate(t3, "t3");
validate(t4, "t4");
}
private void validate(int value, String name) {
if (value > 255 || value < 0) {
throw new IllegalArgumentException("The valid range for " + name + " is 0..255");
}
}
@Override
public String toString() {
return t1 + "." + t2 + "." + t3 + "." + t4;
}
@Override
public boolean equals(Object obj) {
if (obj == this) return true;
if (obj == null || obj.getClass() != this.getClass()) return false;
var that = (IPv4Address) obj;
return this.t1 == that.t1 &&
this.t2 == that.t2 &&
this.t3 == that.t3 &&
this.t4 == that.t4;
}
public int first16() {
return (this.t1 << 8) + this.t2;
}
public int second16() {
return (this.t3 << 8) + this.t4;
}
static Comparator<IPv4Address> IP_ADDRESS_COMPARATOR = Comparator
.comparingInt(IPv4Address::t1)
.thenComparingInt(IPv4Address::t2)
.thenComparingInt(IPv4Address::t3)
.thenComparingInt(IPv4Address::t4);
static Function<String, IPv4Address> toIpAddress = s -> {
var ipTuples = s.split("\\.");
return new IPv4Address(
Integer.parseInt(ipTuples[0]),
Integer.parseInt(ipTuples[1]),
Integer.parseInt(ipTuples[2]),
Integer.parseInt(ipTuples[3])
);
};
}