9e7c00f6fae036570459f44bd759548f58d1c214
[platform/upstream/flac.git] / src / flac / file.c
1 /* flac - Command-line FLAC encoder/decoder
2  * Copyright (C) 2001  Josh Coalson
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17  */
18
19 #ifdef _MSC_VER
20 #include <sys/utime.h> /* for utime() */
21 #include <io.h> /* for chmod() */
22 #else
23 #include <sys/types.h>
24 #include <utime.h> /* for utime() */
25 #include <unistd.h> /* for chown() */
26 #endif
27 #include <sys/stat.h> /* for stat() */
28 #include <string.h> /* for strrchr() */
29 #include "file.h"
30
31 void flac__file_copy_metadata(const char *srcpath, const char *destpath)
32 {
33         struct stat srcstat;
34         struct utimbuf srctime;
35
36         if(0 == stat(srcpath, &srcstat)) {
37                 srctime.actime = srcstat.st_atime;
38                 srctime.modtime = srcstat.st_mtime;
39                 (void)chmod(destpath, srcstat.st_mode);
40                 (void)utime(destpath, &srctime);
41 #ifndef _MSC_VER
42                 (void)chown(destpath, srcstat.st_uid, -1);
43                 (void)chown(destpath, -1, srcstat.st_gid);
44 #endif
45         }
46 }
47
48 off_t flac__file_get_filesize(const char *srcpath)
49 {
50         struct stat srcstat;
51
52         if(0 == stat(srcpath, &srcstat))
53                 return srcstat.st_size;
54         else
55                 return -1;
56 }
57
58 const char *flac__file_get_basename(const char *srcpath)
59 {
60         const char *p;
61
62         p = strrchr(srcpath, '\\');
63         if(0 == p) {
64                 p = strrchr(srcpath, '/');
65                 if(0 == p)
66                         return srcpath;
67         }
68         return ++p;
69 }