GSI Object Oriented Online Offline (Go4) GO4-6.4.0
Loading...
Searching...
No Matches
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
15
16#include "TGo4Log.h"
18#include "TGo4AnalysisImp.h"
19#include "TGo4RemoteCommand.h"
20
21TGo4ComSetProtections::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())) {
54 1, kFALSE,
55 TString::Format("Changed object or folder %s protections: %s ", GetObjectName(), fxFlags.Data()));
56 } else {
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}
@ kGo4ComModeController
Definition TGo4Command.h:30
#define GO4TRACE(X)
Definition TGo4Log.h:25
void SendStatusMessage(Int_t level, Bool_t printout, const TString &text) override
Send message to gui.
const char * GetObjectName() const
access to the object name under command.
void Set(TGo4RemoteCommand *remcon) override
Set internals of this command from specification of external remote command (command container).
static TGo4Analysis * Instance()
return analysis instance
void Set(TGo4RemoteCommand *remcon) override
Set internals of this command from specification of external remote command (command container).
Int_t ExeCom() override
Do the command action.
void SetFlags(const char *flags)
void SetProtection(Go4CommandMode_t m)
TGo4CommandReceiver * fxReceiverBase
void SetDescription(const char *)
void SetReceiverName(const char *)
static void Debug(const char *text,...) GO4_PRINTF_ARGS
User shortcut for message with prio 0.
Definition TGo4Log.cxx:281
This command is a container for commands to be send from master to slave via inter-process transport.
const char * GetString(Int_t i) const