Android Open Source - PicasaUploadSample G Data Xml Client






From Project

Back to project page PicasaUploadSample.

License

The source code is released under:

Apache License

If you think the Android project PicasaUploadSample listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (c) 2011 Google Inc.//from  w w  w. ja  v  a2 s .com
 *
 * 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 org.ktaka.api.services.samples.shared.gdata.xml;

import com.google.api.client.googleapis.xml.atom.AtomPatchRelativeToOriginalContent;
import com.google.api.client.googleapis.xml.atom.GoogleAtom;
import com.google.api.client.http.GenericUrl;
import com.google.api.client.http.HttpRequest;
import com.google.api.client.http.HttpRequestFactory;
import com.google.api.client.http.xml.atom.AtomContent;
import com.google.api.client.xml.XmlNamespaceDictionary;
import com.google.api.client.xml.XmlObjectParser;

import java.io.IOException;

import org.ktaka.api.services.samples.shared.gdata.GDataClient;

/**
 * GData XML client.
 *
 * @author Yaniv Inbar
 */
public abstract class GDataXmlClient extends GDataClient {

  private final XmlNamespaceDictionary namespaceDictionary;

  private boolean partialResponse = true;

  protected GDataXmlClient(String gdataVersion, HttpRequestFactory requestFactory,
      XmlNamespaceDictionary namespaceDictionary) {
    super(gdataVersion, requestFactory);
    this.namespaceDictionary = namespaceDictionary;
  }

  public XmlNamespaceDictionary getNamespaceDictionary() {
    return namespaceDictionary;
  }

  @Override
  protected void prepare(HttpRequest request) throws IOException {
    super.prepare(request);
    request.setParser(new XmlObjectParser(namespaceDictionary));
  }

  public final boolean getPartialResponse() {
    return partialResponse;
  }

  public final void setPartialResponse(boolean partialResponse) {
    this.partialResponse = partialResponse;
  }

  @Override
  protected void prepareUrl(GenericUrl url, Class<?> parseAsType) {
    super.prepareUrl(url, parseAsType);
    if (partialResponse && parseAsType != null) {
      url.put("fields", GoogleAtom.getFieldsFor(parseAsType));
    }
  }

  protected final <T> T executePatchRelativeToOriginal(
      GenericUrl url, T original, T updated, String etag) throws IOException {
    AtomPatchRelativeToOriginalContent content =
        new AtomPatchRelativeToOriginalContent(namespaceDictionary, original, updated);
    @SuppressWarnings("unchecked")
    Class<T> parseAsType = (Class<T>) updated.getClass();
    return executePatchRelativeToOriginal(url, content, parseAsType, etag);
  }

  protected final <T> T executePost(GenericUrl url, boolean isFeed, T content) throws IOException {
    AtomContent atomContent = isFeed ? AtomContent.forFeed(namespaceDictionary, content)
        : AtomContent.forEntry(namespaceDictionary, content);
    @SuppressWarnings("unchecked")
    Class<T> parseAsType = (Class<T>) content.getClass();
    return executePost(url, atomContent, parseAsType);
  }
}




Java Source Code List

org.ktaka.api.services.picasa.PicasaClient.java
org.ktaka.api.services.picasa.PicasaUrl.java
org.ktaka.api.services.picasa.model.AlbumEntry.java
org.ktaka.api.services.picasa.model.AlbumFeed.java
org.ktaka.api.services.picasa.model.Author.java
org.ktaka.api.services.picasa.model.Category.java
org.ktaka.api.services.picasa.model.Entry.java
org.ktaka.api.services.picasa.model.Feed.java
org.ktaka.api.services.picasa.model.GeorssWhere.java
org.ktaka.api.services.picasa.model.GmlPoint.java
org.ktaka.api.services.picasa.model.Link.java
org.ktaka.api.services.picasa.model.MediaContent.java
org.ktaka.api.services.picasa.model.MediaGroup.java
org.ktaka.api.services.picasa.model.PhotoEntry.java
org.ktaka.api.services.picasa.model.TagEntry.java
org.ktaka.api.services.picasa.model.UserFeed.java
org.ktaka.api.services.samples.shared.gdata.GDataClient.java
org.ktaka.api.services.samples.shared.gdata.xml.GDataXmlClient.java
org.ktaka.picasasample.AsyncLoadTasks.java
org.ktaka.picasasample.AsyncUploader.java
org.ktaka.picasasample.CommonAsyncTask.java
org.ktaka.picasasample.PicasaUploadActivity.java
org.ktaka.picasasample.Utils.java