]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/status.c
Fix DATE problem and minor compile stuff
[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-2003 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 " (" BDATE ")\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"), 
76                     njcr->JobId, njcr->Job);
77          sendit(msg, len, arg);
78          len = Mmsg(&msg, _("    %s Job started: %s\n"), 
79                     job_type_to_str(njcr->JobType), dt);
80       }
81       sendit(msg, len, arg);
82       if (njcr->JobId == 0) {
83          free_locked_jcr(njcr);
84          continue;
85       }
86       sec = time(NULL) - njcr->start_time;
87       if (sec <= 0) {
88          sec = 1;
89       }
90       bps = njcr->JobBytes / sec;
91       len = Mmsg(&msg,  _("    Files=%s Bytes=%s Bytes/sec=%s\n"), 
92            edit_uint64_with_commas(njcr->JobFiles, b1),
93            edit_uint64_with_commas(njcr->JobBytes, b2),
94            edit_uint64_with_commas(bps, b3));
95       sendit(msg, len, arg);
96       len = Mmsg(&msg, _("    Files Examined=%s\n"), 
97            edit_uint64_with_commas(njcr->num_files_examined, b1));
98       sendit(msg, len, arg);
99       if (njcr->JobFiles > 0) {
100          P(njcr->mutex);
101          len = Mmsg(&msg, _("    Processing file: %s\n"), njcr->last_fname);
102          V(njcr->mutex);
103          sendit(msg, len, arg);
104       }
105
106       found = 1;
107       if (njcr->store_bsock) {
108          len = Mmsg(&msg, "    SDReadSeqNo=%" lld " fd=%d\n",
109              njcr->store_bsock->read_seqno, njcr->store_bsock->fd);
110          sendit(msg, len, arg);
111       } else {
112          len = Mmsg(&msg, _("    SDSocket closed.\n"));
113          sendit(msg, len, arg);
114       }
115       free_locked_jcr(njcr);
116    }
117    unlock_jcr_chain();
118    if (!found) {
119       len = Mmsg(&msg, _("No jobs running.\n"));
120       sendit(msg, len, arg);
121    }
122    free_pool_memory(msg);
123 }
124
125 /*
126  * Send to Director 
127  */
128 static void sendit(char *msg, int len, void *arg)
129 {
130    BSOCK *user = (BSOCK *)arg;
131
132    memcpy(user->msg, msg, len+1);
133    user->msglen = len+1;
134    bnet_send(user);
135 }
136                                    
137 /*
138  * Status command from Director
139  */
140 int status_cmd(JCR *jcr)
141 {
142    BSOCK *user = jcr->dir_bsock;
143
144    bnet_fsend(user, "\n");
145    do_status(sendit, (void *)user);
146    bnet_fsend(user, "====\n");
147
148    bnet_sig(user, BNET_EOD);
149    return 1;
150 }
151
152
153 #ifdef HAVE_CYGWIN
154 #include <windows.h>
155
156 static char buf[100];
157 int bacstat = 0;
158
159 struct s_win32_arg {
160    HWND hwnd;
161    int idlist;
162 };
163
164 /*
165  * Put message in Window List Box
166  */
167 static void win32_sendit(char *msg, int len, void *marg)
168 {
169    struct s_win32_arg *arg = (struct s_win32_arg *)marg;
170
171    if (len > 0) {
172       msg[len-1] = 0;                 /* eliminate newline */
173    }
174    SendDlgItemMessage(arg->hwnd, arg->idlist, LB_ADDSTRING, 0, (LONG)msg);
175    
176 }
177
178 void FillStatusBox(HWND hwnd, int idlist)
179 {
180    struct s_win32_arg arg;
181
182    arg.hwnd = hwnd;
183    arg.idlist = idlist;
184
185    /* Empty box */
186    for ( ; SendDlgItemMessage(hwnd, idlist, LB_DELETESTRING, 0, (LONG)0) > 0; )
187       { }
188    do_status(win32_sendit, (void *)&arg);
189 }
190
191 char *bac_status(int stat)
192 {
193    JCR *njcr;
194    char *termstat = _("Bacula Idle");
195
196    bacstat = 0;
197    if (last_job.NumJobs > 0) {
198       switch (last_job.JobStatus) {
199         case JS_ErrorTerminated:
200             bacstat = -1;
201             termstat = _("Last Job Erred");
202             break;
203         default:
204             break;
205       }
206    }
207    lock_jcr_chain();
208    for (njcr=NULL; (njcr=get_next_jcr(njcr)); ) {
209       if (njcr->JobId != 0) {
210          bacstat = 1;
211          termstat = _("Bacula Running");
212          free_locked_jcr(njcr);
213          break;
214       }
215       free_locked_jcr(njcr);
216    }
217    unlock_jcr_chain();
218    strcpy(buf, termstat);
219    return buf;
220 }
221
222 #endif /* HAVE_CYGWIN */