00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #include "TGo4ClientStatus.h"
00015
00016 #include "Riostream.h"
00017
00018 #include "TGo4Log.h"
00019
00020
00021 TGo4ClientStatus::TGo4ClientStatus() :
00022 TGo4TaskStatus()
00023 {
00024 }
00025
00026 TGo4ClientStatus::TGo4ClientStatus(const char* name) :
00027 TGo4TaskStatus(name)
00028 {
00029 }
00030
00031 TGo4ClientStatus::~TGo4ClientStatus()
00032 {
00033 }
00034
00035 Int_t TGo4ClientStatus::PrintStatus(Text_t* buffer, Int_t buflen)
00036 {
00037 if(buflen<=0 && buffer!=0)
00038 return 0;
00039 Int_t locallen=4096;
00040 Text_t localbuf[4096];
00041 Text_t* current=localbuf;
00042 Int_t size=0;
00043 Int_t restlen=locallen;
00044 current=PrintBuffer(current,restlen, "G-OOOO-> Client Status Class %s Printout: <-OOOO-G\n",GetName());
00045 current=PrintBuffer(current,restlen, "G-OOOO-> ---------------------------------------------- <-OOOO-G\n");
00046 current=PrintBuffer(current,restlen, "G-OOOO-> Remote Server Hostname: %s\n",fxServerHostName.Data());
00047 current=PrintBuffer(current,restlen, "G-OOOO-> ---------------------------------------------- <-OOOO-G\n");
00048 Int_t delta=TGo4TaskStatus::PrintStatus(current,restlen);
00049 restlen-=delta;
00050 current+=delta;
00051 current=PrintBuffer(current,restlen, "G-OOOO-> END Client Status Class Printout END <-OOOO-G\n");
00052 if(buffer==0)
00053 {
00054 cout << localbuf << endl;
00055 }
00056 else
00057 {
00058 size=locallen-restlen;
00059 if(size>buflen-1)
00060 size=buflen-1;
00061 strncpy(buffer,localbuf,size);
00062 }
00063 return size;
00064 }
00065
00066 void TGo4ClientStatus::SetNames(const char* serverhost)
00067 {
00068 fxServerHostName = serverhost;
00069 }