summaryrefslogtreecommitdiff
path: root/libmailutils/string/mkfilename.c
blob: d24d2f48a00bc67bab4fe3dab0fd6306bef35e59 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/* GNU Mailutils -- a suite of utilities for electronic mail
   Copyright (C) 2009-2021 Free Software Foundation, Inc.

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 3 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General
   Public License along with this library.  If not,
   see <http://www.gnu.org/licenses/>. */

#if HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <mailutils/alloc.h>
#include <mailutils/util.h>

/*
 * Given directory name DIR, file name FILE and optional suffix SUF,
 * return full pathname composed from these three.  In the resulting
 * string, DIR and FILE are separated by '/'.  If SUF is supplied, it
 * is concatenated to the resulting string without additional
 * separators.
 *
 * Corner cases:
 *   all three arguments are NULL or empty
 *     Return NULL and set errno to EINVAL.
 *   dir is NULL
 *     Return FILE and SUF concatenated.
 *   file is NULL, suf is not NULL
 *     Same as mu_make_file_name_suf(dir, suf, NULL);
 *   file is NULL, suf is NULL
 *     Return allocated copy of DIR.
 */
char *
mu_make_file_name_suf (const char *dir, const char *file, const char *suf)
{
  char *tmp;
  size_t dirlen, suflen, fillen;
  size_t len;

  dirlen = dir ? strlen (dir) : 0;
  fillen = file ? strlen (file) : 0;
  suflen = suf ? strlen (suf) : 0;

  len = suflen + fillen;
  if (dirlen == 0)
    {
      if (len == 0)
	{
	  errno = EINVAL;
	  return NULL;
	}
    }
  else
    {
      if (len) len++; // account for the '/' separator
      while (dirlen > 0 && dir[dirlen-1] == '/')
	dirlen--;
    }
  len += dirlen;

  tmp = malloc (len + 1);
  if (tmp)
    {
      if (dirlen)
	{
	  memcpy (tmp, dir, dirlen);
	  if (fillen || suflen)
	    tmp[dirlen++] = '/';
	}
      if (fillen)
	memcpy (tmp + dirlen, file, fillen);
      if (suflen)
	memcpy (tmp + dirlen + fillen, suf, suflen);
      tmp[len] = 0;
    }
  return tmp;
}

Return to:

Send suggestions and report system problems to the System administrator.