1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/crashreporter/google-breakpad/src/common/linux/google_crashdump_uploader.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,100 @@ 1.4 +// Copyright (c) 2009, Google Inc. 1.5 +// All rights reserved. 1.6 +// 1.7 +// Redistribution and use in source and binary forms, with or without 1.8 +// modification, are permitted provided that the following conditions are 1.9 +// met: 1.10 +// 1.11 +// * Redistributions of source code must retain the above copyright 1.12 +// notice, this list of conditions and the following disclaimer. 1.13 +// * Redistributions in binary form must reproduce the above 1.14 +// copyright notice, this list of conditions and the following disclaimer 1.15 +// in the documentation and/or other materials provided with the 1.16 +// distribution. 1.17 +// * Neither the name of Google Inc. nor the names of its 1.18 +// contributors may be used to endorse or promote products derived from 1.19 +// this software without specific prior written permission. 1.20 +// 1.21 +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 1.22 +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 1.23 +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 1.24 +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 1.25 +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 1.26 +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 1.27 +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 1.28 +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 1.29 +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 1.30 +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 1.31 +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 1.32 + 1.33 + 1.34 +#include <string> 1.35 +#include <map> 1.36 + 1.37 +#include "common/using_std_string.h" 1.38 + 1.39 +namespace google_breakpad { 1.40 + 1.41 +class LibcurlWrapper; 1.42 + 1.43 +class GoogleCrashdumpUploader { 1.44 + public: 1.45 + GoogleCrashdumpUploader(const string& product, 1.46 + const string& version, 1.47 + const string& guid, 1.48 + const string& ptime, 1.49 + const string& ctime, 1.50 + const string& email, 1.51 + const string& comments, 1.52 + const string& minidump_pathname, 1.53 + const string& crash_server, 1.54 + const string& proxy_host, 1.55 + const string& proxy_userpassword); 1.56 + 1.57 + GoogleCrashdumpUploader(const string& product, 1.58 + const string& version, 1.59 + const string& guid, 1.60 + const string& ptime, 1.61 + const string& ctime, 1.62 + const string& email, 1.63 + const string& comments, 1.64 + const string& minidump_pathname, 1.65 + const string& crash_server, 1.66 + const string& proxy_host, 1.67 + const string& proxy_userpassword, 1.68 + LibcurlWrapper* http_layer); 1.69 + 1.70 + void Init(const string& product, 1.71 + const string& version, 1.72 + const string& guid, 1.73 + const string& ptime, 1.74 + const string& ctime, 1.75 + const string& email, 1.76 + const string& comments, 1.77 + const string& minidump_pathname, 1.78 + const string& crash_server, 1.79 + const string& proxy_host, 1.80 + const string& proxy_userpassword, 1.81 + LibcurlWrapper* http_layer); 1.82 + bool Upload(); 1.83 + 1.84 + private: 1.85 + bool CheckRequiredParametersArePresent(); 1.86 + 1.87 + LibcurlWrapper* http_layer_; 1.88 + string product_; 1.89 + string version_; 1.90 + string guid_; 1.91 + string ptime_; 1.92 + string ctime_; 1.93 + string email_; 1.94 + string comments_; 1.95 + string minidump_pathname_; 1.96 + 1.97 + string crash_server_; 1.98 + string proxy_host_; 1.99 + string proxy_userpassword_; 1.100 + 1.101 + std::map<string, string> parameters_; 1.102 +}; 1.103 +}