File: mkfilename.c

package info (click to toggle)
mailutils 1%3A3.20-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 38,932 kB
  • sloc: ansic: 187,772; sh: 111,430; yacc: 7,463; cpp: 3,834; makefile: 3,166; lex: 1,972; python: 1,617; exp: 1,563; awk: 152; lisp: 132; sed: 31
file content (106 lines) | stat: -rw-r--r-- 2,747 bytes parent folder | download | duplicates (2)
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/* GNU Mailutils -- a suite of utilities for electronic mail
   Copyright (C) 2009-2025 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 exactly one '/', unless DIR
 * is one or more '/' characters, in which case the two strings are
 * simply concatenated.  If SUF is supplied, it is appended 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.
 *   dir is a sequence of one or more '/'
 *     Return concatenation of arguments.
 *   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.
 */

#define DIRSEP '/'

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;
  int sep = 0;
  
  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
    {
      int i = 0;

      if (len)
	sep = DIRSEP;
      
      if (dir[0] == DIRSEP)
	{
	  for (i = 0; dir[i+1] == DIRSEP; i++);
	  sep = DIRSEP;
	}
      
      while (dirlen > i && dir[dirlen-1] == DIRSEP)
	dirlen--;
    }
  len += dirlen;
  if (sep)
    len++;

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