| 1 | /** |
| 2 | * Licensed to jclouds, Inc. (jclouds) under one or more |
| 3 | * contributor license agreements. See the NOTICE file |
| 4 | * distributed with this work for additional information |
| 5 | * regarding copyright ownership. jclouds licenses this file |
| 6 | * to you under the Apache License, Version 2.0 (the |
| 7 | * "License"); you may not use this file except in compliance |
| 8 | * with the License. You may obtain a copy of the License at |
| 9 | * |
| 10 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | * |
| 12 | * Unless required by applicable law or agreed to in writing, |
| 13 | * software distributed under the License is distributed on an |
| 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | * KIND, either express or implied. See the License for the |
| 16 | * specific language governing permissions and limitations |
| 17 | * under the License. |
| 18 | */ |
| 19 | package org.jclouds.servermanager.compute.functions; |
| 20 | |
| 21 | import javax.annotation.Resource; |
| 22 | import javax.inject.Named; |
| 23 | import javax.inject.Singleton; |
| 24 | |
| 25 | import org.jclouds.compute.domain.Image; |
| 26 | import org.jclouds.compute.domain.ImageBuilder; |
| 27 | import org.jclouds.compute.domain.OperatingSystem; |
| 28 | import org.jclouds.compute.domain.OsFamily; |
| 29 | import org.jclouds.compute.reference.ComputeServiceConstants; |
| 30 | import org.jclouds.logging.Logger; |
| 31 | |
| 32 | import com.google.common.base.Function; |
| 33 | |
| 34 | /** |
| 35 | * @author Adrian Cole |
| 36 | */ |
| 37 | @Singleton |
| 38 | public class ServerManagerImageToImage implements Function<org.jclouds.servermanager.Image, Image> { |
| 39 | @Resource |
| 40 | @Named(ComputeServiceConstants.COMPUTE_LOGGER) |
| 41 | protected Logger logger = Logger.NULL; |
| 42 | |
| 43 | @Override |
| 44 | public Image apply(org.jclouds.servermanager.Image from) { |
| 45 | |
| 46 | ImageBuilder builder = new ImageBuilder(); |
| 47 | builder.ids(from.id + ""); |
| 48 | builder.name(from.name); |
| 49 | builder.description(from.name); |
| 50 | |
| 51 | OsFamily family = null; |
| 52 | try { |
| 53 | family = OsFamily.fromValue(from.name); |
| 54 | builder.operatingSystem(new OperatingSystem.Builder().name(from.name).family(family).build()); |
| 55 | } catch (IllegalArgumentException e) { |
| 56 | logger.debug("<< didn't match os(%s)", from); |
| 57 | } |
| 58 | return builder.build(); |
| 59 | } |
| 60 | |
| 61 | } |