blob: 7c520c4877d1951932ac5cdda56e490e60104a12 [file] [log] [blame]
/*
* 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.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 <a
* href="http://docs.amazonwebservices.com/ElasticLoadBalancing/latest/APIReference/API_DescribeLoadBalancers.html"
* >docs</a>
*/
public class DescribeLoadBalancerPoliciesResultHandler extends
ParseSax.HandlerForGeneratedRequestWithResult<Set<Policy>> {
private final PolicyHandler policyHandler;
private StringBuilder currentText = new StringBuilder();
private Builder<Policy> policies = ImmutableSet.<Policy> builder();
private boolean inPolicies;
protected int memberDepth;
@Inject
public DescribeLoadBalancerPoliciesResultHandler(PolicyHandler policyHandler) {
this.policyHandler = policyHandler;
}
/**
* {@inheritDoc}
*/
@Override
public Set<Policy> 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.setLength(0);
}
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);
}
}
}