blob: dc2ab19e179ca60fcbe1d4b469cd68ee234b1ed7 [file] [log] [blame]
Chris Masone8fe2c7e2011-06-09 15:51:19 -07001// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef SHILL_ERROR_
6#define SHILL_ERROR_
7
8#include <string>
9
10#include <base/basictypes.h>
11
12namespace DBus {
13class Error;
14} // namespace DBus
15
16namespace shill {
17
18class Error {
19 public:
20 enum Type {
Darin Petkove4c0ace2011-08-24 10:32:46 -070021 kSuccess = 0, // No error.
22 kAlreadyConnected,
Chris Masone8fe2c7e2011-06-09 15:51:19 -070023 kAlreadyExists,
24 kInProgress,
25 kInternalError,
26 kInvalidArguments,
27 kInvalidNetworkName,
28 kInvalidPassphrase,
29 kInvalidProperty,
Darin Petkove4c0ace2011-08-24 10:32:46 -070030 kNoCarrier,
31 kNotConnected,
Chris Masone8fe2c7e2011-06-09 15:51:19 -070032 kNotFound,
Darin Petkove4c0ace2011-08-24 10:32:46 -070033 kNotImplemented,
34 kNotOnHomeNetwork,
35 kNotRegistered,
Chris Masone8fe2c7e2011-06-09 15:51:19 -070036 kNotSupported,
Darin Petkove4c0ace2011-08-24 10:32:46 -070037 kOperationAborted,
38 kOperationTimeout,
39 kPassphraseRequired,
Chris Masone8fe2c7e2011-06-09 15:51:19 -070040 kPermissionDenied,
Chris Masone8fe2c7e2011-06-09 15:51:19 -070041 kNumErrors
42 };
43
Darin Petkove4c0ace2011-08-24 10:32:46 -070044 Error(); // Success by default.
45 explicit Error(Type type); // Uses the default message for |type|.
46 Error(Type type, const std::string &message);
47 ~Error();
Chris Masone8fe2c7e2011-06-09 15:51:19 -070048
Darin Petkove4c0ace2011-08-24 10:32:46 -070049 void Populate(Type type); // Uses the default message for |type|.
50 void Populate(Type type, const std::string &message);
Chris Masone8fe2c7e2011-06-09 15:51:19 -070051
Darin Petkove4c0ace2011-08-24 10:32:46 -070052 // Sets the DBus |error| to this error if it's failure. Leaves |error|
53 // unchanged otherwise.
54 void ToDBusError(::DBus::Error *error) const;
55
56 Type type() const { return type_; }
57 const std::string &message() const { return message_; }
58
59 bool IsSuccess() const { return type_ == kSuccess; }
60 bool IsFailure() const { return !IsSuccess(); }
61
62 static std::string GetName(Type type);
63 static std::string GetDefaultMessage(Type type);
Chris Masone8fe2c7e2011-06-09 15:51:19 -070064
65 private:
Darin Petkove4c0ace2011-08-24 10:32:46 -070066 struct Info {
67 const char *name; // Error type name.
68 const char *message; // Default Error type message.
69 };
70
71 static const Info kInfos[kNumErrors];
72 static const char kInterfaceName[];
73
Chris Masone8fe2c7e2011-06-09 15:51:19 -070074 Type type_;
75 std::string message_;
76
77 DISALLOW_COPY_AND_ASSIGN(Error);
78};
79
80} // namespace shill
81
82#endif // SHILL_ERROR_