GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TGo4ComSetProtections.cxx
Go to the documentation of this file.
1 // $Id: TGo4ComSetProtections.cxx 1491 2015-06-08 14:29:26Z linev $
2 //-----------------------------------------------------------------------
3 // The GSI Online Offline Object Oriented (Go4) Project
4 // Experiment Data Processing at EE department, GSI
5 //-----------------------------------------------------------------------
6 // Copyright (C) 2000- GSI Helmholtzzentrum für Schwerionenforschung GmbH
7 // Planckstr. 1, 64291 Darmstadt, Germany
8 // Contact: http://go4.gsi.de
9 //-----------------------------------------------------------------------
10 // This software can be used under the license agreements as stated
11 // in Go4License.txt file which is part of the distribution.
12 //-----------------------------------------------------------------------
13 
14 #include "TGo4ComSetProtections.h"
15 
16 #include "TGo4Log.h"
17 #include "TGo4AnalysisClientImp.h"
18 #include "TGo4AnalysisImp.h"
19 #include "TGo4RemoteCommand.h"
20 
21 TGo4ComSetProtections::TGo4ComSetProtections(const char* obname, const char* flags) :
22  TGo4AnalysisObjectCommand("ANSetProtect","Set protection properties for object",obname)
23 {
24  GO4TRACE((12,"TGo4ComSetProtections::TGo4ComSetProtections(const char*) ctor",__LINE__, __FILE__));
25  SetReceiverName("AnalysisClient"); // this command needs client as receiver
26  // override default receiver
27  SetFlags(flags);
29 }
30 
33 {
34  GO4TRACE((12,"TGo4ComSetProtections::TGo4ComSetProtections() ctor",__LINE__, __FILE__));
35  SetReceiverName("AnalysisClient"); // this command needs client as receiver
36  SetName("ANSetProtect");
37  SetDescription("Set protection properties for object");
39 }
40 
42 {
43  GO4TRACE((12,"TGo4ComSetProtections::~TGo4ComSetProtections() dtor",__LINE__, __FILE__));
44 }
45 
47 {
48  if(remcom==0) return;
50  SetFlags(remcom->GetString(2));
51 }
52 
54 {
56  if (cli!=0)
57  {
59  if(ana->ProtectObjects(GetObjectName(),(const Option_t*) fxFlags.Data()))
60  {
61  cli->SendStatusMessage(1, kFALSE,TString::Format(
62  "Changed object or folder %s protections: %s ",
63  GetObjectName(),fxFlags.Data()));
64  }
65  else
66  {
67  cli->SendStatusMessage(2, kFALSE,TString::Format(
68  "Could not change object/folder %s protections, no such object",
69  GetObjectName()));
70  }
71  }
72  else
73 
74  {
75  TGo4Log::Debug(" !!! %s : NO RECEIVER ERROR!!!",GetName());
76  return 1;
77  }
78 
79  return -1;
80 }
void SetReceiverName(const char *)
Definition: TGo4Command.cxx:92
virtual void SendStatusMessage(Int_t level, Bool_t printout, const TString &text)
TGo4CommandReceiver * fxReceiverBase
Definition: TGo4Command.h:117
virtual void Set(TGo4RemoteCommand *remcon)
const char * GetObjectName() const
virtual void Set(TGo4RemoteCommand *remcon)
void SetProtection(Go4CommandMode_t m)
Definition: TGo4Command.h:105
void SetDescription(const char *)
const char * GetString(Int_t i) const
#define GO4TRACE(X)
Definition: TGo4Log.h:26
Bool_t ProtectObjects(const char *name, const Option_t *flags)
void SetFlags(const char *flags)
static TGo4Analysis * Instance()
static void Debug(const char *text,...)
Definition: TGo4Log.cxx:270