/*
* The MIT License
*
* Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributors
*
* 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 hudson.plugins.ec2.util;
import com.amazonaws.services.ec2.model.BlockDeviceMapping;
import com.amazonaws.services.ec2.model.EbsBlockDevice;
import org.apache.commons.lang.StringUtils;
import java.util.ArrayList;
import java.util.List;
public class DeviceMappingParser {
private DeviceMappingParser() {
}
public static List<BlockDeviceMapping> parse(String customDeviceMapping) {
List<BlockDeviceMapping> deviceMappings = new ArrayList<BlockDeviceMapping>();
for (String mapping : customDeviceMapping.split(",")) {
String[] mappingPair = mapping.split("=");
String device = mappingPair[0];
String blockDevice = mappingPair[1];
BlockDeviceMapping deviceMapping = new BlockDeviceMapping().withDeviceName(device);
if (blockDevice.equals("none")) {
deviceMapping.setNoDevice("none");
} else if (blockDevice.startsWith("ephemeral")) {
deviceMapping.setVirtualName(blockDevice);
} else {
deviceMapping.setEbs(parseEbs(blockDevice));
}
deviceMappings.add(deviceMapping);
}
return deviceMappings;
}
// [<snapshot-id>]:[<size>]:[<delete-on-termination>]:[<type>]:[<iops>]:[encrypted]
private static EbsBlockDevice parseEbs(String blockDevice) {
String[] parts = blockDevice.split(":");
EbsBlockDevice ebs = new EbsBlockDevice();
if (StringUtils.isNotBlank(getOrEmpty(parts, 0))) {
ebs.setSnapshotId(parts[0]);
}
if (StringUtils.isNotBlank(getOrEmpty(parts, 1))) {
ebs.setVolumeSize(Integer.valueOf(parts[1]));
}
if (StringUtils.isNotBlank(getOrEmpty(parts, 2))) {
ebs.setDeleteOnTermination(Boolean.valueOf(parts[2]));
}
if (StringUtils.isNotBlank(getOrEmpty(parts, 3))) {
ebs.setVolumeType(parts[3]);
}
if (StringUtils.isNotBlank(getOrEmpty(parts, 4))) {
ebs.setIops(Integer.valueOf(parts[4]));
}
if (StringUtils.isNotBlank(getOrEmpty(parts, 5))) {
ebs.setEncrypted(parts[5].equals("encrypted"));
}
return ebs;
}
private static String getOrEmpty(String[] arr, int idx) {
if (idx < arr.length) {
return arr[idx];
} else {
return "";
}
}
}