Lunchbox  1.16.0
Multi-threaded C++ toolbox library for all application developers creating high-performance multi-threaded programs.
result.h
1 
2 /* Copyright (c) 2013, Stefan.Eilemann@epfl.ch
3  *
4  * This library is free software; you can redistribute it and/or modify it under
5  * the terms of the GNU Lesser General Public License version 2.1 as published
6  * by the Free Software Foundation.
7  *
8  * This library is distributed in the hope that it will be useful, but WITHOUT
9  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
10  * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
11  * details.
12  *
13  * You should have received a copy of the GNU Lesser General Public License
14  * along with this library; if not, write to the Free Software Foundation, Inc.,
15  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16  */
17 
18 #ifndef LUNCHBOX_RESULT_H
19 #define LUNCHBOX_RESULT_H
20 
21 #include <lunchbox/api.h>
22 #include <lunchbox/log.h>
23 #include <lunchbox/types.h>
24 
25 #include <iostream>
26 
27 namespace lunchbox
28 {
30 class Result
31 {
32  typedef void (Result::*bool_t)() const;
33  void bool_true() const {}
34 public:
35  static const int32_t SUCCESS = 0;
36 
38  explicit Result(const int32_t code)
39  : code_(code)
40  {
41  }
42 
44  virtual ~Result() {}
46  operator bool_t() const
47  {
48  return code_ == SUCCESS ? &Result::bool_true : 0;
49  }
50 
52  bool operator!() const { return code_ != SUCCESS; }
54  bool operator==(const int32_t code) const { return code_ == code; }
56  bool operator!=(const int32_t code) const { return code != code_; }
58  int32_t getCode() const { return code_; }
60  virtual std::string getString() const
61  {
62  return code_ == SUCCESS ? "success" : "result";
63  }
64 
65 protected:
66  int32_t code_;
67 };
68 
69 inline std::ostream& operator<<(std::ostream& os, const Result& result)
70 {
71  return os << result.getString() << " (" << result.getCode() << ")";
72 }
73 }
74 #endif // LUNCHBOX_RESULT_H
Defines export visibility macros for library Lunchbox.
Basic type definitions not provided by the operating system.
virtual std::string getString() const
Definition: result.h:60
bool operator==(const int32_t code) const
Definition: result.h:54
A result returns an error code and behaves like a boolean.
Definition: result.h:30
Result(const int32_t code)
Construct a new result.
Definition: result.h:38
Abstraction layer and common utilities for multi-threaded programming.
Definition: algorithm.h:29
std::ostream & operator<<(std::ostream &os, const Array< T > &array)
Pretty-print all members of the array.
Definition: array.h:59
virtual ~Result()
Destruct the result.
Definition: result.h:44
bool operator!=(const int32_t code) const
Definition: result.h:56
int32_t getCode() const
Definition: result.h:58
This file contains logging classes.
bool operator!() const
Definition: result.h:52