Ignore:
Timestamp:
Apr 3, 2014 7:28:51 PM (10 years ago)
Author:
butler
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:
bbd97e5
Parents:
34dbaf4
Message:

converted stored category file from pickle to json and a bit of cleanup

File:
1 edited

Legend:

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

    r64beda4 r27b7acc  
    1212import sys 
    1313import shutil 
    14 import cPickle as pickle 
     14import json 
    1515from collections import defaultdict 
    1616 
    17 USER_FILE = 'serialized_cat.p' 
     17USER_FILE = 'serialized_cat.json' 
    1818 
    1919class CategoryInstaller: 
     
    4545     
    4646    @staticmethod 
    47     def _get_default_cat_p_dir(): 
     47    def _get_default_cat_file_dir(): 
    4848        """ 
    49         returns the dir where default_cat.p should be 
     49        returns the dir where default_cat.j should be 
    5050        """ 
    5151        # The default categories file is usually found with the code, except 
     
    5353        # py2exe (it will be in the exec dir). 
    5454        import sans.sansview 
    55         cat_file = "default_categories.p" 
     55        cat_file = "default_categories.json" 
    5656         
    5757        possible_cat_file_paths = [ 
     
    111111    def get_user_file(): 
    112112        """ 
    113         returns the user data file, eg .sasview/serialized_cat.p 
     113        returns the user data file, eg .sasview/serialized_cat.json 
    114114        """ 
    115115        return os.path.join(CategoryInstaller._get_home_dir(), 
     
    120120        """ 
    121121        returns the path of the default file 
    122         e.g. blahblah/default_categories.p 
     122        e.g. blahblah/default_categories.json 
    123123        """ 
    124124        return os.path.join(\ 
    125             CategoryInstaller._get_default_cat_p_dir(), "default_categories.p") 
     125            CategoryInstaller._get_default_cat_file_dir(), "default_categories.json") 
    126126         
    127127    @staticmethod 
     
    129129        """ 
    130130        the main method of this class 
    131         makes sure serialized_cat.p exists and if not 
     131        makes sure serialized_cat.json exists and if not 
    132132        compile it and install 
    133133        :param homefile: Override the default home directory 
     
    146146        else: 
    147147            cat_file = open(default_file, 'rb') 
    148         master_category_dict = pickle.Unpickler(cat_file).load() 
     148        master_category_dict = json.load(cat_file) 
     149#        master_category_dict = pickle.Unpickler(cat_file).load() 
    149150        (by_model_dict, model_enabled_dict) = \ 
    150151                CategoryInstaller._regenerate_model_dict(master_category_dict) 
     
    173174                                                          model_enabled_dict) 
    174175             
    175             pickle.dump( master_category_dict, 
     176            json.dump( master_category_dict, 
    176177                         open(serialized_file, 'wb') ) 
    177178             
Note: See TracChangeset for help on using the changeset viewer.