3 # Copyright (c) 2006 by Aurelien Foret <orelien@chez.com>
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
28 def __init__(self
, root
, name
):
32 filename
= os
.path
.join(self
.root
, self
.name
)
33 self
.checksum
= getmd5sum(filename
)
34 self
.mtime
= getmtime(filename
)
37 return "%s (%s / %lu)" % (self
.name
, self
.checksum
, self
.mtime
)
45 filename
= os
.path
.join(self
.root
, self
.name
)
46 checksum
= getmd5sum(filename
)
47 mtime
= getmtime(filename
)
49 vprint("\tismodified(%s)" % self
.name
)
50 vprint("\t\told: %s / %s" % (self
.checksum
, self
.mtime
))
51 vprint("\t\tnew: %s / %s" % (checksum
, mtime
))
53 if self
.checksum
!= checksum \
54 or (self
.mtime
[1], self
.mtime
[2]) != (mtime
[1], mtime
[2]):
63 filename
= os
.path
.join(self
.root
, self
.name
)
64 os
.utime(filename
, (355, 355))
65 self
.mtime
= getmtime(filename
)
66 vprint("\tmtime reset (%s)" % self
.name
)
68 if __name__
== "__main__":
69 f
= pmfile("/tmp", "foobar")
71 # vim: set ts=4 sw=4 et: