aboutsummaryrefslogtreecommitdiff
path: root/src/process.c
blob: dd499bd60145c8121ac5ea8279ff4f557173263c (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
/* wydawca - automatic release submission daemon
   Copyright (C) 2007, 2009 Sergey Poznyakoff

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

   Wydawca 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 General Public License for more details.

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

#include "wydawca.h"

struct directory_list
{
  struct directory_list *next;
  struct directory_pair pair;
};

static struct directory_list *dlist;

void
register_directory_pair (struct directory_pair *dpair)
{
  struct directory_list *dl = xmalloc (sizeof *dl);
  dl->pair = *dpair;
  dl->next = dlist;
  dlist = dl;
}

/* Return true if NAME is a directory. If stat fails, return the error
   code in EC */
int
test_dir (const char *name, int *ec)
{
  struct stat st;

  *ec = 0;
  if (stat (name, &st))
    {
      *ec = errno;
      return 1;
    }
  return S_ISDIR (st.st_mode) == 0;
}

/* Return a textual representation of a file TYPE */
const char *
file_type_str (enum file_type type)
{
  switch (type)
    {
    case file_dist:
      return "distributive";

    case file_signature:
      return "detached signature";

    case file_directive:
      return "signed upload directive";
    }
  return "UNKNOWN";
}

/* Parse file NAME: determine its type and root name and store this
   information in FINFO */
void
parse_file_name (const char *name, struct file_info *finfo)
{
  static struct suffix
  {
    const char *suf;
    unsigned len;
    enum file_type type;
  } suftab[] = {
    { SUF_SIG, SUF_SIG_LEN, file_signature },
    { SUF_DIR, SUF_DIR_LEN, file_directive },
    { "", 0, file_dist }
  };
  int i;
  unsigned len = strlen (name);

  for (i = 0; i < sizeof suftab / sizeof suftab[0]; i++)
    {
      if (len >= suftab[i].len
	  && memcmp (name + len - suftab[i].len,
		     suftab[i].suf, suftab[i].len) == 0)
	{
	  finfo->name = xstrdup (name);
	  finfo->type = suftab[i].type;
	  finfo->root_len = len - suftab[i].len;
	  return;
	}
    }
  abort (); /* should not happen */
}

/* Scan upload directory from the DPAIR and register all files found
   there, forming triplets when possible */
void
scan_directory_pair (struct directory_pair *dpair)
{
  DIR *dir;
  struct dirent *ent;

  if (debug_level)
    logmsg (LOG_DEBUG, "%s -> %s", dpair->source_dir,
	    mu_url_to_string (dpair->dest_url));

  if (chdir (dpair->source_dir))
    {
      logmsg (LOG_ERR, "cannot chdir to %s: %s", dpair->source_dir,
	      strerror (errno));
      return;
    }

  dir = opendir (".");
  if (!dir)
    {
      logmsg (LOG_ERR, "cannot open directory %s: %s", dpair->source_dir,
	      strerror (errno));
      return;
    }

  timer_start ("directory");
  timer_start (dpair->url);
  while ((ent = readdir (dir)))
    {
      struct stat st;
      struct file_info finfo;

      if (strcmp (ent->d_name, ".") == 0 || strcmp (ent->d_name, "..") == 0)
	continue;

      if (stat (ent->d_name, &st))
	{
	  logmsg (LOG_ERR, "cannot stat file %s/%s: %s",
		  dpair->source_dir, ent->d_name,
		  strerror (errno));
	  continue;
	}

      if (!S_ISREG (st.st_mode))
	{
	  logmsg (LOG_NOTICE, "not a regular file: %s/%s",
		  dpair->source_dir, ent->d_name);
	  continue;
	}

      finfo.sb = st;
      parse_file_name (ent->d_name, &finfo);

      if (debug_level)
	{
	  const char *s = file_type_str (finfo.type);
	  logmsg (LOG_DEBUG, "file %s is %s %s, root %.*s", ent->d_name,
		  strchr ("aeiou", s[0]) ? "an" : "a", s,
		  finfo.root_len, finfo.name);
	}

      register_file (&finfo);
    }

  closedir (dir);

  if (count_collected_triplets () > 0)
    {
      int i;

      for (i = 0; i < access_method_count; i++)
        {
          if (method_init (dpair->access_method[i]))
            {
              logmsg (LOG_ERR, "failed to initialize access method %d", i);
              return;
            }
        }
      enumerate_triplets (dpair);
   }
  timer_stop (dpair->url);
  timer_stop ("directory");
}

static void
close_methods (struct directory_pair *dpair)
{
  int i;
  for (i = 0; i < NITEMS (dpair->access_method); i++)
    method_done (dpair->access_method[i]);
}

/* Scan all configured update directories */
void
scan_directories ()
{
  struct directory_list *dp;

  timer_start ("wydawca");

  for (dp = dlist; dp; dp = dp->next)
    scan_directory_pair (&dp->pair);

  for (dp = dlist; dp; dp = dp->next)
    close_methods (&dp->pair);
  timer_stop ("wydawca");
}

Return to:

Send suggestions and report system problems to the System administrator.