blob: 29686b22527fff7852a16acac80b0228f3e11ef2 [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROMECAST_CRASH_CAST_CRASHDUMP_UPLOADER_H_
#define CHROMECAST_CRASH_CAST_CRASHDUMP_UPLOADER_H_
#include <map>
#include <string>
#include "base/macros.h"
namespace google_breakpad {
class LibcurlWrapper;
}
namespace chromecast {
struct CastCrashdumpData {
CastCrashdumpData();
CastCrashdumpData(const CastCrashdumpData& other);
~CastCrashdumpData();
std::string product;
std::string version;
std::string guid;
std::string ptime;
std::string ctime;
std::string email;
std::string comments;
std::string minidump_pathname;
std::string crash_server;
std::string proxy_host;
std::string proxy_userpassword;
};
class CastCrashdumpUploader {
public:
// Does not take ownership of |http_layer|.
CastCrashdumpUploader(const CastCrashdumpData& data,
google_breakpad::LibcurlWrapper* http_layer);
explicit CastCrashdumpUploader(const CastCrashdumpData& data);
~CastCrashdumpUploader();
virtual bool AddAttachment(const std::string& label,
const std::string& filename);
virtual void SetParameter(const std::string& key, const std::string& value);
virtual bool Upload(std::string* response);
private:
bool CheckRequiredParametersArePresent();
google_breakpad::LibcurlWrapper* http_layer_;
CastCrashdumpData data_;
// Holds the following mapping for attachments: <label, filepath>
std::map<std::string, std::string> attachments_;
// Holds the following mapping for HTTP request params: <key, value>
std::map<std::string, std::string> parameters_;
DISALLOW_COPY_AND_ASSIGN(CastCrashdumpUploader);
};
} // namespace chromecast
#endif // CHROMECAST_CRASH_CAST_CRASHDUMP_UPLOADER_H_