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

com.google.api.client.googleapis.xml.atom.MultiKindFeedParser Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2010 Google Inc.
 *
 * 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.api.client.googleapis.xml.atom;

import com.google.api.client.http.HttpResponse;
import com.google.api.client.util.ClassInfo;
import com.google.api.client.util.FieldInfo;
import com.google.api.client.util.Types;
import com.google.api.client.xml.Xml;
import com.google.api.client.xml.XmlNamespaceDictionary;
import com.google.api.client.xml.atom.AbstractAtomFeedParser;
import com.google.api.client.xml.atom.Atom;

import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;

import java.io.IOException;
import java.io.InputStream;
import java.lang.reflect.Field;
import java.util.HashMap;

/**
 * GData Atom feed pull parser when the entry class can be computed from the kind.
 *
 * @since 1.0
 * @author Yaniv Inbar
 */
public final class MultiKindFeedParser extends AbstractAtomFeedParser {

  private final HashMap> kindToEntryClassMap = new HashMap>();

  /** Sets the entry classes to use when parsing. */
  public void setEntryClasses(Class... entryClasses) {
    int numEntries = entryClasses.length;
    HashMap> kindToEntryClassMap = this.kindToEntryClassMap;
    for (int i = 0; i < numEntries; i++) {
      Class entryClass = entryClasses[i];
      ClassInfo typeInfo = ClassInfo.of(entryClass);
      Field field = typeInfo.getField("@gd:kind");
      if (field == null) {
        throw new IllegalArgumentException("missing @gd:kind field for " + entryClass.getName());
      }
      Object entry = Types.newInstance(entryClass);
      String kind = (String) FieldInfo.getFieldValue(field, entry);
      if (kind == null) {
        throw new IllegalArgumentException(
            "missing value for @gd:kind field in " + entryClass.getName());
      }
      kindToEntryClassMap.put(kind, entryClass);
    }
  }

  @Override
  protected Object parseEntryInternal() throws IOException, XmlPullParserException {
    XmlPullParser parser = this.parser;
    String kind = parser.getAttributeValue(GoogleAtom.GD_NAMESPACE, "kind");
    Class entryClass = this.kindToEntryClassMap.get(kind);
    if (entryClass == null) {
      throw new IllegalArgumentException("unrecognized kind: " + kind);
    }
    Object result = Types.newInstance(entryClass);
    Xml.parseElement(parser, result, namespaceDictionary, null);
    return result;
  }

  /**
   * Parses the given HTTP response using the given feed class and entry classes.
   *
   * @param  feed type
   * @param  entry type
   * @param response HTTP response
   * @param namespaceDictionary XML namespace dictionary
   * @param feedClass feed class
   * @param entryClasses entry class
   * @return Atom multi-kind feed pull parser
   * @throws IOException I/O exception
   * @throws XmlPullParserException XML pull parser exception
   */
  public static  MultiKindFeedParser create(HttpResponse response,
      XmlNamespaceDictionary namespaceDictionary, Class feedClass, Class... entryClasses)
      throws IOException, XmlPullParserException {
    InputStream content = response.getContent();
    try {
      Atom.checkContentType(response.contentType);
      XmlPullParser parser = Xml.createParser();
      parser.setInput(content, null);
      MultiKindFeedParser result = new MultiKindFeedParser();
      result.parser = parser;
      result.inputStream = content;
      result.feedClass = feedClass;
      result.namespaceDictionary = namespaceDictionary;
      result.setEntryClasses(entryClasses);
      return result;
    } finally {
      content.close();
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy