Applied review request 12685

This commit is contained in:
Alex Huang 2013-07-19 08:29:07 -07:00
parent eb3ffef95a
commit 2d4464d2ba
2 changed files with 144 additions and 13 deletions

View File

@ -23,7 +23,7 @@ import com.cloud.utils.exception.CloudRuntimeException;
/**
* Network includes all of the enums used within networking.
*
*
*/
public class Networks {
@ -66,8 +66,8 @@ public class Networks {
Pvlan("pvlan", String.class),
UnDecided(null, null);
private String scheme;
private Class<?> type;
private final String scheme;
private final Class<?> type;
private BroadcastDomainType(String scheme, Class<?> type) {
this.scheme = scheme;
@ -75,14 +75,16 @@ public class Networks {
}
/**
* @return scheme to be used in broadcast uri. Null indicates that this type does not have broadcast tags.
* @return scheme to be used in broadcast uri. Null indicates that this
* type does not have broadcast tags.
*/
public String scheme() {
return scheme;
}
/**
* @return type of the value in the broadcast uri. Null indicates that this type does not have broadcast tags.
* @return type of the value in the broadcast uri. Null indicates that
* this type does not have broadcast tags.
*/
public Class<?> type() {
return type;
@ -90,9 +92,56 @@ public class Networks {
public <T> URI toUri(T value) {
try {
return new URI(scheme + "://" + value);
// do we need to check that value does not contain a scheme
// part?
if (value.toString().contains(":"))
return new URI(value.toString());
else
return new URI(scheme, value.toString(), null);
} catch (URISyntaxException e) {
throw new CloudRuntimeException("Unable to convert to broadcast URI: " + value);
throw new CloudRuntimeException(
"Unable to convert to broadcast URI: " + value);
}
}
public static BroadcastDomainType getTypeOf(URI uri) {
return getType(uri.getScheme());
}
public static BroadcastDomainType getTypeOf(String str)
throws URISyntaxException {
return getTypeOf(new URI(str));
}
public static BroadcastDomainType getType(String scheme) {
if (scheme == null) {
return UnDecided;
}
for (BroadcastDomainType type : values()) {
if (scheme.equalsIgnoreCase(type.scheme())) {
return type;
}
}
return UnDecided;
}
public static String getValue(String uriString)
throws URISyntaxException {
return getValue(new URI(uriString));
}
public static String getValue(URI uri) {
BroadcastDomainType type = getTypeOf(uri);
if (type == Vlan) {
// do complicated stuff for backward compatibility
try {
Long.parseLong(uri.getSchemeSpecificPart());
return uri.getSchemeSpecificPart();
} catch (NumberFormatException e) {
return uri.getHost();
}
} else {
return uri.getSchemeSpecificPart();
}
}
};
@ -110,8 +159,7 @@ public class Networks {
Vpn;
public static boolean isSystemNetwork(TrafficType trafficType) {
if (Storage.equals(trafficType)
|| Management.equals(trafficType)
if (Storage.equals(trafficType) || Management.equals(trafficType)
|| Control.equals(trafficType)) {
return true;
}
@ -163,11 +211,18 @@ public class Networks {
public <T> URI toUri(T value) {
try {
// assert(this!=Vlan || value.getClass().isAssignableFrom(Integer.class)) :
// assert(this!=Vlan ||
// value.getClass().isAssignableFrom(Integer.class)) :
// do we need to check that value does not contain a scheme
// part?
// "Why are you putting non integer into vlan url";
return new URI(scheme + "://" + value.toString());
if (value.toString().contains(":"))
return new URI(value.toString());
else
return new URI(scheme, value.toString(), null);
} catch (URISyntaxException e) {
throw new CloudRuntimeException("Unable to convert to isolation type URI: " + value);
throw new CloudRuntimeException(
"Unable to convert to isolation type URI: " + value);
}
}
}
@ -176,7 +231,7 @@ public class Networks {
Vlan("vlan"),
VSwitch("vswitch");
private String scheme;
private final String scheme;
private BroadcastScheme(String scheme) {
this.scheme = scheme;

View File

@ -0,0 +1,76 @@
// 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
//
// http://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.cloud.network;
import java.net.URISyntaxException;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import com.cloud.network.Networks.BroadcastDomainType;
/**
* @author dhoogland
*
*/
public class NetworksTest {
@Before
public void setUp() {
}
@Test
public void emptyBroadcastDomainTypeTest() throws URISyntaxException {
BroadcastDomainType type = BroadcastDomainType.getTypeOf("");
Assert.assertEquals(
"an empty uri should mean a broadcasttype of undecided",
BroadcastDomainType.UnDecided, type);
}
@Test
public void vlanBroadcastDomainTypeTest() throws URISyntaxException {
String uri1 = "vlan://1";
String uri2 = "vlan:2";
BroadcastDomainType type1 = BroadcastDomainType.getTypeOf(uri1);
BroadcastDomainType type2 = BroadcastDomainType.getTypeOf(uri2);
String id1 = BroadcastDomainType.getValue(uri1);
String id2 = BroadcastDomainType.getValue(uri2);
Assert.assertEquals("uri1 should be of broadcasttype vlan",
BroadcastDomainType.Vlan, type1);
Assert.assertEquals("uri2 should be of broadcasttype vlan",
BroadcastDomainType.Vlan, type2);
Assert.assertEquals("id1 should be \"1\"", "1", id1);
Assert.assertEquals("id1 should be \"2\"", "2", id2);
}
@Test
public void otherTypesTest() throws URISyntaxException {
String bogeyUri = "lswitch://1";
String uri2 = "mido:2";
BroadcastDomainType type1 = BroadcastDomainType.getTypeOf(bogeyUri);
BroadcastDomainType type2 = BroadcastDomainType.getTypeOf(uri2);
String id1 = BroadcastDomainType.getValue(bogeyUri);
String id2 = BroadcastDomainType.getValue(uri2);
Assert.assertEquals("uri1 should be of broadcasttype vlan",
BroadcastDomainType.Lswitch, type1);
Assert.assertEquals("uri2 should be of broadcasttype vlan",
BroadcastDomainType.Mido, type2);
Assert.assertEquals("id1 should be \"//1\"", "//1", id1);
Assert.assertEquals("id1 should be \"2\"", "2", id2);
}
}