use guavas utiltiy equals+hash in resolver result
This commit is contained in:
parent
b2414434dc
commit
100c735636
|
@ -1,10 +1,10 @@
|
||||||
package im.conversations.android.dns;
|
package im.conversations.android.dns;
|
||||||
|
|
||||||
import android.app.Application;
|
import android.app.Application;
|
||||||
import android.content.ContentValues;
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.database.Cursor;
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
|
import com.google.common.base.MoreObjects;
|
||||||
|
import com.google.common.base.Objects;
|
||||||
import de.measite.minidns.AbstractDNSClient;
|
import de.measite.minidns.AbstractDNSClient;
|
||||||
import de.measite.minidns.DNSCache;
|
import de.measite.minidns.DNSCache;
|
||||||
import de.measite.minidns.DNSClient;
|
import de.measite.minidns.DNSClient;
|
||||||
|
@ -328,13 +328,6 @@ public class Resolver {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class Result implements Comparable<Result> {
|
public static class Result implements Comparable<Result> {
|
||||||
public static final String DOMAIN = "domain";
|
|
||||||
public static final String IP = "ip";
|
|
||||||
public static final String HOSTNAME = "hostname";
|
|
||||||
public static final String PORT = "port";
|
|
||||||
public static final String PRIORITY = "priority";
|
|
||||||
public static final String DIRECT_TLS = "directTls";
|
|
||||||
public static final String AUTHENTICATED = "authenticated";
|
|
||||||
private InetAddress ip;
|
private InetAddress ip;
|
||||||
private DNSName hostname;
|
private DNSName hostname;
|
||||||
private int port = DEFAULT_PORT_XMPP;
|
private int port = DEFAULT_PORT_XMPP;
|
||||||
|
@ -363,48 +356,6 @@ public class Resolver {
|
||||||
return createDefault(hostname, null);
|
return createDefault(hostname, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Result fromCursor(Cursor cursor) {
|
|
||||||
final Result result = new Result();
|
|
||||||
try {
|
|
||||||
result.ip = InetAddress.getByAddress(cursor.getBlob(cursor.getColumnIndex(IP)));
|
|
||||||
} catch (UnknownHostException e) {
|
|
||||||
result.ip = null;
|
|
||||||
}
|
|
||||||
final String hostname = cursor.getString(cursor.getColumnIndex(HOSTNAME));
|
|
||||||
result.hostname = hostname == null ? null : DNSName.from(hostname);
|
|
||||||
result.port = cursor.getInt(cursor.getColumnIndex(PORT));
|
|
||||||
result.priority = cursor.getInt(cursor.getColumnIndex(PRIORITY));
|
|
||||||
result.authenticated = cursor.getInt(cursor.getColumnIndex(AUTHENTICATED)) > 0;
|
|
||||||
result.directTls = cursor.getInt(cursor.getColumnIndex(DIRECT_TLS)) > 0;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean equals(Object o) {
|
|
||||||
if (this == o) return true;
|
|
||||||
if (o == null || getClass() != o.getClass()) return false;
|
|
||||||
|
|
||||||
Result result = (Result) o;
|
|
||||||
|
|
||||||
if (port != result.port) return false;
|
|
||||||
if (directTls != result.directTls) return false;
|
|
||||||
if (authenticated != result.authenticated) return false;
|
|
||||||
if (priority != result.priority) return false;
|
|
||||||
if (ip != null ? !ip.equals(result.ip) : result.ip != null) return false;
|
|
||||||
return hostname != null ? hostname.equals(result.hostname) : result.hostname == null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int hashCode() {
|
|
||||||
int result = ip != null ? ip.hashCode() : 0;
|
|
||||||
result = 31 * result + (hostname != null ? hostname.hashCode() : 0);
|
|
||||||
result = 31 * result + port;
|
|
||||||
result = 31 * result + (directTls ? 1 : 0);
|
|
||||||
result = 31 * result + (authenticated ? 1 : 0);
|
|
||||||
result = 31 * result + priority;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
public InetAddress getIp() {
|
public InetAddress getIp() {
|
||||||
return ip;
|
return ip;
|
||||||
}
|
}
|
||||||
|
@ -425,28 +376,9 @@ public class Resolver {
|
||||||
return authenticated;
|
return authenticated;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "Result{"
|
|
||||||
+ "ip='"
|
|
||||||
+ (ip == null ? null : ip.getHostAddress())
|
|
||||||
+ '\''
|
|
||||||
+ ", hostame='"
|
|
||||||
+ (hostname == null ? null : hostname.toString())
|
|
||||||
+ '\''
|
|
||||||
+ ", port="
|
|
||||||
+ port
|
|
||||||
+ ", directTls="
|
|
||||||
+ directTls
|
|
||||||
+ ", authenticated="
|
|
||||||
+ authenticated
|
|
||||||
+ ", priority="
|
|
||||||
+ priority
|
|
||||||
+ '}';
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int compareTo(@NonNull Result result) {
|
public int compareTo(@NonNull Result result) {
|
||||||
|
// TODO use comparison chain. get rid of IPv4 preference
|
||||||
if (result.priority == priority) {
|
if (result.priority == priority) {
|
||||||
if (directTls == result.directTls) {
|
if (directTls == result.directTls) {
|
||||||
if (ip == null && result.ip == null) {
|
if (ip == null && result.ip == null) {
|
||||||
|
@ -468,15 +400,35 @@ public class Resolver {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public ContentValues toContentValues() {
|
@Override
|
||||||
final ContentValues contentValues = new ContentValues();
|
public boolean equals(Object o) {
|
||||||
contentValues.put(IP, ip == null ? null : ip.getAddress());
|
if (this == o) return true;
|
||||||
contentValues.put(HOSTNAME, hostname == null ? null : hostname.toString());
|
if (o == null || getClass() != o.getClass()) return false;
|
||||||
contentValues.put(PORT, port);
|
Result result = (Result) o;
|
||||||
contentValues.put(PRIORITY, priority);
|
return port == result.port
|
||||||
contentValues.put(DIRECT_TLS, directTls ? 1 : 0);
|
&& directTls == result.directTls
|
||||||
contentValues.put(AUTHENTICATED, authenticated ? 1 : 0);
|
&& authenticated == result.authenticated
|
||||||
return contentValues;
|
&& priority == result.priority
|
||||||
|
&& Objects.equal(ip, result.ip)
|
||||||
|
&& Objects.equal(hostname, result.hostname);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int hashCode() {
|
||||||
|
return Objects.hashCode(ip, hostname, port, directTls, authenticated, priority);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return MoreObjects.toStringHelper(this)
|
||||||
|
.add("ip", ip)
|
||||||
|
.add("hostname", hostname)
|
||||||
|
.add("port", port)
|
||||||
|
.add("directTls", directTls)
|
||||||
|
.add("authenticated", authenticated)
|
||||||
|
.add("priority", priority)
|
||||||
|
.toString();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,6 +18,7 @@ import com.google.common.util.concurrent.SettableFuture;
|
||||||
import im.conversations.android.R;
|
import im.conversations.android.R;
|
||||||
import im.conversations.android.database.model.Account;
|
import im.conversations.android.database.model.Account;
|
||||||
import im.conversations.android.database.model.Connection;
|
import im.conversations.android.database.model.Connection;
|
||||||
|
import im.conversations.android.dns.Resolver;
|
||||||
import im.conversations.android.repository.AccountRepository;
|
import im.conversations.android.repository.AccountRepository;
|
||||||
import im.conversations.android.tls.ScopeFingerprint;
|
import im.conversations.android.tls.ScopeFingerprint;
|
||||||
import im.conversations.android.ui.Event;
|
import im.conversations.android.ui.Event;
|
||||||
|
@ -153,7 +154,8 @@ public class SetupViewModel extends AndroidViewModel {
|
||||||
final BareJid address;
|
final BareJid address;
|
||||||
try {
|
try {
|
||||||
address = JidCreate.bareFrom(userInput);
|
address = JidCreate.bareFrom(userInput);
|
||||||
} catch (final XmppStringprepException e) {
|
Resolver.checkDomain(address.asDomainBareJid());
|
||||||
|
} catch (final XmppStringprepException | IllegalArgumentException e) {
|
||||||
this.xmppAddressError.postValue(getApplication().getString(R.string.invalid_jid));
|
this.xmppAddressError.postValue(getApplication().getString(R.string.invalid_jid));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -381,7 +383,9 @@ public class SetupViewModel extends AndroidViewModel {
|
||||||
}
|
}
|
||||||
final String hostname =
|
final String hostname =
|
||||||
Strings.nullToEmpty(this.hostname.getValue()).trim().toLowerCase(Locale.ROOT);
|
Strings.nullToEmpty(this.hostname.getValue()).trim().toLowerCase(Locale.ROOT);
|
||||||
if (hostname.isEmpty() || CharMatcher.whitespace().matchesAnyOf(hostname)) {
|
if (hostname.isEmpty()
|
||||||
|
|| CharMatcher.whitespace().matchesAnyOf(hostname)
|
||||||
|
|| Resolver.invalidHostname(hostname)) {
|
||||||
this.hostnameError.postValue(getApplication().getString(R.string.not_valid_hostname));
|
this.hostnameError.postValue(getApplication().getString(R.string.not_valid_hostname));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue