Fix PR10: Gcm_input may loose its input message
[gnucomo.git] / src / lib / database.cpp
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.cpp
10 **      SYSTEM NAME    : Gnucomo - Gnu Computer Monitoring
11 **      VERSION NUMBER : $Revision: 1.13 $
12 **
13 **  DESCRIPTION      :  Implementation of the gnucomo database classes
14 **
15 **  EXPORTED OBJECTS : 
16 **  LOCAL    OBJECTS : 
17 **  MODULES  USED    :
18 ***************************************************************************
19 **  ADMINISTRATIVE INFORMATION *
20 ********************************
21 **      ORIGINAL AUTHOR : Arjen Baart - arjen@andromeda.nl
22 **      CREATION DATE   : Sep 10, 2002
23 **      LAST UPDATE     : Aug 17, 2003
24 **      MODIFICATIONS   : 
25 **************************************************************************/
26
27 /*****************************
28    $Log: database.cpp,v $
29    Revision 1.13  2011-03-24 10:21:47  arjen
30    Adjusted to new version of libpqxx.
31
32    Revision 1.12  2003/12/22 10:28:26  arjen
33    Catch an exception if we can not setup a database transaction.
34
35    Revision 1.11  2003/12/04 10:40:28  arjen
36    Fixed name conflict with 'double log(double)'
37
38    Revision 1.10  2003/12/03 08:23:17  arjen
39    Write messages to the log stream instead of cout.
40
41    Revision 1.9  2003/08/17 11:39:56  arjen
42    Changed the gnucomo_database class to the new PostgreSQL
43    library, libpqxx
44
45    Revision 1.8  2003/07/31 15:44:02  arjen
46    Removed debug output.
47
48    Revision 1.7  2003/02/19 12:07:55  arjen
49    Use the SQL function currval() to obtain the identification number
50    of the most recently created notification.
51
52    Revision 1.6  2003/02/05 09:33:42  arjen
53    gnucomo_database::new_notification() retruns the id number of the
54    newly created notification record.
55
56    Revision 1.5  2003/01/20 07:31:42  arjen
57    Removed some debug output.
58
59    Revision 1.4  2003/01/18 08:52:32  arjen
60    New C++ function: gnucomo_database::new_notification()
61
62    Revision 1.3  2002/11/09 08:04:27  arjen
63    Added a reference to the GPL
64
65    Revision 1.2  2002/11/04 10:13:36  arjen
66    Use proper namespace for iostream classes
67
68    Revision 1.1  2002/10/05 10:25:49  arjen
69    Creation of gcm_input and a first approach to a web interface
70
71 *****************************/
72
73 #include <date.h>
74
75 //#define DEBUG
76
77 #include "database.h"
78
79 extern std::ostream *Log;
80
81 /*=========================================================================
82 **  NAME           : gnucomo_database
83 **  SYNOPSIS       : gnucomo_database(gnucomo_config &c);
84 **  PARAMETERS     : 
85 **  RETURN VALUE   : Database constructor. Establishes a connection with
86 **                   the database server.
87 **
88 **  DESCRIPTION    : 
89 **
90 **  VARS USED      :
91 **  VARS CHANGED   :
92 **  FUNCTIONS USED :
93 **  SEE ALSO       :
94 **  LAST MODIFIED  : Sep 23, 2020
95 **=========================================================================
96 */
97
98 static int gdb_refcount = 0;
99
100 gnucomo_database::gnucomo_database(gnucomo_config *c)
101 {
102    dbconn = 0;
103    dbxact = 0;
104    cfg = c;
105
106    try
107    {
108       dbconn = new pqxx::connection(cfg->Database());
109
110       if (!dbconn->is_open())
111       {
112          std::cerr << "Connection to database failed.\n";
113       }
114       else
115       {
116          // Create the transaction object
117
118          //dbxact = new pqxx::transaction<pqxx::serializable>(*dbconn, "GnuCoMo");
119          dbxact = new pqxx::work(*dbconn, "GnuCoMo");
120          gdb_refcount++;
121       }
122    }
123    catch (std::exception &e)
124    {
125       *Log << "Cannot setup the database transaction: " << e.what() << "\n";
126    }
127 }
128
129 gnucomo_database::gnucomo_database(const gnucomo_database &gdb)
130 {
131    dbconn = gdb.dbconn;
132    dbxact = gdb.dbxact;
133    gdb_refcount++;
134 }
135
136 void gnucomo_database::operator = (const gnucomo_database &gdb)
137 {
138    dbconn = gdb.dbconn;
139    dbxact = gdb.dbxact;
140    gdb_refcount++;
141 }
142
143    //      A destructor must Commit the transaction and
144    //      destroy the transaction before destroying the
145    //      connection.
146    //      The connection can only be destroyed by the last
147    //      object alive.
148
149 gnucomo_database::~gnucomo_database()
150 {
151    if (--gdb_refcount == 0 && dbconn != 0 && dbxact != 0)
152    {
153       dbxact->commit();
154       delete dbxact;
155       dbxact = 0;
156       delete dbconn;
157       dbconn = 0;
158    }
159 }
160
161 /*=========================================================================
162 **  NAME           : find_host
163 **  SYNOPSIS       : String gnucomo_database::find_host(String hostname);
164 **  PARAMETERS     : 
165 **  RETURN VALUE   : Find a hostname in the 'object' table of the gnucomo database
166 **                   and return its object id.
167 **                   Return an empty string as objectid if the hostname is
168 **                   not found.
169 **
170 **  DESCRIPTION    : 
171 **
172 **  VARS USED      :
173 **  VARS CHANGED   :
174 **  FUNCTIONS USED :
175 **  SEE ALSO       :
176 **  LAST MODIFIED  : Aug 15, 2003
177 **=========================================================================
178 */
179
180 String gnucomo_database::find_host(const String hostname)
181 {
182    String objectid("");
183    String check_host("select objectid from object where ");
184
185    check_host += "objectname = '";
186    check_host += hostname;
187    check_host += "'";
188
189    if (Query(check_host) > 0)
190    {
191       objectid = Field(0, "objectid");
192    }
193
194    return objectid;
195 }
196
197 /*
198  *  Create a new notification with an action_user and return the notification id
199  */
200
201 String gnucomo_database::new_notification(String objectid, String issue, String remark)
202 {
203    String qry;
204    UTC    now = Now();
205
206    String insertion;
207    String notif_id("");
208
209    String issueid("");
210
211    *Log << "Creating notification for " << issue << ": " << remark << "\n";
212
213    qry = "select type_of_issueid, suggested_priority from type_of_issue where name='";
214    qry += issue + "'";
215    if (Query(qry) == 1)
216    {
217       issueid = Field(0, "type_of_issueid");
218       insertion = "insert into notification (objectid, type_of_issueid, timestamp, ";
219       insertion += "   statuscode, priority) values ('";
220       insertion += objectid + "', '";
221       insertion += issueid + "', '" + now.format("%Y-%m-%d %T") + "', 'new', '";
222       insertion += Field(0, "suggested_priority") + "')";
223
224       Query(insertion);
225
226       Query("select currval('notification_notificationid_seq')");
227       notif_id = Field(0, "currval");
228
229       if (notif_id != "")
230       {
231          insertion = "insert into action_user (actionid, username, notificationid,";
232          insertion += "    timestamp, statuscode, remarks) values ('1', 'gnucomo', '";
233          insertion += notif_id + "', '" + now.format("%Y-%m-%d %T") + "', 'new', '";
234          insertion += remark + "')";
235
236          Query(insertion);
237       }
238       else
239       {
240          std::cerr << "Error inserting notification.\n";
241       }
242    }
243    else
244    {
245       std::cerr << "DATABASE ERROR: Type of issue " << issue << " not found.\n";
246    }
247
248    return notif_id;
249 }
250