All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jclouds.azureblob.xml.AccountNameEnumerationResultsHandler Maven / Gradle / Ivy

The newest version!
/*
 * 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 org.jclouds.azureblob.xml;

import static shaded.com.google.common.base.Throwables.propagate;

import java.net.URI;
import java.net.URISyntaxException;
import java.util.Date;
import java.util.Map;
import java.util.SortedSet;

import javax.inject.Inject;

import org.jclouds.azure.storage.domain.BoundedSet;
import org.jclouds.azure.storage.domain.internal.BoundedHashSet;
import org.jclouds.azureblob.domain.ContainerProperties;
import org.jclouds.azureblob.domain.PublicAccess;
import org.jclouds.azureblob.domain.internal.ContainerPropertiesImpl;
import org.jclouds.date.DateService;
import org.jclouds.http.functions.ParseSax;
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;

import shaded.com.google.common.collect.Maps;
import shaded.com.google.common.collect.Sets;

/**
 * Parses the following XML document:
 * 

* EnumerationResults AccountName="http://myaccount.blob.core.windows.net" * * @see */ public class AccountNameEnumerationResultsHandler extends ParseSax.HandlerWithResult> { private SortedSet containerMetadata = Sets.newTreeSet(); private String prefix; private String marker; private int maxResults; private String nextMarker; private String currentName; private Date currentLastModified; private String currentETag; private PublicAccess currentPublicAccess = PublicAccess.PRIVATE; private boolean inMetadata; private Map currentMetadata = Maps.newHashMap(); private StringBuilder currentText = new StringBuilder(); private final DateService dateParser; private URI accountUrl; @Inject public AccountNameEnumerationResultsHandler(DateService dateParser) { this.dateParser = dateParser; } @Override public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException { if (qName.equals("Container")) { inMetadata = false; } else if (qName.equals("Metadata")) { inMetadata = true; } else if (qName.equals("EnumerationResults")) { accountUrl = URI.create(attributes.getValue("ServiceEndpoint").trim()); } } public BoundedSet getResult() { return new BoundedHashSet(containerMetadata, accountUrl, prefix, marker, maxResults, nextMarker); } public void endElement(String uri, String name, String qName) { if (inMetadata && !qName.equals("Metadata")) { currentMetadata.put(qName, currentText.toString().trim()); } else if (qName.equals("Metadata")) { inMetadata = false; } else if (qName.equals("MaxResults")) { maxResults = Integer.parseInt(currentText.toString().trim()); } else if (qName.equals("Marker")) { marker = currentText.toString().trim(); marker = (marker.equals("")) ? null : marker; } else if (qName.equals("Prefix")) { prefix = currentText.toString().trim(); prefix = (prefix.equals("")) ? null : prefix; } else if (qName.equals("NextMarker")) { nextMarker = currentText.toString().trim(); nextMarker = (nextMarker.equals("")) ? null : nextMarker; } else if (qName.equals("Container")) { URI currentUrl; try { currentUrl = new URI(accountUrl.getScheme(), accountUrl.getHost(), "/" + currentName, null); } catch (URISyntaxException use) { throw propagate(use); } containerMetadata.add(new ContainerPropertiesImpl(currentUrl, currentLastModified, currentETag, currentMetadata, currentPublicAccess)); currentName = null; currentLastModified = null; currentETag = null; currentPublicAccess = PublicAccess.PRIVATE; currentMetadata = Maps.newHashMap(); } else if (qName.equals("Name")) { currentName = currentText.toString().trim(); } else if (qName.equals("Last-Modified")) { currentLastModified = dateParser.rfc822DateParse(currentText.toString().trim()); } else if (qName.equals("Etag")) { currentETag = currentText.toString().trim(); } else if (qName.equals("PublicAccess")) { currentPublicAccess = PublicAccess.fromString(currentText.toString().trim()); } currentText.setLength(0); } public void characters(char[] ch, int start, int length) { currentText.append(ch, start, length); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy