merging refactor (replacing)

This commit is contained in:
2019-04-12 10:53:09 +02:00
parent 0bb800cc8a
commit 89a06f099c
1176 changed files with 82698 additions and 159058 deletions

74
slsDetectorGui/include/qDebugStream.h Normal file → Executable file
View File

@ -1,101 +1,80 @@
/*
* qDebugStream.h
*
* Created on: Jun 28, 2012
* Author: Anna Bergamaschi
*/
#ifndef QDEBUGSTREAM_H_
#define QDEBUGSTREAM_H_
#include "qDefs.h"
#pragma once
#include <QApplication>
#include <QWidget>
#include <QString>
#include <QCustomEvent>
#include <QString>
#include <QWidget>
#include <iostream>
#include <streambuf>
#include <string>
using namespace std;
#define STREAMEVENT 60001
//-------------------------------------------------------------------------------------------------------------------------------------------------
class qStreamEvent:public QEvent{
class qStreamEvent : public QEvent {
public:
qStreamEvent(QString s):QEvent(static_cast<QEvent::Type>(STREAMEVENT)),str(s){
qStreamEvent(QString s) : QEvent(static_cast<QEvent::Type>(STREAMEVENT)), str(s) {
#ifdef PRINT_LOG
printf("%s\n",str.toAscii().constData());
printf("%s\n", str.toAscii().constData());
#endif
}
/** \returns the progress index */
QString getString() {return str;}
QString getString() { return str; }
private:
QString str;
};
//-------------------------------------------------------------------------------------------------------------------------------------------------
class qDebugStream : public basic_streambuf<char> {
class qDebugStream : public std::basic_streambuf<char> {
public:
qDebugStream(ostream &stream, QWidget* w) : m_stream(stream), log_window(w) {
qDebugStream(std::ostream &stream, QWidget *w) : m_stream(stream), log_window(w) {
pthread_mutex_init(&mutex, NULL);
m_old_buf = stream.rdbuf();
stream.rdbuf(this);
}
//-------------------------------------------------------------------------------------------------------------------------------------------------
~qDebugStream(){
~qDebugStream() {
// output anything that is left
if (!m_string.empty()) {
pthread_mutex_lock(&mutex);
const char* c_string = m_string.c_str();
const char *c_string = m_string.c_str();
QApplication::postEvent(log_window, new qStreamEvent(c_string));
pthread_mutex_unlock(&mutex);
}
m_stream.rdbuf(m_old_buf);
}
//-------------------------------------------------------------------------------------------------------------------------------------------------
protected:
virtual int_type overflow(int_type v){
if (v == '\n'){
virtual int_type overflow(int_type v) {
if (v == '\n') {
pthread_mutex_lock(&mutex);
const char* c_string = m_string.c_str();
const char *c_string = m_string.c_str();
QApplication::postEvent(log_window, new qStreamEvent(c_string));
m_string.erase(m_string.begin(), m_string.end());
pthread_mutex_unlock(&mutex);
}
else
} else
m_string += v;
return v;
}
//-------------------------------------------------------------------------------------------------------------------------------------------------
virtual streamsize xsputn(const char *p, streamsize n) {
virtual std::streamsize xsputn(const char *p, std::streamsize n) {
pthread_mutex_lock(&mutex);
m_string.append(p, p + n);
//changed from uint because of 64 bit
size_t pos = 0;
while (pos != string::npos){
while (pos != std::string::npos) {
pos = m_string.find('\n');
if (pos != string::npos){
string tmp(m_string.begin(), m_string.begin() + pos);
const char* c_tmp = tmp.c_str();
if (pos != std::string::npos) {
std::string tmp(m_string.begin(), m_string.begin() + pos);
const char *c_tmp = tmp.c_str();
QApplication::postEvent(log_window, new qStreamEvent(c_tmp));
m_string.erase(m_string.begin(), m_string.begin() + pos + 1);
}
@ -104,16 +83,13 @@ protected:
return n;
}
//-------------------------------------------------------------------------------------------------------------------------------------------------
private:
pthread_mutex_t mutex;
ostream &m_stream;
streambuf *m_old_buf;
string m_string;
QWidget* log_window;
std::ostream &m_stream;
std::streambuf *m_old_buf;
std::string m_string;
QWidget *log_window;
};
//-------------------------------------------------------------------------------------------------------------------------------------------------
#endif /* QDEBUGSTREAM_H_ */