Search in sources :

Example 1 with ListFeed

use of com.google.gdata.data.spreadsheet.ListFeed in project teiid by teiid.

the class GDataClientLoginAPI method listFeedUpdate.

/**
 * Updates spreadsheet using the listfeed.
 *
 * @param spreadsheetKey  key that identifies spreadsheet
 * @param worksheetID  id that identifies worksheet
 * @param criteria  update criteria
 * @param updateSet  fields that should be updated
 * @param allColumns
 * @return number of updated rows
 */
public UpdateResult listFeedUpdate(String spreadsheetKey, String worksheetID, String criteria, List<UpdateSet> updateSet, List<Column> allColumns) {
    SpreadsheetQuery query = null;
    try {
        // $NON-NLS-1$ //$NON-NLS-2$
        query = new SpreadsheetQuery(factory.getListFeedUrl(spreadsheetKey, worksheetID, "private", "full"));
        if (criteria != null) {
            // $NON-NLS-1$
            query.setStringCustomParameter("sq", criteria);
        }
    } catch (MalformedURLException e) {
        throw new SpreadsheetOperationException("Error getting spreadsheet URL: " + e);
    }
    ListFeed listfeed = (ListFeed) getSpreadsheetFeedQuery(query, ListFeed.class);
    int counter = 0;
    // TEIID-4870 existing string values can get corrupted unless we re-set the entry
    List<Column> stringColumns = new ArrayList<Column>();
    for (Column c : allColumns) {
        if (c.getLabel() != null && c.getDataType() == SpreadsheetColumnType.STRING) {
            stringColumns.add(c);
        // could skip if in the update set
        }
    }
    for (ListEntry row : listfeed.getEntries()) {
        for (int i = 0; i < stringColumns.size(); i++) {
            Column c = stringColumns.get(i);
            String value = row.getCustomElements().getValue(c.getLabel());
            if (value != null && !value.isEmpty()) {
                // $NON-NLS-1$
                row.getCustomElements().setValueLocal(c.getLabel(), "'" + value);
            }
        }
        for (UpdateSet set : updateSet) {
            row.getCustomElements().setValueLocal(set.getColumnID(), set.getValue());
        }
        try {
            row.update();
        } catch (IOException e) {
            LogManager.logWarning(this.getClass().getName(), e, "Error occured when updating spreadsheet row");
            continue;
        } catch (ServiceException e2) {
            LogManager.logWarning(this.getClass().getName(), e2, "Error occured when updating spreadsheet row");
            continue;
        }
        counter++;
    }
    return new UpdateResult(listfeed.getEntries().size(), counter);
}
Also used : MalformedURLException(java.net.MalformedURLException) SpreadsheetQuery(com.google.gdata.client.spreadsheet.SpreadsheetQuery) SpreadsheetOperationException(org.teiid.translator.google.api.SpreadsheetOperationException) ArrayList(java.util.ArrayList) IOException(java.io.IOException) ListFeed(com.google.gdata.data.spreadsheet.ListFeed) ServiceException(com.google.gdata.util.ServiceException) Column(org.teiid.translator.google.api.metadata.Column) UpdateSet(org.teiid.translator.google.api.UpdateSet) UpdateResult(org.teiid.translator.google.api.result.UpdateResult) ListEntry(com.google.gdata.data.spreadsheet.ListEntry)

Example 2 with ListFeed

use of com.google.gdata.data.spreadsheet.ListFeed in project teiid by teiid.

the class TestGoogleDataProtocolAPI method testColumnsWithoutLabel.

@Test
public void testColumnsWithoutLabel() {
    GDataClientLoginAPI api = new GDataClientLoginAPI() {

        protected com.google.gdata.data.BaseFeed<?, ?> getSpreadsheetFeedQuery(com.google.gdata.client.spreadsheet.SpreadsheetQuery squery, java.lang.Class<? extends com.google.gdata.data.BaseFeed<?, ?>> feedClass) {
            ListFeed lf = new ListFeed();
            lf.setEntries(Arrays.asList(new ListEntry()));
            return lf;
        }
    };
    Column c1 = new Column();
    c1.setLabel("valid");
    c1.setDataType(SpreadsheetColumnType.STRING);
    c1.setAlphaName("A");
    Column c2 = new Column();
    c2.setDataType(SpreadsheetColumnType.STRING);
    c2.setAlphaName("B");
    // should succeed without an NPE
    api.listFeedUpdate("x", "y", "", Arrays.asList(new UpdateSet("valid", "value")), Arrays.asList(c1, c2));
}
Also used : GDataClientLoginAPI(org.teiid.resource.adapter.google.gdata.GDataClientLoginAPI) ListFeed(com.google.gdata.data.spreadsheet.ListFeed) Column(org.teiid.translator.google.api.metadata.Column) UpdateSet(org.teiid.translator.google.api.UpdateSet) ListEntry(com.google.gdata.data.spreadsheet.ListEntry) Test(org.junit.Test)

Example 3 with ListFeed

use of com.google.gdata.data.spreadsheet.ListFeed in project teiid by teiid.

the class GDataClientLoginAPI method listFeedDelete.

/**
 * Deletes spreadsheet rows using the listfeed.
 *
 * @param spreadsheetKey  key that identifies spreadsheet
 * @param worksheetID  id that identifies worksheet
 * @param criteria  delete criteria
 * @return number of deleted rows
 */
public UpdateResult listFeedDelete(String spreadsheetKey, String worksheetID, String criteria) {
    SpreadsheetQuery query = null;
    try {
        // $NON-NLS-1$ //$NON-NLS-2$
        query = new SpreadsheetQuery(factory.getListFeedUrl(spreadsheetKey, worksheetID, "private", "full"));
        if (criteria != null) {
            // $NON-NLS-1$
            query.setStringCustomParameter("sq", criteria);
        }
    } catch (MalformedURLException e) {
        throw new SpreadsheetOperationException("Error getting spreadsheet URL: " + e);
    }
    ListFeed listfeed = (ListFeed) getSpreadsheetFeedQuery(query, ListFeed.class);
    int counter = 0;
    for (int i = listfeed.getEntries().size() - 1; i > -1; i--) {
        ListEntry row = listfeed.getEntries().get(i);
        try {
            row.delete();
        } catch (IOException e) {
            LogManager.logWarning(this.getClass().getName(), e, "Error occured when deleting spreadsheet row");
            continue;
        } catch (ServiceException e2) {
            LogManager.logWarning(this.getClass().getName(), e2, "Error occured when deleting spreadsheet row");
            continue;
        }
        counter++;
    }
    return new UpdateResult(listfeed.getEntries().size(), counter);
}
Also used : MalformedURLException(java.net.MalformedURLException) ListFeed(com.google.gdata.data.spreadsheet.ListFeed) ServiceException(com.google.gdata.util.ServiceException) SpreadsheetQuery(com.google.gdata.client.spreadsheet.SpreadsheetQuery) SpreadsheetOperationException(org.teiid.translator.google.api.SpreadsheetOperationException) IOException(java.io.IOException) UpdateResult(org.teiid.translator.google.api.result.UpdateResult) ListEntry(com.google.gdata.data.spreadsheet.ListEntry)

Aggregations

ListEntry (com.google.gdata.data.spreadsheet.ListEntry)3 ListFeed (com.google.gdata.data.spreadsheet.ListFeed)3 SpreadsheetQuery (com.google.gdata.client.spreadsheet.SpreadsheetQuery)2 ServiceException (com.google.gdata.util.ServiceException)2 IOException (java.io.IOException)2 MalformedURLException (java.net.MalformedURLException)2 SpreadsheetOperationException (org.teiid.translator.google.api.SpreadsheetOperationException)2 UpdateSet (org.teiid.translator.google.api.UpdateSet)2 Column (org.teiid.translator.google.api.metadata.Column)2 UpdateResult (org.teiid.translator.google.api.result.UpdateResult)2 ArrayList (java.util.ArrayList)1 Test (org.junit.Test)1 GDataClientLoginAPI (org.teiid.resource.adapter.google.gdata.GDataClientLoginAPI)1