Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TProofResourcesStatic.h
Go to the documentation of this file.
1// @(#)root/proof:$Id$
2// Author: Paul Nilsson 7/12/2005
3
4/*************************************************************************
5 * Copyright (C) 1995-2005, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#ifndef ROOT_TProofResourcesStatic
13#define ROOT_TProofResourcesStatic
14
15//////////////////////////////////////////////////////////////////////////
16// //
17// TProofResourcesStatic //
18// //
19// Implementation of PROOF static resources. //
20// The purpose of this class is to provide a standard interface to //
21// static config files. It interprets Proof config files (proof.conf) //
22// and sorts the contents into TProofNodeInfo objects. Master info will //
23// be placed in fMaster (of type TProofNodeInfo). Submaster info will //
24// be put in fSubmasterList (a TList of TProofNodeInfo objects), while //
25// workers (and condorworkers) will be placed in fWorkerList (a TList //
26// of TProofNodeInfo objects). //
27// //
28//////////////////////////////////////////////////////////////////////////
29
30#include "TProofResources.h"
31#include "TString.h"
32
33class TList;
34class TProofNodeInfo;
35
36
38
39public:
41
42private:
43 TProofNodeInfo *fMaster; // Master node info
44 TList *fSubmasterList; // Node info list with all submasters
45 TList *fWorkerList; // Node info list with all workers
46 Bool_t fFoundMaster; // kTRUE if config file has master info
47 TString fFileName; // Config file name
48
49 void InitResources();
50 Bool_t ReadConfigFile(const char *confDir, const char *fileName);
51
52 static EInfoType GetInfoType(const TString &word);
53 static void SetOption(TProofNodeInfo *nodeinfo, const TString &option,
54 const TString &value);
56
57public:
59 TProofResourcesStatic(const char *confDir, const char *fileName);
60 ~TProofResourcesStatic() override;
61
62 TProofNodeInfo *GetMaster() override;
63 TList *GetSubmasters() override;
64 TList *GetWorkers() override;
65 TString GetFileName() const { return fFileName; }
66
67 ClassDefOverride(TProofResourcesStatic,0) // Class to handle PROOF static config
68};
69
70#endif
71
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
Option_t Option_t option
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void value
char name[80]
Definition TGX11.cxx:110
A doubly linked list.
Definition TList.h:38
The purpose of this class is to provide a complete node description for masters, submasters and worke...
The purpose of this class is to provide a standard interface to static config files.
TProofNodeInfo * GetMaster() override
Get the master node.
static void SetOption(TProofNodeInfo *nodeinfo, const TString &option, const TString &value)
Static method to set the node info options.
static TProofNodeInfo * CreateNodeInfo(const TString &name)
Fill out the preliminary TProofNodeInfo structure.
TProofResourcesStatic()
This ctor is used in TProofServ::Setup() in combination with GetWorkDir() for a quick scan of the con...
static EInfoType GetInfoType(const TString &word)
Static method to determine the info type.
void InitResources()
Create master node info and submaster/worker lists, and set default values.
TList * GetWorkers() override
Get the list of worker nodes.
~TProofResourcesStatic() override
Destructor.
TList * GetSubmasters() override
Get the list of submaster nodes.
Bool_t ReadConfigFile(const char *confDir, const char *fileName)
Read the PROOF config file and fill the master and worker list.
Basic string class.
Definition TString.h:139