#include #include #include #include #include #include #include #include "TrustView.h" #include using namespace std ; TrustView::TrustView() : RsAutoUpdatePage(10000) { setupUi(this) ; trustTableTW->setMouseTracking(true) ; // trustInconsistencyCB->setEnabled(false) ; zoomHS->setValue(100) ; QObject::connect(zoomHS,SIGNAL(valueChanged(int)),this,SLOT(updateZoom(int))) ; QObject::connect(updatePB,SIGNAL(clicked()),this,SLOT(update())) ; QObject::connect(trustTableTW,SIGNAL(cellClicked(int,int)),this,SLOT(selectCell(int,int))) ; QObject::connect(trustTableTW->verticalHeader(),SIGNAL(sectionClicked(int)),this,SLOT(hideShowPeers(int))) ; QObject::connect(trustTableTW->horizontalHeader(),SIGNAL(sectionClicked(int)),this,SLOT(hideShowPeers(int))) ; updatePB->setToolTip(tr("This table normaly auto-updates every 10 seconds.")) ; } void TrustView::showEvent(QShowEvent *e) { QWidget::showEvent(e) ; update() ; } void TrustView::wheelEvent(QWheelEvent *e) { if(e->modifiers() & Qt::ShiftModifier) { if(e->delta() > 0) zoomHS->setValue(zoomHS->value()-5) ; else zoomHS->setValue(zoomHS->value()+5) ; } } void TrustView::selectCell(int row,int col) { static int last_row = -1 ; static int last_col = -1 ; #ifdef DEBUG_TRUSTVIEW cout << "row = " << row << ", column = " << col << endl; if(row == 0 || col == 0) cout << "***********************************************" << endl ; #endif if(last_row > -1) { int col_s,row_s ; getCellSize(zoomHS->value(),col_s,row_s) ; trustTableTW->setColumnWidth(last_col,col_s) ; trustTableTW->setRowHeight(last_row,row_s) ; } if(row != last_row || col != last_col) { trustTableTW->setColumnWidth(col,_base_cell_width) ; trustTableTW->setRowHeight(row,_base_cell_height) ; last_col = col ; last_row = row ; } else { last_col = -1 ; last_row = -1 ; } } void TrustView::getCellSize(int z,int& col_s,int& row_s) const { col_s = max(10,(int)rint( z/100.0 * _base_cell_width )) ; row_s = max(10,(int)rint( z/100.0 * _base_cell_height)) ; } void TrustView::updateZoom(int z) { int col_s,row_s ; getCellSize(z,col_s,row_s) ; for(int i=0;icolumnCount();++i) trustTableTW->setColumnWidth(i,col_s) ; for(int i=0;irowCount();++i) trustTableTW->setRowHeight(i,row_s) ; // cout << "updated zoom" << endl; } int TrustView::getRowColId(const string& peerid) { static map peeridToRow ; map::const_iterator itpr(peeridToRow.find( peerid )) ; int i ; if(itpr == peeridToRow.end()) { i = trustTableTW->columnCount() ; trustTableTW->insertColumn(i) ; trustTableTW->insertRow(i) ; peeridToRow[peerid] = i ; std::string name = rsPeers->getPeerName(peerid) ; trustTableTW->setHorizontalHeaderItem(i,new QTableWidgetItem(QString(name.c_str()))) ; trustTableTW->setVerticalHeaderItem(i,new QTableWidgetItem(QString(name.c_str()))) ; trustTableTW->setColumnWidth(i,_base_cell_width) ; trustTableTW->setRowHeight(i,_base_cell_height) ; } else i = (*itpr).second ; return i ; } void TrustView::updateDisplay() { update() ; } void TrustView::update() { std::list neighs; if(!rsPeers->getGPGAllList(neighs)) return ; neighs.push_back(rsPeers->getGPGOwnId()) ; trustTableTW->setSortingEnabled(false) ; RsPeerDetails details ; // Fill everything for(list::const_iterator it1(neighs.begin()); it1 != neighs.end(); ++it1) { std::list friends_ids ; if(!rsPeers->getPeerDetails(*it1,details)) continue ; int i = getRowColId(details.id) ; std::string issuer(details.issuer) ; // the one we check for trust. for(list::const_iterator it2(details.gpgSigners.begin());it2!=details.gpgSigners.end();++it2) { #ifdef DEBUG_TRUSTVIEW cout << *it2 << " " ; #endif int j = getRowColId(*it2) ; QString trr( (i==j)?tr("Self"):tr("Trust")) ; if(trustTableTW->item(i,j) == NULL) trustTableTW->setItem(i,j,new QTableWidgetItem(trr)) ; else trustTableTW->item(i,j)->setText(trr) ; } // cout << endl ; } // assign colors vector ni(trustTableTW->rowCount(),0) ; vector nj(trustTableTW->columnCount(),0) ; for(int i=0;irowCount();++i) for(int j=0;jcolumnCount();++j) { QTableWidgetItem *i_ij(trustTableTW->item(i,j)) ; QTableWidgetItem *i_ji(trustTableTW->item(j,i)) ; QColor color ; // check bidirectional trust // if(i_ij != NULL) { ++ni[i] ; ++nj[j] ; if(i_ji == NULL) { i_ij->setBackgroundColor(Qt::yellow) ; i_ij->setToolTip(trustTableTW->horizontalHeaderItem(i)->text() + tr(" is authenticated (one way) by " )+trustTableTW->verticalHeaderItem(j)->text()) ; i_ij->setText(tr("Half")) ; } else { if(i==j) { i_ij->setBackgroundColor(Qt::red) ; i_ij->setToolTip(trustTableTW->horizontalHeaderItem(i)->text() + tr(" authenticated himself") ) ; } else { i_ij->setBackgroundColor(Qt::green) ; i_ij->setToolTip(trustTableTW->horizontalHeaderItem(i)->text() + " and " +trustTableTW->verticalHeaderItem(j)->text() + tr(" authenticated each other") ) ; i_ij->setText(tr("Full")) ; } } } } for(int i=0;irowCount();++i) trustTableTW->verticalHeaderItem(i)->setToolTip(trustTableTW->verticalHeaderItem(i)->text()+ tr(" is authenticated by ") + QString::number(ni[i]) + tr(" peers, including him(her)self.")) ; for(int j=0;jcolumnCount();++j) trustTableTW->horizontalHeaderItem(j)->setToolTip(trustTableTW->horizontalHeaderItem(j)->text()+ tr(" authenticated ") + QString::number(nj[j]) + tr(" peers, including him(her)self.")) ; } void TrustView::hideShowPeers(int col) { // Choose what to show/hide // static int last_col = -1 ; if(col == last_col) { for(int i=0;irowCount();++i) { trustTableTW->setColumnHidden(i,false) ; trustTableTW->setRowHidden(i,false) ; } last_col = -1 ; showingLabel->setText(tr("Showing: whole network")) ; } else { for(int i=0;irowCount();++i) if(trustTableTW->item(i,col) == NULL && trustTableTW->item(col,i) == NULL) { trustTableTW->setColumnHidden(i,true) ; trustTableTW->setRowHidden(i,true) ; } else { trustTableTW->setColumnHidden(i,false) ; trustTableTW->setRowHidden(i,false) ; } last_col = col ; showingLabel->setText(tr("Showing: peers connected to ")+trustTableTW->verticalHeaderItem(col)->text()) ; } }