You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
/*
|
|
|
|
This class sends an output to the outputstream
|
|
|
|
Copyright (C) 1998 Martin Vogt
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Library General Public License as published by
|
|
|
|
the Free Software Foundation.
|
|
|
|
|
|
|
|
For more information look at the file COPYRIGHT in this package
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __OUTPUTINTERFACE_H
|
|
|
|
#define __OUTPUTINTERFACE_H
|
|
|
|
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <fstream>
|
|
|
|
#include "buffer.h"
|
|
|
|
#include <tdemacros.h>
|
|
|
|
|
|
|
|
// uncomment this for debugging the output stream
|
|
|
|
// (written to file outstream.dbg)
|
|
|
|
//#define _DEBUG_OUTPUT
|
|
|
|
|
|
|
|
|
|
|
|
class TDE_EXPORT OutputInterface {
|
|
|
|
|
|
|
|
int protocolSyntax;
|
|
|
|
int nr;
|
|
|
|
Buffer* outBuffer;
|
|
|
|
std::ostream* out;
|
|
|
|
pthread_mutex_t writeOutMut;
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
OutputInterface(std::ostream* out);
|
|
|
|
~OutputInterface();
|
|
|
|
|
|
|
|
|
|
|
|
void flushBuffer();
|
|
|
|
void setProtocolSyntax(int proto);
|
|
|
|
void setNr(int nr);
|
|
|
|
void clearBuffer();
|
|
|
|
void appendBuffer(const char* msg);
|
|
|
|
|
|
|
|
// make this interface threadsafe
|
|
|
|
void lock();
|
|
|
|
void unlock();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|