forked from chromium/crashpad
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Get crashpad_client_test and crashpad_handler_test building
Stubs a variety of classes (CrashReportExceptionHandler, ExceptionHandlerServer, HTTPTransport, CrashReportDatabase). Bug: crashpad:196 Change-Id: I4772f90d0d2ad07cc2f3c2ef119e92fde5c7acef Reviewed-on: https://chromium-review.googlesource.com/809940 Reviewed-by: Mark Mentovai <[email protected]> Commit-Queue: Scott Graham <[email protected]>
- Loading branch information
Showing
13 changed files
with
304 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// Copyright 2017 The Crashpad Authors. All rights reserved. | ||
// | ||
// 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. | ||
|
||
#include "client/crash_report_database.h" | ||
|
||
#include "base/logging.h" | ||
|
||
namespace crashpad { | ||
|
||
// static | ||
std::unique_ptr<CrashReportDatabase> CrashReportDatabase::Initialize( | ||
const base::FilePath& path) { | ||
NOTREACHED(); // TODO(scottmg): https://crashpad.chromium.org/bug/196 | ||
return std::unique_ptr<CrashReportDatabase>(); | ||
} | ||
|
||
// static | ||
std::unique_ptr<CrashReportDatabase> | ||
CrashReportDatabase::InitializeWithoutCreating(const base::FilePath& path) { | ||
NOTREACHED(); // TODO(scottmg): https://crashpad.chromium.org/bug/196 | ||
return std::unique_ptr<CrashReportDatabase>(); | ||
} | ||
|
||
} // namespace crashpad |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// Copyright 2017 The Crashpad Authors. All rights reserved. | ||
// | ||
// 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. | ||
|
||
#include "client/crashpad_client.h" | ||
|
||
#include "base/logging.h" | ||
|
||
namespace crashpad { | ||
|
||
CrashpadClient::CrashpadClient() {} | ||
|
||
CrashpadClient::~CrashpadClient() {} | ||
|
||
bool CrashpadClient::StartHandler( | ||
const base::FilePath& handler, | ||
const base::FilePath& database, | ||
const base::FilePath& metrics_dir, | ||
const std::string& url, | ||
const std::map<std::string, std::string>& annotations, | ||
const std::vector<std::string>& arguments, | ||
bool restartable, | ||
bool asynchronous_start) { | ||
NOTREACHED(); // TODO(scottmg): https://crashpad.chromium.org/bug/196 | ||
return false; | ||
} | ||
|
||
} // namespace crashpad |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// Copyright 2017 The Crashpad Authors. All rights reserved. | ||
// | ||
// 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. | ||
|
||
#include "handler/fuchsia/crash_report_exception_handler.h" | ||
|
||
namespace crashpad { | ||
|
||
CrashReportExceptionHandler::CrashReportExceptionHandler( | ||
CrashReportDatabase* database, | ||
CrashReportUploadThread* upload_thread, | ||
const std::map<std::string, std::string>* process_annotations, | ||
const UserStreamDataSources* user_stream_data_sources) {} | ||
|
||
CrashReportExceptionHandler::~CrashReportExceptionHandler() {} | ||
|
||
} // namespace crashpad |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
// Copyright 2017 The Crashpad Authors. All rights reserved. | ||
// | ||
// 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. | ||
|
||
#ifndef CRASHPAD_HANDLER_FUCHSIA_CRASH_REPORT_EXCEPTION_HANDLER_H_ | ||
#define CRASHPAD_HANDLER_FUCHSIA_CRASH_REPORT_EXCEPTION_HANDLER_H_ | ||
|
||
#include <map> | ||
#include <string> | ||
|
||
#include "base/macros.h" | ||
#include "client/crash_report_database.h" | ||
#include "handler/crash_report_upload_thread.h" | ||
#include "handler/user_stream_data_source.h" | ||
|
||
namespace crashpad { | ||
|
||
//! \brief An exception handler that writes crash reports for exception messages | ||
//! to a CrashReportDatabase. This class is not yet implemented. | ||
class CrashReportExceptionHandler { | ||
public: | ||
//! \brief Creates a new object that will store crash reports in \a database. | ||
//! | ||
//! \param[in] database The database to store crash reports in. Weak. | ||
//! \param[in] upload_thread The upload thread to notify when a new crash | ||
//! report is written into \a database. | ||
//! \param[in] process_annotations A map of annotations to insert as | ||
//! process-level annotations into each crash report that is written. Do | ||
//! not confuse this with module-level annotations, which are under the | ||
//! control of the crashing process, and are used to implement Chrome's | ||
//! "crash keys." Process-level annotations are those that are beyond the | ||
//! control of the crashing process, which must reliably be set even if | ||
//! the process crashes before it’s able to establish its own annotations. | ||
//! To interoperate with Breakpad servers, the recommended practice is to | ||
//! specify values for the `"prod"` and `"ver"` keys as process | ||
//! annotations. | ||
//! \param[in] user_stream_data_sources Data sources to be used to extend | ||
//! crash reports. For each crash report that is written, the data sources | ||
//! are called in turn. These data sources may contribute additional | ||
//! minidump streams. `nullptr` if not required. | ||
CrashReportExceptionHandler( | ||
CrashReportDatabase* database, | ||
CrashReportUploadThread* upload_thread, | ||
const std::map<std::string, std::string>* process_annotations, | ||
const UserStreamDataSources* user_stream_data_sources); | ||
|
||
~CrashReportExceptionHandler(); | ||
|
||
private: | ||
DISALLOW_COPY_AND_ASSIGN(CrashReportExceptionHandler); | ||
}; | ||
|
||
} // namespace crashpad | ||
|
||
#endif // CRASHPAD_HANDLER_FUCHSIA_CRASH_REPORT_EXCEPTION_HANDLER_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Copyright 2017 The Crashpad Authors. All rights reserved. | ||
// | ||
// 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. | ||
|
||
#include "handler/fuchsia/exception_handler_server.h" | ||
|
||
#include "base/logging.h" | ||
|
||
namespace crashpad { | ||
|
||
ExceptionHandlerServer::ExceptionHandlerServer() {} | ||
|
||
ExceptionHandlerServer::~ExceptionHandlerServer() {} | ||
|
||
void ExceptionHandlerServer::Run(CrashReportExceptionHandler* handler) { | ||
NOTREACHED(); // TODO(scottmg): https://crashpad.chromium.org/bug/196 | ||
} | ||
|
||
} // namespace crashpad |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// Copyright 2017 The Crashpad Authors. All rights reserved. | ||
// | ||
// 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. | ||
|
||
#ifndef CRASHPAD_HANDLER_FUCHSIA_EXCEPTION_HANDLER_SERVER_H_ | ||
#define CRASHPAD_HANDLER_FUCHSIA_EXCEPTION_HANDLER_SERVER_H_ | ||
|
||
#include "base/macros.h" | ||
|
||
namespace crashpad { | ||
|
||
class CrashReportExceptionHandler; | ||
|
||
//! \brief Runs the main exception-handling server in Crashpad's handler | ||
//! process. This class is not yet implemented. | ||
class ExceptionHandlerServer { | ||
public: | ||
//! \brief Constructs an ExceptionHandlerServer object. | ||
ExceptionHandlerServer(); | ||
~ExceptionHandlerServer(); | ||
|
||
//! \brief Runs the exception-handling server. | ||
//! | ||
//! \param[in] handler The handler to which the exceptions are delegated when | ||
//! they are caught in Run(). Ownership is not transferred. | ||
void Run(CrashReportExceptionHandler* handler); | ||
|
||
private: | ||
DISALLOW_COPY_AND_ASSIGN(ExceptionHandlerServer); | ||
}; | ||
|
||
} // namespace crashpad | ||
|
||
#endif // CRASHPAD_HANDLER_FUCHSIA_EXCEPTION_HANDLER_SERVER_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// Copyright 2017 The Crashpad Authors. All rights reserved. | ||
// | ||
// 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. | ||
|
||
#include "util/net/http_transport.h" | ||
|
||
#include "base/logging.h" | ||
|
||
namespace crashpad { | ||
|
||
std::unique_ptr<HTTPTransport> HTTPTransport::Create() { | ||
NOTREACHED(); // TODO(scottmg): https://crashpad.chromium.org/bug/196 | ||
return std::unique_ptr<HTTPTransport>(); | ||
} | ||
|
||
} // namespace crashpad |