blob: cac851d2822f1168c6fd253d09c99dd4af6e9ccf [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.rds.xml;
import static org.jclouds.util.SaxUtils.currentOrNull;
import static org.jclouds.util.SaxUtils.equalsOrSuffix;
import org.jclouds.collect.IterableWithMarker;
import org.jclouds.collect.IterableWithMarkers;
import org.jclouds.http.functions.ParseSax;
import org.jclouds.rds.domain.SecurityGroup;
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/AmazonRDS/latest/APIReference/API_DescribeDBSecurityGroups.html"
* >docs</a>
*/
public class DescribeDBSecurityGroupsResultHandler extends
ParseSax.HandlerForGeneratedRequestWithResult<IterableWithMarker<SecurityGroup>> {
private final SecurityGroupHandler securityGroupHander;
private StringBuilder currentText = new StringBuilder();
private Builder<SecurityGroup> securityGroups = ImmutableSet.<SecurityGroup> builder();
private boolean inSecurityGroups;
private String marker;
@Inject
public DescribeDBSecurityGroupsResultHandler(SecurityGroupHandler securityGroupHander) {
this.securityGroupHander = securityGroupHander;
}
/**
* {@inheritDoc}
*/
@Override
public IterableWithMarker<SecurityGroup> getResult() {
return IterableWithMarkers.from(securityGroups.build(), marker);
}
/**
* {@inheritDoc}
*/
@Override
public void startElement(String url, String name, String qName, Attributes attributes) throws SAXException {
if (equalsOrSuffix(qName, "DBSecurityGroups")) {
inSecurityGroups = true;
}
if (inSecurityGroups) {
securityGroupHander.startElement(url, name, qName, attributes);
}
}
/**
* {@inheritDoc}
*/
@Override
public void endElement(String uri, String name, String qName) throws SAXException {
if (equalsOrSuffix(qName, "DBSecurityGroups")) {
inSecurityGroups = false;
} else if (equalsOrSuffix(qName, "DBSecurityGroup")) {
securityGroups.add(securityGroupHander.getResult());
} else if (equalsOrSuffix(qName, "Marker")) {
marker = currentOrNull(currentText);
} else if (inSecurityGroups) {
securityGroupHander.endElement(uri, name, qName);
}
currentText.setLength(0);
}
/**
* {@inheritDoc}
*/
@Override
public void characters(char[] ch, int start, int length) {
if (inSecurityGroups) {
securityGroupHander.characters(ch, start, length);
} else {
currentText.append(ch, start, length);
}
}
}