X-Git-Url: http://git.onelab.eu/?p=sface.git;a=blobdiff_plain;f=sface%2Fsliceview.py;h=d690f855c5ab36dd78f462c3d4ce6ac38739eb9b;hp=65b65724f905b8b13c58509076a20cc39c926683;hb=480ff8b34640f125528b4a008c031eff8d232135;hpb=dc5a4a16b0819bc27efd1f77d632a76463db82c0 diff --git a/sface/sliceview.py b/sface/sliceview.py index 65b6572..d690f85 100644 --- a/sface/sliceview.py +++ b/sface/sliceview.py @@ -4,9 +4,10 @@ import pickle from PyQt4.QtCore import * from PyQt4.QtGui import * -from sfa.util.record import SfaRecord, SliceRecord, AuthorityRecord +from sfa.storage.record import SfaRecord, SliceRecord, AuthorityRecord from sface.config import config from sface.sfidata import SfiData +from sface.sfiprocess import SfiProcess NAME_COLUMN = 0 MEMBERSHIP_STATUS_COLUMN = 1 @@ -14,6 +15,10 @@ MEMBERSHIP_STATUS_COLUMN = 1 # maximum length of a name to display before clipping NAME_MAX_LEN = 48 +MODE_AUTHORITY_SLICES = 0x01 +MODE_USER_SLICES = 0x02 +MODE_SELECT_SINGLE = 0x10 + slice_status = { "in": "Selected", "out": "Not Selected"} @@ -71,8 +76,9 @@ class SliceNameDelegate(QStyledItemDelegate): painter.restore() class SliceView(QTableView): - def __init__(self, parent=None): + def __init__(self, mode=0, parent=None): QTableView.__init__(self, parent) + self.mode = mode self.setSelectionBehavior(QAbstractItemView.SelectRows) self.setSelectionMode(QAbstractItemView.SingleSelection) @@ -89,9 +95,26 @@ class SliceView(QTableView): else: QTableView.keyPressEvent(self, event) + def selectionChanged(self, selected, deselected): + QTableView.selectionChanged(self, selected, deselected) + if (self.mode & MODE_SELECT_SINGLE) != 0: + self.unselectAll() + self.toggleSelection() + def mouseDoubleClickEvent(self, event): self.toggleSelection() + def unselectAll(self): + index = self.currentIndex() + model = index.model() + for row in range(0, model.rowCount()): + status_index = model.index(row, MEMBERSHIP_STATUS_COLUMN, index.parent()) + model.setData(status_index, QString(slice_status['out'])) + + #model.emit(SIGNAL("dataChanged(QModelIndex, QModelIndex)"), + # model.index(0, MEMBERSHIP_STATUS_COLUMN, index.parent()), + # model.index(model.rowCount(), MEMBERSHIP_STATUS_COLUMN, index.parent())) + def toggleSelection(self): index = self.currentIndex() model = index.model() @@ -113,13 +136,17 @@ class SliceView(QTableView): node_data = node_index.data().toString() class SliceModel(QStandardItemModel): - def __init__(self, rows=0, columns=4, parent=None): + def __init__(self, rows=0, columns=4, parent=None, mode=MODE_AUTHORITY_SLICES): QStandardItemModel.__init__(self, rows, columns, parent) + self.mode = mode def updateModel(self): self.clear() - slice_names = SfiData().getAuthorityHrns(type="slice") + if (self.mode & MODE_AUTHORITY_SLICES) != 0: + slice_names = SfiData().getAuthorityHrns(type="slice") + else: # MODE_USER_SLICES + slice_names = SfiData().getUserSliceHrns() rootItem = self.invisibleRootItem() @@ -148,3 +175,88 @@ class SliceModel(QStandardItemModel): return slices +class SlicePickerWindow(QDialog): + def __init__(self, mode=MODE_AUTHORITY_SLICES, parent=None): + super(SlicePickerWindow, self).__init__(parent) + self.mode = mode + self.slices = None + + self.setWindowTitle("Slice Picker") + + sliceLabel = QLabel("Slices:") + self.sliceView = SliceView(mode=self.mode) + + self.status = QLabel("") + self.status.setMaximumWidth(640) + + self.buttonBox = QDialogButtonBox(QDialogButtonBox.Ok | QDialogButtonBox.Cancel) + self.buttonBox.button(QDialogButtonBox.Ok).setDefault(True) + + layout = QVBoxLayout() + layout.addWidget(sliceLabel) + layout.addWidget(self.sliceView) + layout.addWidget(self.status) + layout.addWidget(self.buttonBox) + self.setLayout(layout) + + self.connect(self.buttonBox, SIGNAL("accepted()"), self, SLOT("accept()")) + self.connect(self.buttonBox, SIGNAL("rejected()"), self, SLOT("reject()")) + + self.sliceModel = SliceModel(mode=mode) + + self.refresh() + + def accept(self): + self.slices = self.sliceModel.getSelectedSlices() + print self.slices + QDialog.accept(self) + + def setStatus(self, x): + self.status.setText(x) + + def refresh(self): + if (self.mode & MODE_AUTHORITY_SLICES) != 0: + self.refreshAuthority() + else: + self.refreshUser() + + def refreshUser(self): + self.process = SfiProcess(self) + self.connect(self.process, SIGNAL('finished()'), self.getUserRecordFinished) + + self.process.getRecord(hrn=config.getUser(), filename=config.getUserRecordFile()) + self.setStatus("Refreshing user record. This will take a moment...") + + def getUserRecordFinished(self): + self.disconnect(self.process, SIGNAL('finished()'), self.getUserRecordFinished) + + faultString = self.process.getFaultString() + if not faultString: + self.setStatus("Slice list refreshed.") + self.updateSliceView() + else: + self.setStatus("User rec refresh error: %s" % (faultString)) + + def refreshAuthority(self): + self.process = SfiProcess(self) + self.connect(self.process, SIGNAL('finished()'), self.getAuthorityRecordFinished) + + self.process.listRecords(config.getAuthority(), None) + self.setStatus("Refreshing slice list. This will take a moment...") + + def getAuthorityRecordFinished(self): + self.disconnect(self.process, SIGNAL('finished()'), self.getAuthorityRecordFinished) + + faultString = self.process.getFaultString() + if not faultString: + self.setStatus("Slice list refreshed.") + self.updateSliceView() + else: + self.setStatus("Authority rec refresh error: %s" % (faultString)) + + def updateSliceView(self): + self.sliceModel.updateModel() + + self.sliceView.setModel(self.sliceModel) + self.sliceView.resizeColumnToContents(0) +