xrootd
XrdJob.hh
Go to the documentation of this file.
1 #ifndef ___XRD_JOB_H___
2 #define ___XRD_JOB_H___
3 /******************************************************************************/
4 /* */
5 /* X r d J o b . h h */
6 /* */
7 /* (c) 2004 by the Board of Trustees of the Leland Stanford, Jr., University */
8 /* Produced by Andrew Hanushevsky for Stanford University under contract */
9 /* DE-AC02-76-SFO0515 with the Department of Energy */
10 /* */
11 /* This file is part of the XRootD software suite. */
12 /* */
13 /* XRootD is free software: you can redistribute it and/or modify it under */
14 /* the terms of the GNU Lesser General Public License as published by the */
15 /* Free Software Foundation, either version 3 of the License, or (at your */
16 /* option) any later version. */
17 /* */
18 /* XRootD is distributed in the hope that it will be useful, but WITHOUT */
19 /* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or */
20 /* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public */
21 /* License for more details. */
22 /* */
23 /* You should have received a copy of the GNU Lesser General Public License */
24 /* along with XRootD in a file called COPYING.LESSER (LGPL license) and file */
25 /* COPYING (GPL license). If not, see <http://www.gnu.org/licenses/>. */
26 /* */
27 /* The copyright holder's institutional names and contributor's names may not */
28 /* be used to endorse or promote products derived from this software without */
29 /* specific prior written permission of the institution or contributor. */
30 /******************************************************************************/
31 
32 #include <stdlib.h>
33 #include <string.h>
34 #include <strings.h>
35 #include <time.h>
36 
37 // The XrdJob class is a super-class that is inherited by any class that needs
38 // to schedule work on behalf of itself. The XrdJob class is optimized for
39 // queue processing since that's where it spends a lot of time. This class
40 // should not be depedent on any other class.
41 
42 class XrdJob
43 {
44 friend class XrdScheduler;
45 public:
46 XrdJob *NextJob; // -> Next job in the queue (zero if last)
47 const char *Comment; // -> Description of work for debugging (static!)
48 
49 virtual void DoIt() = 0;
50 
51  XrdJob(const char *desc="")
52  {Comment = desc; NextJob = 0; SchedTime = 0;}
53 virtual ~XrdJob() {}
54 
55 private:
56 time_t SchedTime; // -> Time job is to be scheduled
57 };
58 #endif
XrdJob * NextJob
Definition: XrdJob.hh:46
XrdJob(const char *desc="")
Definition: XrdJob.hh:51
Definition: XrdScheduler.hh:44
time_t SchedTime
Definition: XrdJob.hh:56
virtual void DoIt()=0
virtual ~XrdJob()
Definition: XrdJob.hh:53
const char * Comment
Definition: XrdJob.hh:47
Definition: XrdJob.hh:42