
org.jclouds.elb.xml.DescribeLoadBalancerPoliciesResultHandler Maven / Gradle / Ivy
/**
* Licensed to jclouds, Inc. (jclouds) under one or more
* contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. jclouds 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.elb.xml;
import static org.jclouds.util.SaxUtils.equalsOrSuffix;
import java.util.Set;
import org.jclouds.elb.domain.Policy;
import org.jclouds.http.functions.ParseSax;
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.ImmutableSet.Builder;
import com.google.inject.Inject;
/**
* @see docs
*
* @author Adrian Cole
*/
public class DescribeLoadBalancerPoliciesResultHandler extends
ParseSax.HandlerForGeneratedRequestWithResult> {
private final PolicyHandler policyHandler;
private StringBuilder currentText = new StringBuilder();
private Builder policies = ImmutableSet. builder();
private boolean inPolicies;
protected int memberDepth;
@Inject
public DescribeLoadBalancerPoliciesResultHandler(PolicyHandler policyHandler) {
this.policyHandler = policyHandler;
}
/**
* {@inheritDoc}
*/
@Override
public Set getResult() {
return policies.build();
}
/**
* {@inheritDoc}
*/
@Override
public void startElement(String url, String name, String qName, Attributes attributes) throws SAXException {
if (equalsOrSuffix(qName, "member")) {
memberDepth++;
} else if (equalsOrSuffix(qName, "PolicyDescriptions")) {
inPolicies = true;
}
if (inPolicies) {
policyHandler.startElement(url, name, qName, attributes);
}
}
/**
* {@inheritDoc}
*/
@Override
public void endElement(String uri, String name, String qName) throws SAXException {
if (equalsOrSuffix(qName, "member")) {
endMember(uri, name, qName);
memberDepth--;
} else if (equalsOrSuffix(qName, "PolicyDescriptions")) {
inPolicies = false;
} else if (inPolicies) {
policyHandler.endElement(uri, name, qName);
}
currentText = new StringBuilder();
}
protected void endMember(String uri, String name, String qName) throws SAXException {
if (inPolicies) {
if (memberDepth == 1)
policies.add(policyHandler.getResult());
else
policyHandler.endElement(uri, name, qName);
}
}
/**
* {@inheritDoc}
*/
@Override
public void characters(char ch[], int start, int length) {
if (inPolicies) {
policyHandler.characters(ch, start, length);
} else {
currentText.append(ch, start, length);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy