| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef SYNC_API_SYNC_ERROR_H_ | 5 #ifndef SYNC_API_SYNC_ERROR_H_ |
| 6 #define SYNC_API_SYNC_ERROR_H_ | 6 #define SYNC_API_SYNC_ERROR_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <iosfwd> | 9 #include <iosfwd> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 class SyncError { | 26 class SyncError { |
| 27 public: | 27 public: |
| 28 // Default constructor refers to "no error", and IsSet() will return false. | 28 // Default constructor refers to "no error", and IsSet() will return false. |
| 29 SyncError(); | 29 SyncError(); |
| 30 | 30 |
| 31 // Create a new Sync error triggered by datatype |type| with debug message | 31 // Create a new Sync error triggered by datatype |type| with debug message |
| 32 // |message| from the specified location. IsSet() will return true. | 32 // |message| from the specified location. IsSet() will return true. |
| 33 // Will print the new error to LOG(ERROR). | 33 // Will print the new error to LOG(ERROR). |
| 34 SyncError(const tracked_objects::Location& location, | 34 SyncError(const tracked_objects::Location& location, |
| 35 const std::string& message, | 35 const std::string& message, |
| 36 syncable::ModelType type); | 36 syncer::ModelType type); |
| 37 | 37 |
| 38 // Copy and assign via deep copy. | 38 // Copy and assign via deep copy. |
| 39 SyncError(const SyncError& other); | 39 SyncError(const SyncError& other); |
| 40 SyncError& operator=(const SyncError& other); | 40 SyncError& operator=(const SyncError& other); |
| 41 | 41 |
| 42 ~SyncError(); | 42 ~SyncError(); |
| 43 | 43 |
| 44 // Reset the current error to a new error. May be called irrespective of | 44 // Reset the current error to a new error. May be called irrespective of |
| 45 // whether IsSet() is true. After this is called, IsSet() will return true. | 45 // whether IsSet() is true. After this is called, IsSet() will return true. |
| 46 // Will print the new error to LOG(ERROR). | 46 // Will print the new error to LOG(ERROR). |
| 47 void Reset(const tracked_objects::Location& location, | 47 void Reset(const tracked_objects::Location& location, |
| 48 const std::string& message, | 48 const std::string& message, |
| 49 syncable::ModelType type); | 49 syncer::ModelType type); |
| 50 | 50 |
| 51 // Whether this is a valid error or not. | 51 // Whether this is a valid error or not. |
| 52 bool IsSet() const; | 52 bool IsSet() const; |
| 53 | 53 |
| 54 // These must only be called if IsSet() is true. | 54 // These must only be called if IsSet() is true. |
| 55 const tracked_objects::Location& location() const; | 55 const tracked_objects::Location& location() const; |
| 56 const std::string& message() const; | 56 const std::string& message() const; |
| 57 syncable::ModelType type() const; | 57 syncer::ModelType type() const; |
| 58 | 58 |
| 59 // Returns empty string is IsSet() is false. | 59 // Returns empty string is IsSet() is false. |
| 60 std::string ToString() const; | 60 std::string ToString() const; |
| 61 private: | 61 private: |
| 62 // Print error information to log. | 62 // Print error information to log. |
| 63 void PrintLogError() const; | 63 void PrintLogError() const; |
| 64 | 64 |
| 65 // Make a copy of a SyncError. If other.IsSet() == false, this->IsSet() will | 65 // Make a copy of a SyncError. If other.IsSet() == false, this->IsSet() will |
| 66 // now return false. | 66 // now return false. |
| 67 void Copy(const SyncError& other); | 67 void Copy(const SyncError& other); |
| 68 | 68 |
| 69 // Initialize the local error data with the specified error data. After this | 69 // Initialize the local error data with the specified error data. After this |
| 70 // is called, IsSet() will return true. | 70 // is called, IsSet() will return true. |
| 71 void Init(const tracked_objects::Location& location, | 71 void Init(const tracked_objects::Location& location, |
| 72 const std::string& message, | 72 const std::string& message, |
| 73 syncable::ModelType type); | 73 syncer::ModelType type); |
| 74 | 74 |
| 75 // Reset the error to it's default (unset) values. | 75 // Reset the error to it's default (unset) values. |
| 76 void Clear(); | 76 void Clear(); |
| 77 | 77 |
| 78 // scoped_ptr is necessary because Location objects aren't assignable. | 78 // scoped_ptr is necessary because Location objects aren't assignable. |
| 79 scoped_ptr<tracked_objects::Location> location_; | 79 scoped_ptr<tracked_objects::Location> location_; |
| 80 std::string message_; | 80 std::string message_; |
| 81 syncable::ModelType type_; | 81 syncer::ModelType type_; |
| 82 }; | 82 }; |
| 83 | 83 |
| 84 // gmock printer helper. | 84 // gmock printer helper. |
| 85 void PrintTo(const SyncError& sync_error, std::ostream* os); | 85 void PrintTo(const SyncError& sync_error, std::ostream* os); |
| 86 | 86 |
| 87 } // namespace syncer | 87 } // namespace syncer |
| 88 | 88 |
| 89 #endif // SYNC_API_SYNC_ERROR_H_ | 89 #endif // SYNC_API_SYNC_ERROR_H_ |
| OLD | NEW |