Skip to content
Snippets Groups Projects
Commit eed06819 authored by Alex Buts's avatar Alex Buts
Browse files

Merge remote-tracking branch 'origin/feature/9403_Refl_Offline_Save_Workspaces'

parents 9a693c0e 5a9954b5
No related branches found
No related tags found
No related merge requests found
...@@ -17,6 +17,8 @@ except AttributeError: ...@@ -17,6 +17,8 @@ except AttributeError:
class Ui_SaveWindow(object): class Ui_SaveWindow(object):
def __init__(self): def __init__(self):
self.__has_mount_point = True;
self.__instrument = config['default.instrument'].strip().upper() self.__instrument = config['default.instrument'].strip().upper()
try: try:
...@@ -24,7 +26,7 @@ class Ui_SaveWindow(object): ...@@ -24,7 +26,7 @@ class Ui_SaveWindow(object):
self.__mountpoint = usersettings.get_named_setting("DataMountPoint") self.__mountpoint = usersettings.get_named_setting("DataMountPoint")
except KeyError: except KeyError:
print "DataMountPoint is missing from the config.xml file." print "DataMountPoint is missing from the config.xml file."
raise self.__has_mount_point = False;
def setupUi(self, SaveWindow): def setupUi(self, SaveWindow):
self.SavePath="" self.SavePath=""
...@@ -245,28 +247,31 @@ class Ui_SaveWindow(object): ...@@ -245,28 +247,31 @@ class Ui_SaveWindow(object):
if (self.SavePath!=''): if (self.SavePath!=''):
self.lineEdit.setText(self.SavePath) self.lineEdit.setText(self.SavePath)
else: else:
base_path = os.path.join(self.__mountpoint, 'NDX'+ self.__instrument, 'Instrument','logs','journal') if self.__has_mount_point:
print base_path try:
main_journal_path = os.path.join(base_path, 'journal_main.xml') base_path = os.path.join(self.__mountpoint, 'NDX'+ self.__instrument, 'Instrument','logs','journal')
tree1=xml.parse(main_journal_path) print "Loading journal from", base_path
root1=tree1.getroot() main_journal_path = os.path.join(base_path, 'journal_main.xml')
currentJournal=root1[len(root1)-1].attrib.get('name') tree1=xml.parse(main_journal_path)
cycle_journal_path = os.path.join(base_path, currentJournal) root1=tree1.getroot()
tree=xml.parse(cycle_journal_path) currentJournal=root1[len(root1)-1].attrib.get('name')
root=tree.getroot() cycle_journal_path = os.path.join(base_path, currentJournal)
tree=xml.parse(cycle_journal_path)
i=0 root=tree.getroot()
try: i=0
while root[i][4].text!=str(RB_Number): try:
i+=1 while root[i][4].text!=str(RB_Number):
if root[i][1].text.find(',')>0: i+=1
user=root[i][1].text[0:root[i][1].text.find(',')] if root[i][1].text.find(',')>0:
else: user=root[i][1].text[0:root[i][1].text.find(',')]
user=root[i][1].text[0:root[i][1].text.find(' ')] else:
SavePath = os.path.join('U:', user) user=root[i][1].text[0:root[i][1].text.find(' ')]
self.lineEdit.setText(SavePath) SavePath = os.path.join('U:', user)
except LookupError: self.lineEdit.setText(SavePath)
print "Not found!" except LookupError:
print "Couldn't find user name in archives!"
except:
print "Journal does not exist or is unreachable, please check your network connection."
#--------- If "Save" button pressed, selcted workspaces are saved ------------- #--------- If "Save" button pressed, selcted workspaces are saved -------------
def buttonClickHandler1(self): def buttonClickHandler1(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment