diff options
| author | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2007-10-18 16:35:01 +0000 |
|---|---|---|
| committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2007-10-18 16:35:01 +0000 |
| commit | 2b94d96062ac7eb6a15445f74e424b7b08e69a63 (patch) | |
| tree | a4ceb58e4985908f2dd574d498e1e17f38061f5e /contrib/mtn2git/status.py | |
| parent | 51d88fa521229df09a9d624618d7e861d765d21a (diff) | |
| parent | 0ed630ee92d26828b61f1de72dc0b33d2a056123 (diff) | |
merge of '1d0e13e8c6528e7a7037276e3c01cb21dfa085e4'
and '86581f7de9bc72fe5e21778b4442cc0e59e96fbf'
Diffstat (limited to 'contrib/mtn2git/status.py')
| -rw-r--r-- | contrib/mtn2git/status.py | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/contrib/mtn2git/status.py b/contrib/mtn2git/status.py new file mode 100644 index 0000000000..47d06b51fd --- /dev/null +++ b/contrib/mtn2git/status.py @@ -0,0 +1,47 @@ +""" + Copyright (C) 2006, 2007 Holger Hans Peter Freyther + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +""" + +import pickle + +marks = {} +last_mark = 0 +mark_file = None +former_heads = {} +same_revisions = {} + +def load(status_name): + global marks, last_mark, mark_file, former_heads, same_revisions + file = open(status_name, "rb") + marks = pickle.load(file) + last_mark = pickle.load(file) + former_heads = pickle.load(file) + same_revisions = pickle.load(file) + file.close() + +def store(status_name): + global marks, last_mark, mark_file, former_heads, same_revisions + file = open(status_name, "wb") + pickle.dump(marks, file) + pickle.dump(last_mark, file) + pickle.dump(former_heads, file) + pickle.dump(same_revisions, file) + file.close() |
