/usr/include/kml/convenience/google_spreadsheets.h is in libkml-dev 1.3.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | // Copyright 2009, Google Inc. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// 3. Neither the name of Google Inc. nor the names of its contributors may be
// used to endorse or promote products derived from this software without
// specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
// EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// This file contains the declaration of the GoogleSpreadsheets class.
// Very distantly related to:
// http://code.google.com/p/gdata-cpp-util/source/browse/trunk/gdata/client/doc_list_service.h
// TODO: this interface and implemenation are experimental, expect additions
// and changes.
#ifndef KML_CONVENIENCE_GOOGLE_SPREADSHEETS_H_
#define KML_CONVENIENCE_GOOGLE_SPREADSHEETS_H_
#include "boost/scoped_ptr.hpp"
#include "kml/dom.h"
namespace kmlconvenience {
class HttpClient;
// This class provides an API to the Google Spreadsheets API.
// See the Google Spreadsheets API Protocol guide:
// http://code.google.com/apis/spreadsheets/data/3.0/developers_guide_protocol.html
// Overall usage:
// class YourHttpClient : public kmlconvenience::HttpClient {
// public:
// virtual bool SendRequest(...) const {
// ...your network I/O code goes here...
// };
// };
// YourHttpClient* your_http_client = new YourHttpClient;
// your_http_client->Login("user@gmail.com", "users-password");
// GoogleSpreadsheets* maps_data = GoogleSpreadsheets::Create(&your_http_client);
// string spreadsheets_feed;
// maps_data->GetMetaFeed(&spreadsheets_feed);
// kmldom::ElementPtr root = kmldom::ParseAtom(spreadsheets_feed);
// kmlconvenience::AtomUtil... for common Atom inspection.
class GoogleSpreadsheets {
public:
// Create a GoogleSpreadsheets object. The HttpClient must already be logged
// in. See http_client.h for more information about authentication.
// The HttpClient is used for all network communication from inside this
// GoogleSpreadsheets instance. The GoogleSpreadsheets object
// takes ownership of the HttpClient and destroys it when
// the GoogleSpreadsheets object is destroyed.
static GoogleSpreadsheets* Create(HttpClient* http_client);
~GoogleSpreadsheets();
static const char* get_service_name();
static const char* get_metafeed_uri();
const string& get_scope() const;
// This returns the "meta feed" for the authenticated user. The result is an
// Atom <feed> containing an <entry> for each of the user's spreadsheets. See:
// http://code.google.com/apis/spreadsheets/data/3.0/developers_guide_protocol.html#ListingSpreadsheets
bool GetMetaFeedXml(string* atom_feed) const;
// This calls GetMetaFeedXml and returns the parsed result.
kmldom::AtomFeedPtr GetMetaFeed() const;
// This downloads the Google Spreadsheet described by the entry in the
// format requested, "csv" for example. For the full list see:
// http://code.google.com/apis/documents/docs/3.0/developers_guide_protocol.html#DownloadingSpreadsheets
bool DownloadSpreadsheet(const kmldom::AtomEntryPtr& entry,
const string& format, string* spreadsheet_data);
private:
// Use static Create().
GoogleSpreadsheets();
boost::scoped_ptr<HttpClient> http_client_;
const string scope_;
};
} // end namespace kmlconvenience
#endif // KML_CONVENIENCE_GOOGLE_SPREADSHEETS_H_
|