Changeset ea5fa58 in sasview for sansguiframe/src


Ignore:
Timestamp:
Sep 20, 2012 1:22:02 PM (12 years ago)
Author:
Jae Cho <jhjcho@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
bda809e
Parents:
b71a53b
Message:

category stuffs start working in interp. environment

Location:
sansguiframe/src/sans/guiframe
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • sansguiframe/src/sans/guiframe/CategoryInstaller.py

    rdf7a7e3 rea5fa58  
    66 
    77@author kieranrcampbell@gmail.com 
    8  
     8@modified by NIST/MD sanview team 
    99""" 
    1010 
     
    1414from collections import defaultdict 
    1515 
    16 user_file = 'serialized_cat.p' 
     16USER_FILE = 'serialized_cat.p' 
    1717 
    1818class CategoryInstaller: 
     
    4747        returns the dir where default_cat.p should be 
    4848        """ 
    49         import sans.dataloader.readers 
    50         return sans.dataloader.readers.get_data_path() 
     49        from sans import sansview as sasview 
     50        app_path = os.path.dirname(sasview.__file__) 
     51        return app_path 
    5152 
    5253    @staticmethod 
     
    5556        returns the users sansview config dir 
    5657        """ 
    57         return os.path.join(os.path.expanduser("~"), 
    58                             ".sansview") 
     58        return os.path.join(os.path.expanduser("~"), ".sasview") 
    5959 
    6060    @staticmethod 
     
    9595    def get_user_file(): 
    9696        """ 
    97         returns the user data file, eg .sansview/serialized_cat.p 
     97        returns the user data file, eg .sasview/serialized_cat.p 
    9898        """ 
    9999        return os.path.join(CategoryInstaller._get_home_dir(), 
    100                             user_file) 
     100                            USER_FILE) 
    101101 
    102102    @staticmethod 
     
    107107        """ 
    108108        return os.path.join(\ 
    109             CategoryInstaller._get_default_cat_p_dir,  
    110             "default_categories.p") 
     109            CategoryInstaller._get_default_cat_p_dir(), "default_categories.p") 
    111110         
    112111    @staticmethod 
     
    128127            serialized_file = CategoryInstaller.get_user_file() 
    129128        else: 
    130             serialized_file = os.path.join(homedir, user_file) 
     129            serialized_file = os.path.join(homedir, USER_FILE) 
    131130 
    132131        if os.path.exists(serialized_file): 
  • sansguiframe/src/sans/guiframe/CategoryManager.py

    rdf7a7e3 rea5fa58  
    1616import wx 
    1717import sys 
     18import os 
    1819from wx.lib.mixins.listctrl import CheckListCtrlMixin, ListCtrlAutoWidthMixin 
    1920from collections import defaultdict 
     
    290291        cat_file = open(CategoryInstaller.get_user_file(), 'wb') 
    291292 
    292         pickle.dump( self.master_category_dict, 
    293                      cat_file ) 
     293        pickle.dump( self.master_category_dict, cat_file ) 
    294294 
    295295    
     
    299299        """ 
    300300        try: 
    301             cat_file = open(CategoryInstaller.get_user_file(), 
    302                             'rb') 
    303             self.master_category_dict = pickle.load(cat_file) 
    304      
     301                file = CategoryInstaller.get_user_file() 
     302                if os.path.isfile(file): 
     303                    cat_file = open(file, 'rb') 
     304                    self.master_category_dict = pickle.load(cat_file) 
     305                else: 
     306                        cat_file = open(CategoryInstaller.get_default_file(), 'rb') 
     307                        self.master_category_dict = pickle.load(cat_file) 
    305308        except IOError: 
    306309            print 'Problem reading in category file. Please review' 
     
    421424        vbox.Add(self.ok_button, flag = wx.ALL | wx.ALIGN_RIGHT,  
    422425                 border = 10) 
    423  
    424  
    425         self.current_categories.SetSelection(0) 
     426         
     427        if self.current_categories.GetCount() > 0: 
     428                self.current_categories.SetSelection(0) 
    426429        self.new_text.Disable() 
    427430        self.SetSizer(vbox) 
     
    494497        return ret 
    495498 
    496  
    497  
    498  
    499  
    500499if __name__ == '__main__': 
    501500         
     
    510509        app.MainLoop() 
    511510 
    512  
  • sansguiframe/src/sans/guiframe/__init__.py

    rdf7a7e3 rea5fa58  
    7070    for f in findall(path): 
    7171        data_files.append(('media/guiframe_media', [f])) 
    72     path = get_media_path(media="catdata") 
    73     for f in findall(path): 
    74         data_files.append(('.', [f])) 
    7572 
    7673    return data_files 
  • sansguiframe/src/sans/guiframe/customdir.py

    r94d6752 rea5fa58  
    33import os.path 
    44import shutil 
     5from sans.guiframe.CategoryInstaller import CategoryInstaller 
    56 
    67CONF_DIR = 'config'  
    78APPLICATION_NAME = 'sasview' 
     9 
     10def _find_usersasview_dir(): 
     11    """ 
     12    Find and return user/.sasview dir 
     13    """ 
     14    dir = os.path.join(os.path.expanduser("~"),  
     15                       ("." + APPLICATION_NAME)) 
     16    return dir 
    817 
    918def _find_customconf_dir(): 
     
    1221    The plugin directory is located in the user's home directory. 
    1322    """ 
    14     dir = os.path.join(os.path.expanduser("~"),  
    15                        ("." + APPLICATION_NAME), CONF_DIR) 
     23    u_dir = _find_usersasview_dir() 
     24    dir = os.path.join(u_dir, CONF_DIR) 
    1625     
    1726    return dir 
     
    1928def _setup_conf_dir(path): 
    2029    """ 
    21     Setup the custom config dir 
     30    Setup the custom config dir and cat file 
    2231    """ 
    2332    dir = _find_customconf_dir() 
     
    2635        os.makedirs(dir) 
    2736    file = os.path.join(dir, "custom_config.py") 
     37    u_dir = _find_usersasview_dir() 
     38    cat_file = os.path.join(u_dir, "serialized_cat.p") 
     39    # Place example user models as needed 
     40    if not os.path.isfile(cat_file): 
     41        try: 
     42            default_cat_file = CategoryInstaller.get_default_file() 
     43            if os.path.isfile(default_cat_file): 
     44                shutil.copyfile(default_cat_file, cat_file) 
     45            else: 
     46                print "Unable to find/copy default cat file" 
     47        except: 
     48            print "Unable to copy default cat file to the user dir." 
     49 
    2850    # Place example user models as needed 
    2951    try: 
Note: See TracChangeset for help on using the changeset viewer.