summaryrefslogtreecommitdiff
path: root/src/libstddjb/openwritenclose_suffix.c
blob: 1c538ed96898b0da08e890e7dc9b63d3c33332e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* ISC license. */

#include <errno.h>
#include <unistd.h>
#include <stdio.h>     /* for rename() */
#include <skalibs/uint64.h>
#include <skalibs/bytestr.h>
#include <skalibs/djbunix.h>

int openwritenclose_suffix_internal (char const *fn, char const *s, unsigned int n, uint64 *dev, uint64 *ino, int dosync, char const *suffix)
{
  uint64 tmpdev, tmpino ;
  unsigned int len = str_len(fn) ;
  unsigned int suffixlen = str_len(suffix) ;
  char tmp[len + suffixlen + 1] ;
  byte_copy(tmp, len, fn) ;
  byte_copy(tmp + len, suffixlen + 1, suffix) ;
  if (!openwritenclose_unsafe_internal(tmp, s, n, dev ? &tmpdev : 0, ino ? &tmpino : 0, dosync)) return 0 ;	
  if (rename(tmp, fn) < 0)
  {
    register int e = errno ;
    unlink(tmp) ;
    errno = e ;
    return 0 ;
  }
  if (dev) *dev = tmpdev ;
  if (ino) *ino = tmpino ;
  return 1 ;
}