~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/libs/uti/sge_error_class.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __SGE_ERROR_CLASS_H
 
2
#define __SGE_ERROR_CLASS_H
 
3
/*___INFO__MARK_BEGIN__*/
 
4
/*************************************************************************
 
5
 * 
 
6
 *  The Contents of this file are made available subject to the terms of
 
7
 *  the Sun Industry Standards Source License Version 1.2
 
8
 * 
 
9
 *  Sun Microsystems Inc., March, 2001
 
10
 * 
 
11
 * 
 
12
 *  Sun Industry Standards Source License Version 1.2
 
13
 *  =================================================
 
14
 *  The contents of this file are subject to the Sun Industry Standards
 
15
 *  Source License Version 1.2 (the "License"); You may not use this file
 
16
 *  except in compliance with the License. You may obtain a copy of the
 
17
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
18
 * 
 
19
 *  Software provided under this License is provided on an "AS IS" basis,
 
20
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
21
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
22
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
23
 *  See the License for the specific provisions governing your rights and
 
24
 *  obligations concerning the Software.
 
25
 * 
 
26
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
27
 * 
 
28
 *   Copyright: 2001 by Sun Microsystems, Inc.
 
29
 * 
 
30
 *   All Rights Reserved.
 
31
 * 
 
32
 ************************************************************************/
 
33
/*___INFO__MARK_END__*/
 
34
 
 
35
#include "basis_types.h"
 
36
#include "cull.h"
 
37
 
 
38
typedef struct sge_error_class_str sge_error_class_t;
 
39
 
 
40
 
 
41
typedef struct sge_error_iterator_class_str sge_error_iterator_class_t;
 
42
 
 
43
struct sge_error_iterator_class_str {
 
44
   void *sge_error_iterator_handle;
 
45
   
 
46
   const char* (*get_message)(sge_error_iterator_class_t *thiz);
 
47
   u_long32    (*get_quality)(sge_error_iterator_class_t *thiz);
 
48
   u_long32    (*get_type)(sge_error_iterator_class_t *thiz);
 
49
   bool        (*next)(sge_error_iterator_class_t *thiz);
 
50
};
 
51
 
 
52
struct sge_error_class_str {
 
53
   void *sge_error_handle;
 
54
   void (*error)(sge_error_class_t* thiz, int error_type, int error_quality, const char*fmt, ...);
 
55
   void (*verror)(sge_error_class_t* thiz, int error_type, int error_quality, const char*fmt, va_list ap);
 
56
   
 
57
   void (*clear)(sge_error_class_t *thiz);
 
58
   
 
59
   bool (*has_error)(sge_error_class_t *thiz);
 
60
   bool (*has_quality)(sge_error_class_t *thiz, int error_quality);
 
61
   bool (*has_type)(sge_error_class_t *thiz, int error_type);   
 
62
   sge_error_iterator_class_t* (*iterator)(sge_error_class_t *thiz);
 
63
};
 
64
 
 
65
 
 
66
sge_error_class_t* sge_error_class_create(void);
 
67
void sge_error_class_destroy(sge_error_class_t **error_handler);
 
68
void sge_error_iterator_class_destroy(sge_error_iterator_class_t** emc);
 
69
 
 
70
 
 
71
void showError(sge_error_class_t *eh);
 
72
void sge_error_to_answer_list(sge_error_class_t *eh, lList **alpp, bool clear_errors);
 
73
void sge_error_to_dstring(sge_error_class_t *eh, dstring *ds);
 
74
 
 
75
#endif /* __SGE_ERROR_CLASS_H */
 
76
 
 
77