| 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 java.text.DateFormat; |
| 22 | import java.text.ParseException; |
| 23 | import java.util.Date; |
| 24 | |
| 25 | import javax.annotation.Resource; |
| 26 | |
| 27 | import org.jclouds.http.functions.ParseSax; |
| 28 | import org.jclouds.logging.Logger; |
| 29 | import org.jclouds.slicehost.domain.Backup; |
| 30 | import org.xml.sax.SAXException; |
| 31 | |
| 32 | /** |
| 33 | * @author Adrian Cole |
| 34 | */ |
| 35 | public class BackupHandler extends ParseSax.HandlerWithResult<Backup> { |
| 36 | private StringBuilder currentText = new StringBuilder(); |
| 37 | |
| 38 | private int id; |
| 39 | private String name; |
| 40 | private String sliceId; |
| 41 | private Date date; |
| 42 | |
| 43 | private Backup backup; |
| 44 | @Resource |
| 45 | protected Logger logger = Logger.NULL; |
| 46 | |
| 47 | public Backup getResult() { |
| 48 | return backup; |
| 49 | } |
| 50 | |
| 51 | @Override |
| 52 | public void endElement(String uri, String localName, String qName) throws SAXException { |
| 53 | if (qName.equalsIgnoreCase("id")) { |
| 54 | id = Integer.parseInt(currentText.toString().trim()); |
| 55 | } else if (qName.equalsIgnoreCase("name")) { |
| 56 | this.name = currentText.toString().trim(); |
| 57 | } else if (qName.equalsIgnoreCase("slice_id")) { |
| 58 | sliceId = currentText.toString().trim(); |
| 59 | } else if (qName.equalsIgnoreCase("date")) { |
| 60 | try { |
| 61 | date = DateFormat.getInstance().parse(currentText.toString().trim()); |
| 62 | } catch (ParseException e) { |
| 63 | logger.warn(e, "error parsing: %s", currentText.toString().trim()); |
| 64 | } |
| 65 | } else if (qName.equalsIgnoreCase("backup")) { |
| 66 | this.backup = new Backup(id, name, sliceId, date); |
| 67 | this.id = -1; |
| 68 | this.name = null; |
| 69 | this.sliceId = null; |
| 70 | this.date = null; |
| 71 | } |
| 72 | currentText = new StringBuilder(); |
| 73 | } |
| 74 | |
| 75 | public void characters(char ch[], int start, int length) { |
| 76 | currentText.append(ch, start, length); |
| 77 | } |
| 78 | } |