[PATCH] Allow fast-forward pushing.
[stgit] / stgit / utils.py
CommitLineData
41a6d859
CM
1"""Common utility functions
2"""
3
4__copyright__ = """
5Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License version 2 as
9published by the Free Software Foundation.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19"""
20
21def read_string(filename, multiline = False):
22 """Reads the first line from a file
23 """
24 f = file(filename, 'r')
25 if multiline:
26 string = f.read()
27 else:
28 string = f.readline().strip()
29 f.close()
30 return string
31
32def write_string(filename, string, multiline = False):
33 """Writes string to file and truncates it
34 """
35 f = file(filename, 'w+')
36 if multiline:
37 f.write(string)
38 else:
39 print >> f, string
40 f.close()
41
680e3a32
PBG
42def append_strings(filename, strings):
43 """Appends string sequence to file
44 """
45 f = file(filename, 'a+')
46 for string in strings:
47 print >> f, string
48 f.close()
49
41a6d859
CM
50def append_string(filename, string):
51 """Appends string to file
52 """
53 f = file(filename, 'a+')
54 print >> f, string
55 f.close()
56
57def insert_string(filename, string):
58 """Inserts a string at the beginning of the file
59 """
60 f = file(filename, 'r+')
61 lines = f.readlines()
62 f.seek(0); f.truncate()
63 print >> f, string
64 f.writelines(lines)
65 f.close()
66
67def create_empty_file(name):
68 """Creates an empty file
69 """
70 file(name, 'w+').close()