/*
	diagnostic.h

	Diagnostic messages.

	Copyright (C) 2011 Bill Currie <bill@taniwha.org>

	Author: Bill Currie <bill@taniwha.org>
	Date: 2011/01/24

	This program is free software; you can redistribute it and/or
	modify it under the terms of the GNU General Public License
	as published by the Free Software Foundation; either version 2
	of the License, or (at your option) any later version.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

	See the GNU General Public License for more details.

	You should have received a copy of the GNU General Public License
	along with this program; if not, write to:

		Free Software Foundation, Inc.
		59 Temple Place - Suite 330
		Boston, MA  02111-1307, USA

*/

#ifndef __diagnostic_h
#define __diagnostic_h

#include "QF/pr_comp.h"

/**	\defgroup qfcc_diagnostic Diagnostic Messages
	\ingroup qfcc
*/
///@{

typedef void (*diagnostic_hook)(const char *message);
extern diagnostic_hook bug_hook;
extern diagnostic_hook error_hook;
extern diagnostic_hook warning_hook;
extern diagnostic_hook notice_hook;

struct expr_s *_error (struct expr_s *e, const char *file, int line,
					   const char *fmt, ...)
	__attribute__ ((format (printf, 4, 5)));
#define error(e, fmt...) _error(e, __FILE__, __LINE__, fmt)

void _internal_error (struct expr_s *e, const char *file, int line,
					  const char *fmt, ...)
	__attribute__ ((format (printf, 4, 5), noreturn));
#define internal_error(e, fmt...) _internal_error(e, __FILE__, __LINE__, fmt)

struct expr_s *_warning (struct expr_s *e, const char *file, int line,
						 const char *fmt, ...)
	__attribute__ ((format (printf, 4, 5)));
#define warning(e, fmt...) _warning(e, __FILE__, __LINE__, fmt)

struct expr_s *_notice (struct expr_s *e, const char *file, int line,
						const char *fmt, ...)
	__attribute__ ((format (printf, 4, 5)));
#define notice(e, fmt...) _notice(e, __FILE__, __LINE__, fmt)

void _debug (struct expr_s *e, const char *file, int line,
			 const char *fmt, ...)
	__attribute__ ((format (printf, 4, 5)));
#define debug(e, fmt...) _debug(e, __FILE__, __LINE__, fmt)

void _bug (struct expr_s *e, const char *file, int line, const char *fmt, ...)
	__attribute__ ((format (printf, 4, 5)));
#define bug(e, fmt...) _bug(e, __FILE__, __LINE__, fmt)

///@}

#endif//__diagnostic_h