]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/status.c
SQLite performance + misc -- see kes20Jul02
[bacula/bacula] / bacula / src / filed / status.c
1 /*
2  *  Bacula File Daemon Status routines
3  *
4  *    Kern Sibbald, August MMI
5  *
6  *   Version $Id$
7  *
8  */
9 /*
10    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
11
12    This program is free software; you can redistribute it and/or
13    modify it under the terms of the GNU General Public License as
14    published by the Free Software Foundation; either version 2 of
15    the License, or (at your option) any later version.
16
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20    General Public License for more details.
21
22    You should have received a copy of the GNU General Public
23    License along with this program; if not, write to the Free
24    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25    MA 02111-1307, USA.
26
27  */
28
29 #include "bacula.h"
30 #include "filed.h"
31
32 extern char my_name[];
33 extern struct s_last_job last_job;
34 extern time_t daemon_start_time;
35
36 /*
37  * General status generator
38  */
39 static void do_status(void sendit(char *msg, int len, void *sarg), void *arg) 
40 {
41    int sec, bps;
42    char *msg, b1[32], b2[32], b3[32];
43    int found, len;
44    JCR *njcr;
45    char dt[MAX_TIME_LENGTH];
46
47    msg = (char *)get_pool_memory(PM_MESSAGE);
48    found = 0;
49    len = Mmsg(&msg, "%s Version: " VERSION " (" DATE ")\n", my_name);
50    sendit(msg, len, arg);
51    bstrftime(dt, sizeof(dt), daemon_start_time);
52    len = Mmsg(&msg, _("Daemon started %s, %d Job%s run.\n"), dt, last_job.NumJobs,
53         last_job.NumJobs == 1 ? "" : "s");
54    sendit(msg, len, arg);
55    if (last_job.NumJobs > 0) {
56       char termstat[30];
57
58       bstrftime(dt, sizeof(dt), last_job.end_time);
59       len = Mmsg(&msg, _("Last Job %s finished at %s\n"), last_job.Job, dt);
60       sendit(msg, len, arg);
61
62       jobstatus_to_ascii(last_job.JobStatus, termstat, sizeof(termstat));
63       len = Mmsg(&msg, _("  Files=%s Bytes=%s Termination Status=%s\n"), 
64            edit_uint64_with_commas(last_job.JobFiles, b1),
65            edit_uint64_with_commas(last_job.JobBytes, b2),
66            termstat);
67       sendit(msg, len, arg);
68    }
69    lock_jcr_chain();
70    for (njcr=NULL; (njcr=get_next_jcr(njcr)); ) {
71       bstrftime(dt, sizeof(dt), njcr->start_time);
72       if (njcr->JobId == 0) {
73          len = Mmsg(&msg, _("Director connected at: %s\n"), dt);
74       } else {
75          len = Mmsg(&msg, _("JobId %d Job %s is running.\n    %s %s started: %s\n"), 
76              job_type_to_str(njcr->JobType), job_level_to_str(njcr->JobLevel),
77              njcr->JobId, njcr->Job, dt);
78       }
79       sendit(msg, len, arg);
80       if (njcr->JobId == 0) {
81          free_locked_jcr(njcr);
82          continue;
83       }
84       sec = time(NULL) - njcr->start_time;
85       if (sec <= 0) {
86          sec = 1;
87       }
88       bps = njcr->JobBytes / sec;
89       len = Mmsg(&msg,  _("    Files=%s Bytes=%s Bytes/sec=%s\n"), 
90            edit_uint64_with_commas(njcr->JobFiles, b1),
91            edit_uint64_with_commas(njcr->JobBytes, b2),
92            edit_uint64_with_commas(bps, b3));
93       sendit(msg, len, arg);
94       len = Mmsg(&msg, _("    Files Examined=%s\n"), 
95            edit_uint64_with_commas(njcr->num_files_examined, b1));
96       sendit(msg, len, arg);
97       if (njcr->JobFiles > 0) {
98          len = Mmsg(&msg, _("    Processing file: %s\n"), njcr->last_fname);
99          sendit(msg, len, arg);
100       }
101
102       found = 1;
103       if (njcr->store_bsock) {
104          len = Mmsg(&msg, "    SDReadSeqNo=%" lld " fd=%d\n",
105              njcr->store_bsock->read_seqno, njcr->store_bsock->fd);
106          sendit(msg, len, arg);
107       } else {
108          len = Mmsg(&msg, _("    SDSocket closed.\n"));
109          sendit(msg, len, arg);
110       }
111       free_locked_jcr(njcr);
112    }
113    unlock_jcr_chain();
114    if (!found) {
115       len = Mmsg(&msg, _("No jobs running.\n"));
116       sendit(msg, len, arg);
117    }
118    free_pool_memory(msg);
119 }
120
121 /*
122  * Send to Director 
123  */
124 static void sendit(char *msg, int len, void *arg)
125 {
126    BSOCK *user = (BSOCK *)arg;
127
128    memcpy(user->msg, msg, len+1);
129    user->msglen = len+1;
130    bnet_send(user);
131 }
132                                    
133 /*
134  * Status command from Director
135  */
136 int status_cmd(JCR *jcr)
137 {
138    BSOCK *user = jcr->dir_bsock;
139
140    bnet_fsend(user, "\n");
141    do_status(sendit, (void *)user);
142    bnet_fsend(user, "====\n");
143
144    bnet_sig(user, BNET_EOF);
145    return 1;
146 }
147
148
149 #ifdef HAVE_CYGWIN
150 #include <windows.h>
151
152 static char buf[100];
153 int bacstat = 0;
154
155 struct s_win32_arg {
156    HWND hwnd;
157    int idlist;
158 };
159
160 /*
161  * Put message in Window List Box
162  */
163 static void win32_sendit(char *msg, int len, void *marg)
164 {
165    struct s_win32_arg *arg = (struct s_win32_arg *)marg;
166
167    if (len > 0) {
168       msg[len-1] = 0;                 /* eliminate newline */
169    }
170    SendDlgItemMessage(arg->hwnd, arg->idlist, LB_ADDSTRING, 0, (LONG)msg);
171    
172 }
173
174 void FillStatusBox(HWND hwnd, int idlist)
175 {
176    struct s_win32_arg arg;
177
178    arg.hwnd = hwnd;
179    arg.idlist = idlist;
180
181    /* Empty box */
182    for ( ; SendDlgItemMessage(hwnd, idlist, LB_DELETESTRING, 0, (LONG)0) > 0; )
183       { }
184    do_status(win32_sendit, (void *)&arg);
185 }
186
187 char *bac_status(int stat)
188 {
189    JCR *njcr;
190    char *termstat = _("Bacula Idle");
191
192    bacstat = 0;
193    if (last_job.NumJobs > 0) {
194       switch (last_job.JobStatus) {
195         case JS_ErrorTerminated:
196             bacstat = -1;
197             termstat = _("Last Job Erred");
198             break;
199         default:
200             break;
201       }
202    }
203    lock_jcr_chain();
204    for (njcr=NULL; (njcr=get_next_jcr(njcr)); ) {
205       if (njcr->JobId != 0) {
206          bacstat = 1;
207          termstat = _("Bacula Running");
208          free_locked_jcr(njcr);
209          break;
210       }
211       free_locked_jcr(njcr);
212    }
213    unlock_jcr_chain();
214    strcpy(buf, termstat);
215    return buf;
216 }
217
218 #endif /* HAVE_CYGWIN */