New C++ function: gnucomo_database::new_notification()
[gnucomo.git] / src / include / database.h
1
2 /**************************************************************************
3 **  (c) Copyright 2002, Andromeda Technology & Automation
4 ** This is free software; you can redistribute it and/or modify it under the
5 ** terms of the GNU General Public License, see the file COPYING.
6 ***************************************************************************
7 ** MODULE INFORMATION *
8 ***********************
9 **      FILE NAME      : database.h
10 **      SYSTEM NAME    : 
11 **      VERSION NUMBER : $Revision: 1.4 $
12 **
13 **  DESCRIPTION      :  Classes to provide an abstract layer on the Gnucomo
14 **                      database.
15 **
16 **  EXPORTED OBJECTS : 
17 **  LOCAL    OBJECTS : 
18 **  MODULES  USED    :
19 ***************************************************************************
20 **  ADMINISTRATIVE INFORMATION *
21 ********************************
22 **      ORIGINAL AUTHOR : Arjen Baart - arjen@andromeda.nl
23 **      CREATION DATE   : Sep 10, 2002
24 **      LAST UPDATE     : Jan 17, 2003
25 **      MODIFICATIONS   : 
26 **************************************************************************/
27
28 /*****************************
29    $Log: database.h,v $
30    Revision 1.4  2003-01-18 08:52:18  arjen
31    New C++ function: gnucomo_database::new_notification()
32
33    Revision 1.3  2002/11/09 08:04:27  arjen
34    Added a reference to the GPL
35
36    Revision 1.2  2002/11/04 10:13:36  arjen
37    Use proper namespace for iostream classes
38
39    Revision 1.1  2002/10/05 10:25:49  arjen
40    Creation of gcm_input and a first approach to a web interface
41
42 *****************************/
43
44 /* static const char *RCSID = "$Id: database.h,v 1.4 2003-01-18 08:52:18 arjen Exp $"; */
45
46 #include <libpq++/pgdatabase.h>
47 #include "gnucomo_config.h"
48
49 /*
50 ///////////////////////////////////////////////////////////////////////////
51 //  NAME           : gnucomo_database
52 //  BASECLASS      : configuration
53 //  MEMBERS        :
54 //  OPERATORS      :
55 //  METHODS        : Database - Obtain the database access string
56 //
57 //  DESCRIPTION    : 
58 //
59 //  RELATIONS      :
60 //  SEE ALSO       :
61 //  LAST MODIFIED  : Jan 17, 2003
62 ///////////////////////////////////////////////////////////////////////////
63 */
64
65 class gnucomo_database
66 {
67    gnucomo_config    *cfg;
68    PgDatabase        *db;
69
70 public:
71
72    gnucomo_database()
73    {
74       cfg = 0;
75       db  = 0;
76    }
77
78    gnucomo_database(gnucomo_config *c);  // Use the configuration to connect to the database
79
80    //  Low-level database access functions
81
82    int Query(String qry)
83    {
84       ExecStatusType  result;
85
86       result = db->Exec(qry);
87       if (result == PGRES_TUPLES_OK || result == PGRES_COMMAND_OK)
88       {
89          return db->Tuples();
90       }
91       else
92       {
93          std::cerr << "Database query error: " << db->ErrorMessage() << "\n";
94          return -1;
95       }
96    }
97
98    String Field(int tuple, const char *fieldname)
99    {
100       return String(db->GetValue(tuple, fieldname));
101    }
102
103    //  Return the objectid of the host given its name.
104
105    String find_host(const String hostname);
106
107    //  Create a new notification.
108
109    void new_notification(String objectid, String issue, String remark);
110 };
111