123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422 |
- #include "LTSKlient.h"
- // Inhalt der LTSKlient Klasse aus LTSKlient.h
- // Konstruktor
- LTSKlient::LTSKlient( const char *ip, int port )
- {
- k = new SSLKlient();
- fehler = new Text( "Keine Verbindung zum Server." );
- this->ip = new Text( ip );
- this->port = port;
- verbunden = 0;
- eingeloggt = 0;
- InitializeCriticalSection( &cs );
- ref = 1;
- }
- // Destruktor
- LTSKlient::~LTSKlient()
- {
- if( verbunden )
- trenne();
- k->release();
- ip->release();
- fehler->release();
- DeleteCriticalSection( &cs );
- }
- // nicht constant
- void LTSKlient::lock()
- {
- EnterCriticalSection( &cs );
- }
- void LTSKlient::unlock()
- {
- LeaveCriticalSection( &cs );
- }
- bool LTSKlient::verbinden()
- {
- if( verbunden )
- return 1;
- lock();
- bool b = k->verbinde( port, ip->getText() );
- if( !b )
- {
- fehler->setText( "Fehler beim verbinden mit dem Server.\nPort:" );
- fehler->append( port );
- fehler->append( " IP:" );
- fehler->append( ip->getText() );
- }
- verbunden = b;
- eingeloggt = 0;
- unlock();
- return b;
- }
- bool LTSKlient::login( const char *name, const char *passwort )
- {
- if( !verbunden )
- verbinden();
- if( !verbunden )
- return 0;
- lock();
- k->sende( "\1", 1 );
- unsigned char res = 0;
- k->getNachricht( (char*)&res, 1 );
- if( res == 1 )
- {
- unsigned char län = (unsigned char)textLength( name );
- k->sende( (char*)&län, 1 );
- if( län )
- k->sende( name, län );
- län = (unsigned char)textLength( passwort );
- k->sende( (char*)&län, 1 );
- if( län )
- k->sende( passwort, län );
- k->getNachricht( (char*)&res, 1 );
- }
- if( res == 3 )
- {
- k->getNachricht( (char*)&res, 1 );
- char *txt = new char[ res + 1 ];
- k->getNachricht( txt, res );
- txt[ res ] = 0;
- fehler->setText( "Fehler während login beim Server.\nServer Rückgabe:" );
- fehler->append( txt );
- delete[] txt;
- }
- else
- {
- eingeloggt = 1;
- unlock();
- return 1;
- }
- unlock();
- return 0;
- }
- bool LTSKlient::logout()
- {
- if( !verbunden )
- verbinden();
- if( !verbunden )
- return 0;
- lock();
- k->sende( "\2", 1 );
- unsigned char res = 0;
- k->getNachricht( (char*)&res, 1 );
- if( res == 3 )
- {
- k->getNachricht( (char*)&res, 1 );
- char *txt = new char[ res + 1 ];
- k->getNachricht( txt, res );
- txt[ res ] = 0;
- fehler->setText( "Fehler während logout beim Server.\nServer Rückgabe:" );
- fehler->append( txt );
- delete[] txt;
- }
- unlock();
- return res == 1;
- }
- int LTSKlient::getStatus()
- {
- if( !verbunden )
- verbinden();
- if( !verbunden )
- return -1;
- lock();
- k->sende( "\x8", 1 );
- unsigned char res = 0;
- k->getNachricht( (char*)&res, 1 );
- int status = 0;
- if( res == 1 )
- {
- k->getNachricht( (char*)&res, 1 );
- if( res == 1 )
- status = 1;
- }
- else if( res == 3 )
- {
- status = -2;
- k->getNachricht( (char*)&res, 1 );
- char *txt = new char[ res + 1 ];
- k->getNachricht( txt, res );
- txt[ res ] = 0;
- fehler->setText( "Fehler während Status Request beim Server.\nServer Rückgabe:" );
- fehler->append( txt );
- delete[] txt;
- }
- unlock();
- return (int)res;
- }
- bool LTSKlient::stop()
- {
- if( !verbunden )
- verbinden();
- if( !verbunden )
- return 0;
- lock();
- k->sende( "\5", 1 );
- unsigned char res = 0;
- k->getNachricht( (char*)&res, 1 );
- if( res == 3 )
- {
- k->getNachricht( (char*)&res, 1 );
- char *txt = new char[ res + 1 ];
- k->getNachricht( txt, res );
- txt[ res ] = 0;
- fehler->setText( "Fehler während Stoppen beim Server.\nServer Rückgabe:" );
- fehler->append( txt );
- delete[] txt;
- }
- unlock();
- return res == 1;
- }
- bool LTSKlient::pause()
- {
- if( !verbunden )
- verbinden();
- if( !verbunden )
- return 0;
- lock();
- k->sende( "\x9", 1 );
- unsigned char res = 0;
- k->getNachricht( (char*)&res, 1 );
- if( res == 3 )
- {
- k->getNachricht( (char*)&res, 1 );
- char *txt = new char[ res + 1 ];
- k->getNachricht( txt, res );
- txt[ res ] = 0;
- fehler->setText( "Fehler während Pausieren beim Server.\nServer Rückgabe:" );
- fehler->append( txt );
- delete[] txt;
- }
- k->sende( "\1", 1 );
- k->getNachricht( (char*)&res, 1 );
- if( res == 3 )
- {
- k->getNachricht( (char*)&res, 1 );
- char *txt = new char[ res + 1 ];
- k->getNachricht( txt, res );
- txt[ res ] = 0;
- fehler->setText( "Fehler während Pausieren beim Server.\nServer Rückgabe:" );
- fehler->append( txt );
- delete[] txt;
- }
- unlock();
- return res == 1;
- }
- bool LTSKlient::fortsetzen()
- {
- if( !verbunden )
- verbinden();
- if( !verbunden )
- return 0;
- lock();
- k->sende( "\x9", 1 );
- unsigned char res = 0;
- k->getNachricht( (char*)&res, 1 );
- if( res == 3 )
- {
- k->getNachricht( (char*)&res, 1 );
- char *txt = new char[ res + 1 ];
- k->getNachricht( txt, res );
- txt[ res ] = 0;
- fehler->setText( "Fehler während Fortsetzen beim Server.\nServer Rückgabe:" );
- fehler->append( txt );
- delete[] txt;
- }
- k->sende( "\0", 1 );
- k->getNachricht( (char*)&res, 1 );
- if( res == 3 )
- {
- k->getNachricht( (char*)&res, 1 );
- char *txt = new char[ res + 1 ];
- k->getNachricht( txt, res );
- txt[ res ] = 0;
- fehler->setText( "Fehler während Fortsetzen beim Server.\nServer Rückgabe:" );
- fehler->append( txt );
- delete[] txt;
- }
- unlock();
- return res == 1;
- }
- bool LTSKlient::start()
- {
- if( !verbunden )
- verbinden();
- if( !verbunden )
- return 0;
- lock();
- k->sende( "\4", 1 );
- unsigned char res = 0;
- k->getNachricht( (char*)&res, 1 );
- if( res == 3 )
- {
- k->getNachricht( (char*)&res, 1 );
- char *txt = new char[ res + 1 ];
- k->getNachricht( txt, res );
- txt[ res ] = 0;
- fehler->setText( "Fehler während Starten beim Server.\nServer Rückgabe:" );
- fehler->append( txt );
- delete[] txt;
- }
- unlock();
- return res == 1;
- }
- bool LTSKlient::setMaxTasks( int maxC )
- {
- if( !verbunden )
- verbinden();
- if( !verbunden )
- return 0;
- lock();
- k->sende( "\xA", 1 );
- unsigned char res = 0;
- k->getNachricht( (char*)&res, 1 );
- if( res == 3 )
- {
- k->getNachricht( (char*)&res, 1 );
- char *txt = new char[ res + 1 ];
- k->getNachricht( txt, res );
- txt[ res ] = 0;
- fehler->setText( "Fehler während SetMaxClients beim Server.\nServer Rückgabe:" );
- fehler->append( txt );
- delete[] txt;
- }
- k->sende( (char*)&maxC, 4 );
- k->getNachricht( (char*)&res, 1 );
- if( res == 3 )
- {
- k->getNachricht( (char*)&res, 1 );
- char *txt = new char[ res + 1 ];
- k->getNachricht( txt, res );
- txt[ res ] = 0;
- fehler->setText( "Fehler während SetMaxClients beim Server.\nServer Rückgabe:" );
- fehler->append( txt );
- delete[] txt;
- }
- unlock();
- return res == 1;
- }
- bool LTSKlient::beenden()
- {
- if( !verbunden )
- verbinden();
- if( !verbunden )
- return 0;
- lock();
- k->sende( "\6", 1 );
- unsigned char res = 0;
- k->getNachricht( (char*)&res, 1 );
- if( res == 3 )
- {
- k->getNachricht( (char*)&res, 1 );
- char *txt = new char[ res + 1 ];
- k->getNachricht( txt, res );
- txt[ res ] = 0;
- fehler->setText( "Fehler während Beenden beim Server.\nServer Rückgabe:" );
- fehler->append( txt );
- delete[] txt;
- }
- unlock();
- if( res == 1 )
- {
- eingeloggt = 0;
- verbunden = 0;
- }
- return res == 1;
- }
- bool LTSKlient::terminieren()
- {
- if( !verbunden )
- verbinden();
- if( !verbunden )
- return 0;
- lock();
- k->sende( "\7", 1 );
- unsigned char res = 0;
- k->getNachricht( (char*)&res, 1 );
- if( res == 3 )
- {
- k->getNachricht( (char*)&res, 1 );
- char *txt = new char[ res + 1 ];
- k->getNachricht( txt, res );
- txt[ res ] = 0;
- fehler->setText( "Fehler während Terminieren beim Server.\nServer Rückgabe:" );
- fehler->append( txt );
- delete[] txt;
- }
- unlock();
- if( res == 1 )
- {
- eingeloggt = 0;
- verbunden = 0;
- }
- return res == 1;
- }
- bool LTSKlient::trenne()
- {
- if( !verbunden )
- return 1;
- lock();
- k->sende( "\3", 1 );
- unsigned char res = 0;
- k->getNachricht( (char*)&res, 1 );
- if( res == 3 )
- {
- k->getNachricht( (char*)&res, 1 );
- char *txt = new char[ res + 1 ];
- k->getNachricht( txt, res );
- txt[ res ] = 0;
- fehler->setText( "Fehler während Trennen beim Server.\nServer Rückgabe:" );
- fehler->append( txt );
- delete[] txt;
- }
- unlock();
- eingeloggt = 0;
- verbunden = 0;
- k->trenne();
- return res == 1;
- }
- void LTSKlient::abbruch()
- {
- if( verbunden )
- k->trenne();
- eingeloggt = 0;
- verbunden = 0;
- }
- // constant
- bool LTSKlient::istVerbunden() const
- {
- return verbunden;
- }
- bool LTSKlient::istEingeloggt() const
- {
- return eingeloggt;
- }
- const char *LTSKlient::getLetzterFehler() const
- {
- return fehler->getText();
- }
- SSLKlient *LTSKlient::zKlient() const
- {
- return k;
- }
|