annotate profilemanager/manager.py @ 70:6e282cacd5f0

split the string
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 07 May 2010 16:06:05 -0700
parents 86b137d49467
children 494ea3c2f578
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
1 """
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
2 manage Mozilla/Firefox profiles
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
3 """
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
4
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
5 import os
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
6 import shutil
15
543d08958b67 actually sample 8 random lowercase letters and numbers for the profile hash
Jeff Hammel <jhammel@mozilla.com>
parents: 10
diff changeset
7 import string
66
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
8 import tempfile
50
4cd6fc940407 * test backup
Jeff Hammel <jhammel@mozilla.com>
parents: 48
diff changeset
9 import time
9
b1274abd1206 rework API a bit; the "public" methods are becoming a bit specialized to the command line, which was my fear, so I should probably inherit from ProfileManager to do the interface like I should
Jeff Hammel <jhammel@mozilla.com>
parents: 8
diff changeset
10 import ConfigParser
65
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
11 from datetime import datetime
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
12 from dateutil.parser import parse
15
543d08958b67 actually sample 8 random lowercase letters and numbers for the profile hash
Jeff Hammel <jhammel@mozilla.com>
parents: 10
diff changeset
13 from random import Random
5
ca57920aa223 adding better formatting for list
Jeff Hammel <jhammel@mozilla.com>
parents: 4
diff changeset
14 from utils import format_tabular
ca57920aa223 adding better formatting for list
Jeff Hammel <jhammel@mozilla.com>
parents: 4
diff changeset
15 from ConfigParser import SafeConfigParser as ConfigParser
0
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
16
10
c77e9bef78d6 * update list of public API functions
Jeff Hammel <jhammel@mozilla.com>
parents: 9
diff changeset
17 # Changes to profiles.ini:
c77e9bef78d6 * update list of public API functions
Jeff Hammel <jhammel@mozilla.com>
parents: 9
diff changeset
18 # - add a ``backups`` field for each profile:
c77e9bef78d6 * update list of public API functions
Jeff Hammel <jhammel@mozilla.com>
parents: 9
diff changeset
19 # Backups = /path/to/backup:1273104310 /path/to/other/backup:1273104355
c77e9bef78d6 * update list of public API functions
Jeff Hammel <jhammel@mozilla.com>
parents: 9
diff changeset
20
0
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
21 class ProfileNotFound(Exception):
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
22 """
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
23 exception when a profile is specified but is not present in a given
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
24 .ini file
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
25 """
47
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
26 def __init__(self, profile, config):
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
27 self.profile = profile
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
28 self.config = config
57
3b4b87faa2a8 * make options case-sensitive
Jeff Hammel <jhammel@mozilla.com>
parents: 56
diff changeset
29 Exception.__init__(self,
3b4b87faa2a8 * make options case-sensitive
Jeff Hammel <jhammel@mozilla.com>
parents: 56
diff changeset
30 'Profile %s not found in %s' % (profile, config))
0
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
31
65
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
32 class NoBackupError(Exception):
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
33 """
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
34 exception when a sought backup is not found
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
35 """
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
36
0
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
37 class ProfileManager(object):
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
38
47
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
39 backups_dir = 'backups' # directory for backups relative to profile_dir
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
40
0
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
41 def __init__(self, profiles):
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
42 """
4
35dc297efa25 adding listing function and other cleanup
Jeff Hammel <jhammel@mozilla.com>
parents: 3
diff changeset
43 - profiles: filesystem path to profiles.ini file
0
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
44 """
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
45 self.profiles = profiles
4
35dc297efa25 adding listing function and other cleanup
Jeff Hammel <jhammel@mozilla.com>
parents: 3
diff changeset
46 self.profile_dir = os.path.abspath(os.path.dirname(profiles))
0
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
47
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
48 ### (public) API
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
49
16
c80d44e5ca41 flush out new() function
Jeff Hammel <jhammel@mozilla.com>
parents: 15
diff changeset
50 def new(self, name, directory=None, hash=True):
9
b1274abd1206 rework API a bit; the "public" methods are becoming a bit specialized to the command line, which was my fear, so I should probably inherit from ProfileManager to do the interface like I should
Jeff Hammel <jhammel@mozilla.com>
parents: 8
diff changeset
51 """
b1274abd1206 rework API a bit; the "public" methods are becoming a bit specialized to the command line, which was my fear, so I should probably inherit from ProfileManager to do the interface like I should
Jeff Hammel <jhammel@mozilla.com>
parents: 8
diff changeset
52 generate a new clean profile
b1274abd1206 rework API a bit; the "public" methods are becoming a bit specialized to the command line, which was my fear, so I should probably inherit from ProfileManager to do the interface like I should
Jeff Hammel <jhammel@mozilla.com>
parents: 8
diff changeset
53 - name: name of the profile to generate
16
c80d44e5ca41 flush out new() function
Jeff Hammel <jhammel@mozilla.com>
parents: 15
diff changeset
54 - directory: where to create the profile [DEFAULT: relative to profiles.ini]
c80d44e5ca41 flush out new() function
Jeff Hammel <jhammel@mozilla.com>
parents: 15
diff changeset
55 - hash: whether to generate a a random hash tag
9
b1274abd1206 rework API a bit; the "public" methods are becoming a bit specialized to the command line, which was my fear, so I should probably inherit from ProfileManager to do the interface like I should
Jeff Hammel <jhammel@mozilla.com>
parents: 8
diff changeset
56 """
16
c80d44e5ca41 flush out new() function
Jeff Hammel <jhammel@mozilla.com>
parents: 15
diff changeset
57
c80d44e5ca41 flush out new() function
Jeff Hammel <jhammel@mozilla.com>
parents: 15
diff changeset
58 # path to the profile directory
20
49d523a33c89 more stubbing
Jeff Hammel <jhammel@mozilla.com>
parents: 19
diff changeset
59 dirname = name
49d523a33c89 more stubbing
Jeff Hammel <jhammel@mozilla.com>
parents: 19
diff changeset
60 relative = False
16
c80d44e5ca41 flush out new() function
Jeff Hammel <jhammel@mozilla.com>
parents: 15
diff changeset
61 if hash:
18
8e651dd8e9ad fix two things about hash() usage
Jeff Hammel <jhammel@mozilla.com>
parents: 16
diff changeset
62 dirname = '%s.%s' % (self.hash(), dirname)
16
c80d44e5ca41 flush out new() function
Jeff Hammel <jhammel@mozilla.com>
parents: 15
diff changeset
63 if not directory:
c80d44e5ca41 flush out new() function
Jeff Hammel <jhammel@mozilla.com>
parents: 15
diff changeset
64 directory = self.profile_dir
20
49d523a33c89 more stubbing
Jeff Hammel <jhammel@mozilla.com>
parents: 19
diff changeset
65 relative = True
49d523a33c89 more stubbing
Jeff Hammel <jhammel@mozilla.com>
parents: 19
diff changeset
66 path = os.path.join(directory, dirname)
16
c80d44e5ca41 flush out new() function
Jeff Hammel <jhammel@mozilla.com>
parents: 15
diff changeset
67
c80d44e5ca41 flush out new() function
Jeff Hammel <jhammel@mozilla.com>
parents: 15
diff changeset
68 # create directory
40
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
69 # TODO: (optionally) pre-populate the directory a la Firefox
20
49d523a33c89 more stubbing
Jeff Hammel <jhammel@mozilla.com>
parents: 19
diff changeset
70 os.mkdir(path)
16
c80d44e5ca41 flush out new() function
Jeff Hammel <jhammel@mozilla.com>
parents: 15
diff changeset
71
19
4a1815f8d146 * stub adding new profile to configuration
Jeff Hammel <jhammel@mozilla.com>
parents: 18
diff changeset
72 # update profiles.ini
40
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
73 self.add(name, relative and dirname or path, relative)
19
4a1815f8d146 * stub adding new profile to configuration
Jeff Hammel <jhammel@mozilla.com>
parents: 18
diff changeset
74
16
c80d44e5ca41 flush out new() function
Jeff Hammel <jhammel@mozilla.com>
parents: 15
diff changeset
75 # return the directory name
36
a6222b71aab6 return the right thing, finally
Jeff Hammel <jhammel@mozilla.com>
parents: 31
diff changeset
76 return path
9
b1274abd1206 rework API a bit; the "public" methods are becoming a bit specialized to the command line, which was my fear, so I should probably inherit from ProfileManager to do the interface like I should
Jeff Hammel <jhammel@mozilla.com>
parents: 8
diff changeset
77
19
4a1815f8d146 * stub adding new profile to configuration
Jeff Hammel <jhammel@mozilla.com>
parents: 18
diff changeset
78 def remove(self, name, delete=True):
4a1815f8d146 * stub adding new profile to configuration
Jeff Hammel <jhammel@mozilla.com>
parents: 18
diff changeset
79 """
4a1815f8d146 * stub adding new profile to configuration
Jeff Hammel <jhammel@mozilla.com>
parents: 18
diff changeset
80 remove a profile from profiles.ini
20
49d523a33c89 more stubbing
Jeff Hammel <jhammel@mozilla.com>
parents: 19
diff changeset
81 - delete: delete the profile directory as well
19
4a1815f8d146 * stub adding new profile to configuration
Jeff Hammel <jhammel@mozilla.com>
parents: 18
diff changeset
82 """
37
76fc1a23182c instantiate a parser
Jeff Hammel <jhammel@mozilla.com>
parents: 36
diff changeset
83 parser = self.parser()
76fc1a23182c instantiate a parser
Jeff Hammel <jhammel@mozilla.com>
parents: 36
diff changeset
84 section = self.section(name, parser)
21
15484adb9758 note what section a a profile is in
Jeff Hammel <jhammel@mozilla.com>
parents: 20
diff changeset
85 if section is None:
47
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
86 raise ProfileNotFound(profile, self.profiles)
22
956f5a4c589a * restructure utility functions to do less more efficiently
Jeff Hammel <jhammel@mozilla.com>
parents: 21
diff changeset
87 if delete: # remove the profile from disk
956f5a4c589a * restructure utility functions to do less more efficiently
Jeff Hammel <jhammel@mozilla.com>
parents: 21
diff changeset
88 shutil.rmtree(self.path(name))
956f5a4c589a * restructure utility functions to do less more efficiently
Jeff Hammel <jhammel@mozilla.com>
parents: 21
diff changeset
89 parser.remove_section(section)
51
dc9324b52c2a * add write convenience function
Jeff Hammel <jhammel@mozilla.com>
parents: 50
diff changeset
90 self.write(parser)
19
4a1815f8d146 * stub adding new profile to configuration
Jeff Hammel <jhammel@mozilla.com>
parents: 18
diff changeset
91
4
35dc297efa25 adding listing function and other cleanup
Jeff Hammel <jhammel@mozilla.com>
parents: 3
diff changeset
92 def list(self, directories=False):
35dc297efa25 adding listing function and other cleanup
Jeff Hammel <jhammel@mozilla.com>
parents: 3
diff changeset
93 """
35dc297efa25 adding listing function and other cleanup
Jeff Hammel <jhammel@mozilla.com>
parents: 3
diff changeset
94 lists the profiles available in the config file
6
2a3f5cdfd60c flush out helper functions and list directories
Jeff Hammel <jhammel@mozilla.com>
parents: 5
diff changeset
95 - directories : display the directories
4
35dc297efa25 adding listing function and other cleanup
Jeff Hammel <jhammel@mozilla.com>
parents: 3
diff changeset
96 """
9
b1274abd1206 rework API a bit; the "public" methods are becoming a bit specialized to the command line, which was my fear, so I should probably inherit from ProfileManager to do the interface like I should
Jeff Hammel <jhammel@mozilla.com>
parents: 8
diff changeset
97 profiles = self.profiles_dict()
38
81500171fda8 change output format
Jeff Hammel <jhammel@mozilla.com>
parents: 37
diff changeset
98 if not directories:
81500171fda8 change output format
Jeff Hammel <jhammel@mozilla.com>
parents: 37
diff changeset
99 return sorted(profiles.keys())
81500171fda8 change output format
Jeff Hammel <jhammel@mozilla.com>
parents: 37
diff changeset
100 return dict([(name, self.path(name)) for name in profiles.keys()])
4
35dc297efa25 adding listing function and other cleanup
Jeff Hammel <jhammel@mozilla.com>
parents: 3
diff changeset
101
40
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
102 def clone(self, source, dest, add=True):
0
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
103 """
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
104 clones the profile `source` and output to `dest`
40
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
105 - add: add the profile to the profiles.ini file
0
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
106 """
45
6feee8d04db4 even more cleanup
Jeff Hammel <jhammel@mozilla.com>
parents: 43
diff changeset
107
6feee8d04db4 even more cleanup
Jeff Hammel <jhammel@mozilla.com>
parents: 43
diff changeset
108 # filesystem path of the `from` profile
6feee8d04db4 even more cleanup
Jeff Hammel <jhammel@mozilla.com>
parents: 43
diff changeset
109 source_path = self.path(source)
7
d3b22d086934 comments for what to do next
Jeff Hammel <jhammel@mozilla.com>
parents: 6
diff changeset
110
8
7205cb6f5530 various flushing out, deleting old TODOs and making new ones
Jeff Hammel <jhammel@mozilla.com>
parents: 7
diff changeset
111 # dest: fs path to back up to
7205cb6f5530 various flushing out, deleting old TODOs and making new ones
Jeff Hammel <jhammel@mozilla.com>
parents: 7
diff changeset
112 relative = False
40
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
113 if os.path.sep in dest:
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
114 if not os.path.isabs(dest):
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
115 dest = os.path.abspath(dest)
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
116 dirname = dest
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
117 name = os.path.basename(dest)
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
118 else:
46
df1b2e48dddb handle hashing for clones only if they are added to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 45
diff changeset
119 name = dest
8
7205cb6f5530 various flushing out, deleting old TODOs and making new ones
Jeff Hammel <jhammel@mozilla.com>
parents: 7
diff changeset
120 relative = True
46
df1b2e48dddb handle hashing for clones only if they are added to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 45
diff changeset
121 if add:
df1b2e48dddb handle hashing for clones only if they are added to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 45
diff changeset
122 dirname = '%s.%s' % (self.hash(), name)
48
09a2666999fa * restore profiles.ini to base in tests
Jeff Hammel <jhammel@mozilla.com>
parents: 47
diff changeset
123 dest = os.path.join(self.profile_dir, dirname)
7
d3b22d086934 comments for what to do next
Jeff Hammel <jhammel@mozilla.com>
parents: 6
diff changeset
124
40
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
125 # update profiles.ini
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
126 if add:
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
127 self.add(name, dirname, relative)
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
128
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
129 # copy the files
8
7205cb6f5530 various flushing out, deleting old TODOs and making new ones
Jeff Hammel <jhammel@mozilla.com>
parents: 7
diff changeset
130 shutil.copytree(source_path, dest, symlinks=False)
43
49cc40572f46 test cloning
Jeff Hammel <jhammel@mozilla.com>
parents: 42
diff changeset
131
49cc40572f46 test cloning
Jeff Hammel <jhammel@mozilla.com>
parents: 42
diff changeset
132 return dest
1
979315ed0816 mucho cleanup on optionparser stuff
Jeff Hammel <jhammel@mozilla.com>
parents: 0
diff changeset
133
0
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
134 def backup(self, profile, dest=None):
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
135 """
56
2dde7dcc899e better docstring
Jeff Hammel <jhammel@mozilla.com>
parents: 54
diff changeset
136 backup a profile
0
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
137 - profile: name of the profile to be backed up
56
2dde7dcc899e better docstring
Jeff Hammel <jhammel@mozilla.com>
parents: 54
diff changeset
138 - dest: name of the destination; if not given, a default is used
0
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
139 """
47
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
140
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
141 # get the profile section
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
142 parser = self.parser()
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
143 section = self.section(profile)
58
ce6a101fb239 check for section; of course profile will not be none
Jeff Hammel <jhammel@mozilla.com>
parents: 57
diff changeset
144 if section is None:
47
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
145 raise ProfileNotFound(profile, self.profiles)
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
146
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
147 # determine destination directory
0
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
148 if dest is None:
8
7205cb6f5530 various flushing out, deleting old TODOs and making new ones
Jeff Hammel <jhammel@mozilla.com>
parents: 7
diff changeset
149 dest = '%s.%d.bak' % (profile, int(time.time()))
47
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
150 name = dest
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
151 backups_dir = os.path.join(self.profile_dir, self.backups_dir)
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
152 if not os.path.exists(backups_dir):
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
153 os.mkdir(backups_dir)
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
154 dest = os.path.join(backups_dir, dest)
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
155 else:
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
156 if not os.path.isabs(dest):
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
157 dest = os.path.abspath(dest)
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
158 name = dest
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
159
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
160 # copy the files
45
6feee8d04db4 even more cleanup
Jeff Hammel <jhammel@mozilla.com>
parents: 43
diff changeset
161 self.clone(profile, dest, add=False)
47
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
162
51
dc9324b52c2a * add write convenience function
Jeff Hammel <jhammel@mozilla.com>
parents: 50
diff changeset
163 # add backup entry to profiles.ini (colon separated):
0
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
164 # `Backup=$(profile)s.$(datestamp)s.bak`
51
dc9324b52c2a * add write convenience function
Jeff Hammel <jhammel@mozilla.com>
parents: 50
diff changeset
165 if parser.has_option(section, 'Backups'):
dc9324b52c2a * add write convenience function
Jeff Hammel <jhammel@mozilla.com>
parents: 50
diff changeset
166 backups = '%s:%s' % (parser.get(section, 'Backups'), name)
dc9324b52c2a * add write convenience function
Jeff Hammel <jhammel@mozilla.com>
parents: 50
diff changeset
167 else:
dc9324b52c2a * add write convenience function
Jeff Hammel <jhammel@mozilla.com>
parents: 50
diff changeset
168 backups = name
dc9324b52c2a * add write convenience function
Jeff Hammel <jhammel@mozilla.com>
parents: 50
diff changeset
169 parser.set(section, 'Backups', backups)
dc9324b52c2a * add write convenience function
Jeff Hammel <jhammel@mozilla.com>
parents: 50
diff changeset
170 self.write(parser)
0
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
171
52
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
172 def backups(self, profile=None, datestamp=None):
10
c77e9bef78d6 * update list of public API functions
Jeff Hammel <jhammel@mozilla.com>
parents: 9
diff changeset
173 """
c77e9bef78d6 * update list of public API functions
Jeff Hammel <jhammel@mozilla.com>
parents: 9
diff changeset
174 list backups for a given profile, or all profiles if the
c77e9bef78d6 * update list of public API functions
Jeff Hammel <jhammel@mozilla.com>
parents: 9
diff changeset
175 profile is not given; returns a list of backups if
c77e9bef78d6 * update list of public API functions
Jeff Hammel <jhammel@mozilla.com>
parents: 9
diff changeset
176 profile is given or a dictionary of lists otherwise
53
c279d2797d45 document datestamp argument
Jeff Hammel <jhammel@mozilla.com>
parents: 52
diff changeset
177 - datestamp: format of date; otherwise, seconds since epoch
10
c77e9bef78d6 * update list of public API functions
Jeff Hammel <jhammel@mozilla.com>
parents: 9
diff changeset
178 """
52
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
179 if profile is None: # all profiles
10
c77e9bef78d6 * update list of public API functions
Jeff Hammel <jhammel@mozilla.com>
parents: 9
diff changeset
180 retval = {}
52
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
181 profiles_dict = self.profiles_dict()
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
182 for profile in profiles_dict:
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
183 if 'Backups' in profiles_dict[profile]:
64
18f16bd1ba6b finish backups listing function and formatting for it
Jeff Hammel <jhammel@mozilla.com>
parents: 63
diff changeset
184 retval[profile] = self.backups(profile, datestamp)
10
c77e9bef78d6 * update list of public API functions
Jeff Hammel <jhammel@mozilla.com>
parents: 9
diff changeset
185 return retval
52
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
186
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
187 # single profile
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
188 profile_dict = self.profile_dict(profile)
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
189 if 'Backups' not in profile_dict:
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
190 return []
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
191 backups = profile_dict['Backups'].split(':')
63
2f58555b3b28 correct variable names
Jeff Hammel <jhammel@mozilla.com>
parents: 62
diff changeset
192 backups_dirs = []
52
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
193 for backup in backups:
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
194 if os.path.isabs(backup):
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
195 backup_dir = backup
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
196 else:
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
197 backup_dir = os.path.join(self.profile_dir, self.backups_dir, backup)
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
198 backups_dirs.append((backup, int(os.path.getmtime(backup_dir))))
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
199 # TODO: check if the getmtime == the datestamp for relative backups
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
200
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
201 # sort by reverse datestamp
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
202 backups_dirs.sort(key=lambda x: x[1], reverse=True)
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
203
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
204 # format to datestamps, if applicable
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
205 if datestamp:
63
2f58555b3b28 correct variable names
Jeff Hammel <jhammel@mozilla.com>
parents: 62
diff changeset
206 backups_dirs = [ (i[0], time.strftime(datestamp,
52
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
207 time.localtime(int(i[1]))))
63
2f58555b3b28 correct variable names
Jeff Hammel <jhammel@mozilla.com>
parents: 62
diff changeset
208 for i in backups_dirs ]
52
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
209
85b5fe402ab4 finish backups functionality (to test)
Jeff Hammel <jhammel@mozilla.com>
parents: 51
diff changeset
210 return backups_dirs
10
c77e9bef78d6 * update list of public API functions
Jeff Hammel <jhammel@mozilla.com>
parents: 9
diff changeset
211
0
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
212 def restore(self, profile, date=None, delete=False):
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
213 """
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
214 restore the profile from a backup
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
215 the most recent backup is used unless `date` is given
65
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
216 - date : date to restore from (will not delete)
0
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
217 - delete : delete the backup after restoration
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
218 """
8
7205cb6f5530 various flushing out, deleting old TODOs and making new ones
Jeff Hammel <jhammel@mozilla.com>
parents: 7
diff changeset
219
65
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
220 assert not (date and delete), 'date and delete cannot be used in conjunction'
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
221
66
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
222 # get the path to the profile
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
223 path = self.path(profile)
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
224
8
7205cb6f5530 various flushing out, deleting old TODOs and making new ones
Jeff Hammel <jhammel@mozilla.com>
parents: 7
diff changeset
225 # get the possible backups
10
c77e9bef78d6 * update list of public API functions
Jeff Hammel <jhammel@mozilla.com>
parents: 9
diff changeset
226 backups = self.backups(profile)
c77e9bef78d6 * update list of public API functions
Jeff Hammel <jhammel@mozilla.com>
parents: 9
diff changeset
227 # TODO: check to see if these all exist (print warnings if not)
8
7205cb6f5530 various flushing out, deleting old TODOs and making new ones
Jeff Hammel <jhammel@mozilla.com>
parents: 7
diff changeset
228
65
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
229 # determine the backup to use
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
230 if date:
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
231
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
232 if isinstance(date, basestring):
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
233
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
234 # test for s since epoch
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
235 seconds_snice_epoch = None
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
236 try:
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
237 seconds_since_epoch = int(date)
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
238
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
239 except ValueError:
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
240 pass
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
241 if seconds_since_epoch and seconds_since_epoch > time.localtime().tm_year:
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
242 date = seconds_since_epoch
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
243 else:
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
244 date = parse(date) # parse date from string
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
245
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
246 if isinstance(date, datetime):
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
247 # convert to s since epoch
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
248 date = time.mktime(date.timetuple())
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
249
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
250 for backup in backups:
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
251 raise NotImplementedError
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
252 else:
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
253 if not backups:
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
254 raise NoBackupError("No backups for profile %s in %s" % (profile, self.profiles))
66
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
255 backup = backups[0]
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
256
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
257 # determine path of the backup
67
7da81d5545a2 missing :
Jeff Hammel <jhammel@mozilla.com>
parents: 66
diff changeset
258 if os.path.isabs(backup[0]):
66
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
259 backup_path = backup
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
260 else:
69
86b137d49467 use only the path element, not the whole tuple
Jeff Hammel <jhammel@mozilla.com>
parents: 67
diff changeset
261 backup_path = os.path.join(self.profile_dir, self.backups_dir, backup[0])
65
1cd3e3c71bff determine which backup to use from the given date
Jeff Hammel <jhammel@mozilla.com>
parents: 64
diff changeset
262
8
7205cb6f5530 various flushing out, deleting old TODOs and making new ones
Jeff Hammel <jhammel@mozilla.com>
parents: 7
diff changeset
263 # restore the backup over ``profile``
66
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
264 # make a backup copy first to avoid data loss
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
265 tempdir = tempfile.mktemp()
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
266 shutil.move(path, tempdir)
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
267 try:
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
268 shutil.copytree(backup_path, path)
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
269 except Exception, e:
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
270 shutil.rmtree(path)
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
271 shutil.move(tempdir, path)
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
272 raise IOError("Couldn't restore backup: %s" % str(e))
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
273 shutil.rmtree(tempdir)
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
274 # TODO: (optionally) make a backup of the current profile before restore
8
7205cb6f5530 various flushing out, deleting old TODOs and making new ones
Jeff Hammel <jhammel@mozilla.com>
parents: 7
diff changeset
275
7205cb6f5530 various flushing out, deleting old TODOs and making new ones
Jeff Hammel <jhammel@mozilla.com>
parents: 7
diff changeset
276 if delete: # delete the backup
66
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
277
10
c77e9bef78d6 * update list of public API functions
Jeff Hammel <jhammel@mozilla.com>
parents: 9
diff changeset
278 # delete the directory
66
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
279 shutil.rmtree(backup_path)
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
280
10
c77e9bef78d6 * update list of public API functions
Jeff Hammel <jhammel@mozilla.com>
parents: 9
diff changeset
281 # delete the entry from ``profiles.ini``
66
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
282 parser = self.parser()
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
283 section = self.section(profile)
70
6e282cacd5f0 split the string
Jeff Hammel <jhammel@mozilla.com>
parents: 69
diff changeset
284 backups = parser.get(section, 'Backups').split(':')
66
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
285 backups = [ i for i in backups if i != backup[0] ]
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
286 parser.set(section, 'Backups', ':'.join(backups))
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
287
10
c77e9bef78d6 * update list of public API functions
Jeff Hammel <jhammel@mozilla.com>
parents: 9
diff changeset
288 # if there are no backups, delete the ``backups`` line
66
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
289 # and the backups directory
70
6e282cacd5f0 split the string
Jeff Hammel <jhammel@mozilla.com>
parents: 69
diff changeset
290 import pdb; pdb.set_trace()
66
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
291 if not backups:
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
292 parser.remove(section, 'Backups')
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
293 backups_dir = os.path.join(self.profile_dir, self.backups_dir)
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
294 if not os.listdir(backups_dir):
67dc95a355cc finish basic restore logic
Jeff Hammel <jhammel@mozilla.com>
parents: 65
diff changeset
295 shutil.rmtree(backups_dir)
47
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
296
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
297 def temporary(self):
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
298 """make a temporary profile"""
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
299 raise NotImplementedError
0
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
300
5
ca57920aa223 adding better formatting for list
Jeff Hammel <jhammel@mozilla.com>
parents: 4
diff changeset
301 def merge(self, output, *profiles):
0
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
302 """merge a set of profiles (not trivial!)"""
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
303 raise NotImplementedError
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
304
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
305 ### internal functions
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
306
40
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
307 def add(self, profile, path, relative=True):
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
308 """
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
309 add a profile entry to profiles.ini
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
310 """
41
769447f8cd08 cleanup
Jeff Hammel <jhammel@mozilla.com>
parents: 40
diff changeset
311
769447f8cd08 cleanup
Jeff Hammel <jhammel@mozilla.com>
parents: 40
diff changeset
312 # ensure name is not already present
769447f8cd08 cleanup
Jeff Hammel <jhammel@mozilla.com>
parents: 40
diff changeset
313 assert profile not in self.profiles_dict(), 'Profile "%s" already in %s' % (name, self.profiles)
40
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
314 parser = self.parser()
41
769447f8cd08 cleanup
Jeff Hammel <jhammel@mozilla.com>
parents: 40
diff changeset
315
769447f8cd08 cleanup
Jeff Hammel <jhammel@mozilla.com>
parents: 40
diff changeset
316 # find and add the section
40
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
317 ctr = 0
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
318 section = 'Profile%d' % ctr # unsure of this naming convention
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
319 while section in parser.sections():
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
320 ctr += 1
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
321 section = 'Profile%d' % ctr
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
322 parser.add_section(section)
41
769447f8cd08 cleanup
Jeff Hammel <jhammel@mozilla.com>
parents: 40
diff changeset
323
769447f8cd08 cleanup
Jeff Hammel <jhammel@mozilla.com>
parents: 40
diff changeset
324 # add metadata
40
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
325 parser.set(section, 'Name', profile)
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
326 parser.set(section, 'IsRelative', '%d' % int(relative))
42
232188e7c04c more cleanup
Jeff Hammel <jhammel@mozilla.com>
parents: 41
diff changeset
327 parser.set(section, 'Path', path)
40
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
328 if not ctr:
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
329 parser.set(section, 'Default', '1')
41
769447f8cd08 cleanup
Jeff Hammel <jhammel@mozilla.com>
parents: 40
diff changeset
330
769447f8cd08 cleanup
Jeff Hammel <jhammel@mozilla.com>
parents: 40
diff changeset
331 # write the file
51
dc9324b52c2a * add write convenience function
Jeff Hammel <jhammel@mozilla.com>
parents: 50
diff changeset
332 self.write(parser)
40
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
333
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
334 def path(self, profile):
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
335 """returns the path to the profile"""
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
336 profile = self.profile_dict(profile)
62
e29fed5097c3 more case corrections
Jeff Hammel <jhammel@mozilla.com>
parents: 61
diff changeset
337 if profile.get('IsRelative', None) == '1':
e29fed5097c3 more case corrections
Jeff Hammel <jhammel@mozilla.com>
parents: 61
diff changeset
338 return os.path.join(self.profile_dir, profile['Path'])
e29fed5097c3 more case corrections
Jeff Hammel <jhammel@mozilla.com>
parents: 61
diff changeset
339 return profile['Path']
40
34c740d1962d abstract out adding an entry to profiles.ini
Jeff Hammel <jhammel@mozilla.com>
parents: 39
diff changeset
340
22
956f5a4c589a * restructure utility functions to do less more efficiently
Jeff Hammel <jhammel@mozilla.com>
parents: 21
diff changeset
341 def parser(self):
956f5a4c589a * restructure utility functions to do less more efficiently
Jeff Hammel <jhammel@mozilla.com>
parents: 21
diff changeset
342 """
956f5a4c589a * restructure utility functions to do less more efficiently
Jeff Hammel <jhammel@mozilla.com>
parents: 21
diff changeset
343 return a ConfigParser instance appropriate to profiles.ini
956f5a4c589a * restructure utility functions to do less more efficiently
Jeff Hammel <jhammel@mozilla.com>
parents: 21
diff changeset
344 """
25
fc31d3f26755 i seriously need to learn to code
Jeff Hammel <jhammel@mozilla.com>
parents: 24
diff changeset
345 parser = ConfigParser()
57
3b4b87faa2a8 * make options case-sensitive
Jeff Hammel <jhammel@mozilla.com>
parents: 56
diff changeset
346 parser.optionxform = str
25
fc31d3f26755 i seriously need to learn to code
Jeff Hammel <jhammel@mozilla.com>
parents: 24
diff changeset
347 parser.read(self.profiles)
fc31d3f26755 i seriously need to learn to code
Jeff Hammel <jhammel@mozilla.com>
parents: 24
diff changeset
348 return parser
22
956f5a4c589a * restructure utility functions to do less more efficiently
Jeff Hammel <jhammel@mozilla.com>
parents: 21
diff changeset
349
51
dc9324b52c2a * add write convenience function
Jeff Hammel <jhammel@mozilla.com>
parents: 50
diff changeset
350 def write(self, parser):
dc9324b52c2a * add write convenience function
Jeff Hammel <jhammel@mozilla.com>
parents: 50
diff changeset
351 f = file(self.profiles, 'w')
dc9324b52c2a * add write convenience function
Jeff Hammel <jhammel@mozilla.com>
parents: 50
diff changeset
352 parser.write(f)
dc9324b52c2a * add write convenience function
Jeff Hammel <jhammel@mozilla.com>
parents: 50
diff changeset
353 f.close()
0
7301d534bc6c initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
354
22
956f5a4c589a * restructure utility functions to do less more efficiently
Jeff Hammel <jhammel@mozilla.com>
parents: 21
diff changeset
355 def section(self, profile, parser=None):
20
49d523a33c89 more stubbing
Jeff Hammel <jhammel@mozilla.com>
parents: 19
diff changeset
356 """
21
15484adb9758 note what section a a profile is in
Jeff Hammel <jhammel@mozilla.com>
parents: 20
diff changeset
357 returns the name of the section that a profile is in or None
15484adb9758 note what section a a profile is in
Jeff Hammel <jhammel@mozilla.com>
parents: 20
diff changeset
358 if not found
20
49d523a33c89 more stubbing
Jeff Hammel <jhammel@mozilla.com>
parents: 19
diff changeset
359 """
22
956f5a4c589a * restructure utility functions to do less more efficiently
Jeff Hammel <jhammel@mozilla.com>
parents: 21
diff changeset
360 if parser is None:
29
105ecbac0928 fix some test failures
Jeff Hammel <jhammel@mozilla.com>
parents: 27
diff changeset
361 parser = self.parser()
31
216a74146d16 sections, plural
Jeff Hammel <jhammel@mozilla.com>
parents: 30
diff changeset
362 for section in parser.sections():
61
24782e4c70ca now that we are case sensitive, correct case for getting options
Jeff Hammel <jhammel@mozilla.com>
parents: 59
diff changeset
363 if not parser.has_option(section, 'Name'):
21
15484adb9758 note what section a a profile is in
Jeff Hammel <jhammel@mozilla.com>
parents: 20
diff changeset
364 continue # not a profile
61
24782e4c70ca now that we are case sensitive, correct case for getting options
Jeff Hammel <jhammel@mozilla.com>
parents: 59
diff changeset
365 if parser.get(section, 'Name') == profile:
21
15484adb9758 note what section a a profile is in
Jeff Hammel <jhammel@mozilla.com>
parents: 20
diff changeset
366 return section
20
49d523a33c89 more stubbing
Jeff Hammel <jhammel@mozilla.com>
parents: 19
diff changeset
367
27
5988a15da3b4 things are being awful; checking in anyway
Jeff Hammel <jhammel@mozilla.com>
parents: 26
diff changeset
368 def profile_dict(self, profile):
5988a15da3b4 things are being awful; checking in anyway
Jeff Hammel <jhammel@mozilla.com>
parents: 26
diff changeset
369 """
5988a15da3b4 things are being awful; checking in anyway
Jeff Hammel <jhammel@mozilla.com>
parents: 26
diff changeset
370 return option dictionary for a single profile
5988a15da3b4 things are being awful; checking in anyway
Jeff Hammel <jhammel@mozilla.com>
parents: 26
diff changeset
371 """
5988a15da3b4 things are being awful; checking in anyway
Jeff Hammel <jhammel@mozilla.com>
parents: 26
diff changeset
372 parser = self.parser()
5988a15da3b4 things are being awful; checking in anyway
Jeff Hammel <jhammel@mozilla.com>
parents: 26
diff changeset
373 section = self.section(profile, parser)
5988a15da3b4 things are being awful; checking in anyway
Jeff Hammel <jhammel@mozilla.com>
parents: 26
diff changeset
374 if section is None:
47
420becb84df7 * move exception string to the exception itself
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
375 raise ProfileNotFound(profile, self.profiles)
27
5988a15da3b4 things are being awful; checking in anyway
Jeff Hammel <jhammel@mozilla.com>
parents: 26
diff changeset
376 return dict(parser.items(section))
5988a15da3b4 things are being awful; checking in anyway
Jeff Hammel <jhammel@mozilla.com>
parents: 26
diff changeset
377
9
b1274abd1206 rework API a bit; the "public" methods are becoming a bit specialized to the command line, which was my fear, so I should probably inherit from ProfileManager to do the interface like I should
Jeff Hammel <jhammel@mozilla.com>
parents: 8
diff changeset
378 def profiles_dict(self):
b1274abd1206 rework API a bit; the "public" methods are becoming a bit specialized to the command line, which was my fear, so I should probably inherit from ProfileManager to do the interface like I should
Jeff Hammel <jhammel@mozilla.com>
parents: 8
diff changeset
379 """
b1274abd1206 rework API a bit; the "public" methods are becoming a bit specialized to the command line, which was my fear, so I should probably inherit from ProfileManager to do the interface like I should
Jeff Hammel <jhammel@mozilla.com>
parents: 8
diff changeset
380 return nested dict of all profiles
b1274abd1206 rework API a bit; the "public" methods are becoming a bit specialized to the command line, which was my fear, so I should probably inherit from ProfileManager to do the interface like I should
Jeff Hammel <jhammel@mozilla.com>
parents: 8
diff changeset
381 """
22
956f5a4c589a * restructure utility functions to do less more efficiently
Jeff Hammel <jhammel@mozilla.com>
parents: 21
diff changeset
382 # assumes profiles have unique names
956f5a4c589a * restructure utility functions to do less more efficiently
Jeff Hammel <jhammel@mozilla.com>
parents: 21
diff changeset
383 parser = self.parser()
9
b1274abd1206 rework API a bit; the "public" methods are becoming a bit specialized to the command line, which was my fear, so I should probably inherit from ProfileManager to do the interface like I should
Jeff Hammel <jhammel@mozilla.com>
parents: 8
diff changeset
384 retval = {}
b1274abd1206 rework API a bit; the "public" methods are becoming a bit specialized to the command line, which was my fear, so I should probably inherit from ProfileManager to do the interface like I should
Jeff Hammel <jhammel@mozilla.com>
parents: 8
diff changeset
385 for section in parser.sections():
b1274abd1206 rework API a bit; the "public" methods are becoming a bit specialized to the command line, which was my fear, so I should probably inherit from ProfileManager to do the interface like I should
Jeff Hammel <jhammel@mozilla.com>
parents: 8
diff changeset
386 if section == 'General':
b1274abd1206 rework API a bit; the "public" methods are becoming a bit specialized to the command line, which was my fear, so I should probably inherit from ProfileManager to do the interface like I should
Jeff Hammel <jhammel@mozilla.com>
parents: 8
diff changeset
387 continue
59
ee2777913a9e check the correct way to see if the option is there
Jeff Hammel <jhammel@mozilla.com>
parents: 58
diff changeset
388 if not parser.has_option(section, 'Name'):
9
b1274abd1206 rework API a bit; the "public" methods are becoming a bit specialized to the command line, which was my fear, so I should probably inherit from ProfileManager to do the interface like I should
Jeff Hammel <jhammel@mozilla.com>
parents: 8
diff changeset
389 continue
61
24782e4c70ca now that we are case sensitive, correct case for getting options
Jeff Hammel <jhammel@mozilla.com>
parents: 59
diff changeset
390 name = parser.get(section, 'Name')
9
b1274abd1206 rework API a bit; the "public" methods are becoming a bit specialized to the command line, which was my fear, so I should probably inherit from ProfileManager to do the interface like I should
Jeff Hammel <jhammel@mozilla.com>
parents: 8
diff changeset
391 retval[name] = self.profile_dict(name)
b1274abd1206 rework API a bit; the "public" methods are becoming a bit specialized to the command line, which was my fear, so I should probably inherit from ProfileManager to do the interface like I should
Jeff Hammel <jhammel@mozilla.com>
parents: 8
diff changeset
392 return retval
b1274abd1206 rework API a bit; the "public" methods are becoming a bit specialized to the command line, which was my fear, so I should probably inherit from ProfileManager to do the interface like I should
Jeff Hammel <jhammel@mozilla.com>
parents: 8
diff changeset
393
8
7205cb6f5530 various flushing out, deleting old TODOs and making new ones
Jeff Hammel <jhammel@mozilla.com>
parents: 7
diff changeset
394 def hash(self):
7205cb6f5530 various flushing out, deleting old TODOs and making new ones
Jeff Hammel <jhammel@mozilla.com>
parents: 7
diff changeset
395 """
7205cb6f5530 various flushing out, deleting old TODOs and making new ones
Jeff Hammel <jhammel@mozilla.com>
parents: 7
diff changeset
396 generate a random hash for a new profile
7205cb6f5530 various flushing out, deleting old TODOs and making new ones
Jeff Hammel <jhammel@mozilla.com>
parents: 7
diff changeset
397 """
15
543d08958b67 actually sample 8 random lowercase letters and numbers for the profile hash
Jeff Hammel <jhammel@mozilla.com>
parents: 10
diff changeset
398 population = string.lowercase + string.digits
18
8e651dd8e9ad fix two things about hash() usage
Jeff Hammel <jhammel@mozilla.com>
parents: 16
diff changeset
399 return ''.join(Random().sample(population, 8))
9
b1274abd1206 rework API a bit; the "public" methods are becoming a bit specialized to the command line, which was my fear, so I should probably inherit from ProfileManager to do the interface like I should
Jeff Hammel <jhammel@mozilla.com>
parents: 8
diff changeset
400
b1274abd1206 rework API a bit; the "public" methods are becoming a bit specialized to the command line, which was my fear, so I should probably inherit from ProfileManager to do the interface like I should
Jeff Hammel <jhammel@mozilla.com>
parents: 8
diff changeset
401