| 1 | /** |
| 2 | * |
| 3 | * Copyright (C) 2011 Cloud Conscious, LLC. <info@cloudconscious.com> |
| 4 | * |
| 5 | * ==================================================================== |
| 6 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | * you may not use this file except in compliance with the License. |
| 8 | * 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, software |
| 13 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | * See the License for the specific language governing permissions and |
| 16 | * limitations under the License. |
| 17 | * ==================================================================== |
| 18 | */ |
| 19 | package org.jclouds.slicehost.xml; |
| 20 | |
| 21 | import javax.annotation.Resource; |
| 22 | |
| 23 | import org.jclouds.http.functions.ParseSax; |
| 24 | import org.jclouds.logging.Logger; |
| 25 | import org.jclouds.slicehost.domain.Image; |
| 26 | import org.xml.sax.SAXException; |
| 27 | |
| 28 | /** |
| 29 | * @author Adrian Cole |
| 30 | */ |
| 31 | public class ImageHandler extends ParseSax.HandlerWithResult<Image> { |
| 32 | private StringBuilder currentText = new StringBuilder(); |
| 33 | |
| 34 | private int id; |
| 35 | private String name; |
| 36 | |
| 37 | private Image image; |
| 38 | @Resource |
| 39 | protected Logger logger = Logger.NULL; |
| 40 | |
| 41 | public Image getResult() { |
| 42 | return image; |
| 43 | } |
| 44 | |
| 45 | @Override |
| 46 | public void endElement(String uri, String localName, String qName) throws SAXException { |
| 47 | if (qName.equalsIgnoreCase("id")) { |
| 48 | id = Integer.parseInt(currentText.toString().trim()); |
| 49 | } else if (qName.equalsIgnoreCase("name")) { |
| 50 | this.name = currentText.toString().trim(); |
| 51 | } else if (qName.equalsIgnoreCase("image")) { |
| 52 | this.image = new Image(id, name); |
| 53 | this.id = -1; |
| 54 | this.name = null; |
| 55 | } |
| 56 | currentText = new StringBuilder(); |
| 57 | } |
| 58 | |
| 59 | public void characters(char ch[], int start, int length) { |
| 60 | currentText.append(ch, start, length); |
| 61 | } |
| 62 | } |