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