~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_redel.c

Renamed more stuff to drizzle.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
   along with this program; if not, write to the Free Software
14
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
 
#include "config.h"
17
 
 
18
 
#include "drizzled/internal/my_sys.h"
19
 
#include "drizzled/internal/m_string.h"
20
 
#include "drizzled/error.h"
 
16
#include "mysys_priv.h"
 
17
#include <my_dir.h>
 
18
#include <m_string.h>
 
19
#include "mysys_err.h"
21
20
#if defined(HAVE_UTIME_H)
22
21
#include <utime.h>
23
22
#elif defined(HAVE_SYS_UTIME_H)
28
27
  time_t modtime;
29
28
};
30
29
#endif
31
 
#ifdef HAVE_SYS_STAT_H
32
 
# include <sys/stat.h>
33
 
#endif
34
 
 
35
 
namespace drizzled
36
 
{
37
 
namespace internal
38
 
{
39
30
 
40
31
        /*
41
32
          Rename with copy stat form old file
51
42
int my_redel(const char *org_name, const char *tmp_name, myf MyFlags)
52
43
{
53
44
  int error=1;
 
45
  DBUG_ENTER("my_redel");
 
46
  DBUG_PRINT("my",("org_name: '%s' tmp_name: '%s'  MyFlags: %d",
 
47
                   org_name,tmp_name,MyFlags));
54
48
 
55
49
  if (my_copystat(org_name,tmp_name,MyFlags) < 0)
56
50
    goto end;
57
51
  if (MyFlags & MY_REDEL_MAKE_BACKUP)
58
52
  {
59
 
    char name_buff[FN_REFLEN+20];
 
53
    char name_buff[FN_REFLEN+20];    
60
54
    char ext[20];
61
55
    ext[0]='-';
62
56
    get_date(ext+1,2+4,(time_t) 0);
63
 
    strcpy(strchr(ext, '\0'),REDEL_EXT);
 
57
    strmov(strend(ext),REDEL_EXT);
64
58
    if (my_rename(org_name, fn_format(name_buff, org_name, "", ext, 2),
65
59
                  MyFlags))
66
60
      goto end;
72
66
 
73
67
  error=0;
74
68
end:
75
 
  return(error);
 
69
  DBUG_RETURN(error);
76
70
} /* my_redel */
77
71
 
78
72
 
85
79
 
86
80
  if (stat((char*) from, &statbuf))
87
81
  {
88
 
    errno=errno;
 
82
    my_errno=errno;
89
83
    if (MyFlags & (MY_FAE+MY_WME))
90
84
      my_error(EE_STAT, MYF(ME_BELL+ME_WAITTANG),from,errno);
91
85
    return -1;                          /* Can't get stat on input file */
92
86
  }
93
87
  if ((statbuf.st_mode & S_IFMT) != S_IFREG)
94
88
    return 1;
95
 
  chmod(to, statbuf.st_mode & 07777);           /* Copy modes */
 
89
  VOID(chmod(to, statbuf.st_mode & 07777));             /* Copy modes */
96
90
 
97
91
  if (statbuf.st_nlink > 1 && MyFlags & MY_LINK_WARNING)
98
92
  {
99
93
    if (MyFlags & MY_LINK_WARNING)
100
94
      my_error(EE_LINK_WARNING,MYF(ME_BELL+ME_WAITTANG),from,statbuf.st_nlink);
101
95
  }
102
 
  if(chown(to, statbuf.st_uid, statbuf.st_gid)!=0)
103
 
    return 1;
 
96
  VOID(chown(to, statbuf.st_uid, statbuf.st_gid));      /* Copy ownership */
104
97
 
105
98
#ifndef __ZTC__
106
99
  if (MyFlags & MY_COPYTIME)
108
101
    struct utimbuf timep;
109
102
    timep.actime  = statbuf.st_atime;
110
103
    timep.modtime = statbuf.st_mtime;
111
 
    utime((char*) to, &timep);/* Update last accessed and modified times */
 
104
    VOID(utime((char*) to, &timep));/* Update last accessed and modified times */
112
105
  }
113
106
#else
114
107
  if (MyFlags & MY_COPYTIME)
116
109
    time_t time[2];
117
110
    time[0]= statbuf.st_atime;
118
111
    time[1]= statbuf.st_mtime;
119
 
    utime((char*) to, time);/* Update last accessed and modified times */
 
112
    VOID(utime((char*) to, time));/* Update last accessed and modified times */
120
113
  }
121
114
#endif
122
115
  return 0;
123
116
} /* my_copystat */
124
 
 
125
 
} /* namespace internal */
126
 
} /* namespace drizzled */