2013-12-15 18:30:16 -05:00
|
|
|
/*----------------------------------------------------------------------------*/
|
2015-06-25 15:07:55 -04:00
|
|
|
/* Copyright (c) FIRST 2008. All Rights Reserved.
|
|
|
|
|
*/
|
2013-12-15 18:30:16 -05:00
|
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
|
|
|
/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
2014-05-02 17:54:01 -04:00
|
|
|
#pragma once
|
2013-12-15 18:30:16 -05:00
|
|
|
|
|
|
|
|
#include "Base.h"
|
|
|
|
|
#include <string>
|
2014-08-08 17:05:49 -04:00
|
|
|
#include <stdint.h>
|
2013-12-15 18:30:16 -05:00
|
|
|
|
|
|
|
|
// Forward declarations
|
|
|
|
|
class ErrorBase;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Error object represents a library error.
|
|
|
|
|
*/
|
2015-06-25 15:07:55 -04:00
|
|
|
class Error {
|
|
|
|
|
public:
|
|
|
|
|
typedef int32_t Code;
|
2013-12-15 18:30:16 -05:00
|
|
|
|
2015-06-25 15:07:55 -04:00
|
|
|
Error();
|
|
|
|
|
~Error();
|
|
|
|
|
void Clone(Error& error);
|
|
|
|
|
Code GetCode() const;
|
|
|
|
|
const char* GetMessage() const;
|
|
|
|
|
const char* GetFilename() const;
|
|
|
|
|
const char* GetFunction() const;
|
|
|
|
|
uint32_t GetLineNumber() const;
|
|
|
|
|
const ErrorBase* GetOriginatingObject() const;
|
|
|
|
|
double GetTimestamp() const;
|
|
|
|
|
void Clear();
|
|
|
|
|
void Set(Code code, const char* contextMessage, const char* filename,
|
|
|
|
|
const char* function, uint32_t lineNumber,
|
|
|
|
|
const ErrorBase* originatingObject);
|
|
|
|
|
static void EnableSuspendOnError(bool enable) {
|
|
|
|
|
m_suspendOnErrorEnabled = enable;
|
|
|
|
|
}
|
2013-12-15 18:30:16 -05:00
|
|
|
|
2015-06-25 15:07:55 -04:00
|
|
|
private:
|
|
|
|
|
void Report();
|
2013-12-15 18:30:16 -05:00
|
|
|
|
2015-06-25 15:07:55 -04:00
|
|
|
Code m_code;
|
|
|
|
|
std::string m_message;
|
|
|
|
|
std::string m_filename;
|
|
|
|
|
std::string m_function;
|
|
|
|
|
uint32_t m_lineNumber;
|
|
|
|
|
const ErrorBase* m_originatingObject;
|
|
|
|
|
double m_timestamp;
|
2013-12-15 18:30:16 -05:00
|
|
|
|
2015-06-25 15:07:55 -04:00
|
|
|
static bool m_suspendOnErrorEnabled;
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(Error);
|
2013-12-15 18:30:16 -05:00
|
|
|
};
|