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

com.google.cloud.tools.opensource.classpath.ExclusionFileHandler Maven / Gradle / Ivy

There is a newer version: 1.5.13
Show newest version
/*
 * Copyright 2020 Google LLC.
 *
 * Licensed 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 com.google.cloud.tools.opensource.classpath;

import com.google.common.collect.ImmutableList;
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;

/**
 * Handler for Linkage Checker exclusion XML files.
 *
 * 

An instance of this class can process one document and cannot be reused for other documents. */ class ExclusionFileHandler extends DefaultHandler { private ImmutableList.Builder matchers; /** LinkageError element that this handler is currently processing. */ private LinkageErrorMatcher linkageErrorMatcher; /** Source or Target element that this handler is currently processing. */ private LinkageProblemMatcher linkageProblemMatcher; ImmutableList getMatchers() { return matchers.build(); } @Override public void startDocument() { if (matchers != null) { throw new IllegalStateException("This handler started reading document already"); } matchers = ImmutableList.builder(); } @Override public void startElement( String namespaceUri, String localName, String qualifiedName, Attributes attributes) throws SAXException { if (!namespaceUri.isEmpty()) { throw new SAXException( "unrecognized element: " + qualifiedName + " in namespace " + namespaceUri); } switch (localName) { case "LinkageCheckerFilter": break; case "LinkageError": linkageErrorMatcher = new LinkageErrorMatcher(); matchers.add(linkageErrorMatcher); break; case "Source": SourceMatcher sourceMatcher = new SourceMatcher(); linkageErrorMatcher.setSourceMatcher(sourceMatcher); linkageProblemMatcher = sourceMatcher; break; case "Target": TargetMatcher targetMatcher = new TargetMatcher(); linkageErrorMatcher.setTargetMatcher(targetMatcher); linkageProblemMatcher = targetMatcher; break; case "Package": linkageProblemMatcher.addChild(new PackageMatcher(attributes.getValue("name"))); break; case "Class": String classNameOnClass = attributes.getValue("name"); linkageProblemMatcher.addChild(new ClassMatcher(classNameOnClass)); break; case "Method": String classNameOnMethod = attributes.getValue("className"); MethodMatcher methodMatcher = new MethodMatcher(classNameOnMethod, attributes.getValue("name")); linkageProblemMatcher.addChild(methodMatcher); break; case "Field": String classNameOnField = attributes.getValue("className"); FieldMatcher fieldMatcher = new FieldMatcher(classNameOnField, attributes.getValue("name")); linkageProblemMatcher.addChild(fieldMatcher); break; default: // Not invalidating unknown tags here. Relax NG schema is responsible for the validation. break; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy