GSI Object Oriented Online Offline (Go4)  GO4-6.3.0
TGo4ComSetProtections.cxx
Go to the documentation of this file.
1 // $Id$
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 fuer 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  if(!remcom) return;
45  SetFlags(remcom->GetString(2));
46 }
47 
49 {
51  if (cli) {
52  if (TGo4Analysis::Instance()->ProtectObjects(GetObjectName(), (const Option_t *)fxFlags.Data())) {
53  cli->SendStatusMessage(
54  1, kFALSE,
55  TString::Format("Changed object or folder %s protections: %s ", GetObjectName(), fxFlags.Data()));
56  } else {
57  cli->SendStatusMessage(
58  2, kFALSE,
59  TString::Format("Could not change object/folder %s protections, no such object", GetObjectName()));
60  }
61  } else {
62  TGo4Log::Debug(" !!! %s : NO RECEIVER ERROR!!!", GetName());
63  return 1;
64  }
65 
66  return -1;
67 }
const char * GetString(Int_t i) const
void SetReceiverName(const char *)
Definition: TGo4Command.cxx:93
TGo4CommandReceiver * fxReceiverBase
Definition: TGo4Command.h:116
void SendStatusMessage(Int_t level, Bool_t printout, const TString &text) override
void Set(TGo4RemoteCommand *remcon) override
static void Debug(const char *text,...) GO4_PRINTF_ARGS
Definition: TGo4Log.cxx:281
void SetProtection(Go4CommandMode_t m)
Definition: TGo4Command.h:104
void SetDescription(const char *)
#define GO4TRACE(X)
Definition: TGo4Log.h:25
Bool_t ProtectObjects(const char *name, const Option_t *flags)
void Set(TGo4RemoteCommand *remcon) override
void SetFlags(const char *flags)
static TGo4Analysis * Instance()