summaryrefslogtreecommitdiff
path: root/src/file_list.c
blob: a8b3f7a3aca5db3fcfcd1c6cc128925c452fbec4 (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
213
214
215
216
217
218
219
220
221
222
223
/*
 *  rharchive
 *
 *  The Radio Helsinki Archive Daemon
 *
 *
 *  Copyright (C) 2009-2014 Christian Pointner <equinox@helsinki.at>
 *
 *  This file is part of rharchive.
 *
 *  rharchive 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
 *  any later version.
 *
 *  rharchive 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 rharchive. If not, see <http://www.gnu.org/licenses/>.
 *
 *  In addition, as a special exception, the copyright holders hereby
 *  grant permission for non-GPL-compatible GStreamer plugins to be used
 *  and distributed together with GStreamer and rharchive.
 *  This permission goes above and beyond the permissions granted by the
 *  GPL license rharchive is covered by.
 */

#define _GNU_SOURCE
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <time.h>

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>

#include <glib.h>

#include "datatypes.h"
#include "file_list.h"
#include "slist.h"
#include "log.h"

static void delete_file(void* element)
{
  file_t* deletee = (file_t*)element;
  log_printf(INFO, "removing/closing file '%s' -> %d", deletee->path_, deletee->fd_);
  if(deletee->path_) free(deletee->path_);
  if(deletee->fd_ >= 0) close(deletee->fd_);
  if(deletee->pp_child_) free_child(deletee->pp_child_);
}

int file_list_init(file_list_t* list)
{
  g_mutex_init(&(list->mutex_));
  return slist_init(&(list->list_), &delete_file);
}

void file_list_clear(file_list_t* list)
{
  g_mutex_lock(&(list->mutex_));
  slist_clear(&(list->list_));
  g_mutex_unlock(&(list->mutex_));
}

file_t* file_list_add(file_list_t* list, struct tm* time, const char* type, const char* format, const char* dir, mode_t mode, int nocache)
{
  if(!list || !(&(list->mutex_)))
    return NULL;

  file_t* tmp = malloc(sizeof(file_t));
  if(!tmp)
    return NULL;

  log_printf(INFO, "%s time: %02d:%02d:%02d on %d.%d.%d%s", type, time->tm_hour, time->tm_min, time->tm_sec, time->tm_mday, time->tm_mon+1, time->tm_year+1900, time->tm_isdst > 0 ? " (DST)": "");

  char name[256];
  strftime(name, sizeof(name), format, time);
  int len = asprintf(&(tmp->path_), "%s/%s", dir, name);
  if(len == -1) {
    free(tmp);
    return NULL;
  }

  log_printf(INFO, "%s filename is: %s(.?)", type, tmp->path_);
  tmp->fd_ = FILE_CLOSED;
  tmp->mode_ = mode;
  tmp->nocache_ = nocache;
  tmp->pp_child_ = NULL;

  g_mutex_lock(&(list->mutex_));
  if(slist_add(&(list->list_), tmp) == NULL) {
    g_mutex_unlock(&(list->mutex_));
    free(tmp->path_);
    free(tmp);
    return NULL;
  }
  g_mutex_unlock(&(list->mutex_));

  return tmp;
}

int file_list_remove(file_list_t* list, int fd)
{
  if(!list || !(&(list->mutex_)))
    return -1;

  g_mutex_lock(&(list->mutex_));
  slist_element_t* tmp = list->list_.first_;
  while(tmp) {
    if(((file_t*)tmp->data_)->fd_ == fd) {
      slist_remove(&(list->list_), tmp->data_);
      break;
    }
    tmp = tmp->next_;
  }
  g_mutex_unlock(&(list->mutex_));

  return 0;
}

int file_list_call_post_process(file_list_t* list, int fd, char* script)
{
  if(!list || !(&(list->mutex_)))
    return -1;

  g_mutex_lock(&(list->mutex_));
  slist_element_t* tmp = list->list_.first_;
  while(tmp) {
    if(((file_t*)tmp->data_)->fd_ == fd) {
      log_printf(INFO, "calling post processing for '%s'", ((file_t*)tmp->data_)->path_);
      close(((file_t*)tmp->data_)->fd_);
      ((file_t*)tmp->data_)->fd_ = FILE_POST_PROCESS;

      char* const argv[] = { script, ((file_t*)tmp->data_)->path_, NULL };
      char* const evp[] = { NULL };
      ((file_t*)tmp->data_)->pp_child_ = rh_exec(script, argv, evp);
      if(!((file_t*)tmp->data_)->pp_child_)
        slist_remove(&(list->list_), tmp->data_);

      break;
    }
    tmp = tmp->next_;
  }
  g_mutex_unlock(&(list->mutex_));

  return 0;
}

int file_list_waitpid(file_list_t* list)
{
  if(!list || !(&(list->mutex_)))
    return -1;

  g_mutex_lock(&(list->mutex_));
  slist_element_t* tmp = list->list_.first_;
  while(tmp) {
    if(((file_t*)tmp->data_)->fd_ == FILE_POST_PROCESS) {
      int ret = rh_waitpid(((file_t*)tmp->data_)->pp_child_, NULL);
      file_t* deletee = tmp->data_;
      tmp = tmp->next_;
      if(ret)
        slist_remove(&(list->list_), deletee);
    }
    else
      tmp = tmp->next_;
  }
  g_mutex_unlock(&(list->mutex_));

  return 0;
}

int open_file(file_t* file)
{
  if(!file || file->fd_ != FILE_CLOSED) // file already open!
    return -1;

  char* orig_path = file->path_;
  int cnt = 0;
  do {
    int flags = O_WRONLY | O_CREAT | O_EXCL;
    if(file->nocache_)
      flags |= O_DIRECT;
    file->fd_ = open(file->path_, flags, file->mode_);
    if(file->fd_ < 0) {
      if(errno != EEXIST) {
            // TODO: thread safe strerror
        log_printf(ERROR, "can't open file '%s': %s", file->path_, strerror(errno));
        if(orig_path != file->path_)
          free(orig_path);
        file->fd_ = FILE_CLOSED;
        return -1;
      }
      cnt++;
      char* tmp;
      int len = asprintf(&tmp, "%s.%d", orig_path, cnt);
      if(len == -1) {
        if(orig_path != file->path_)
          free(orig_path);
        return -2;
      }

      if(file->path_ != orig_path)
        free(file->path_);
      file->path_ = tmp;
    }
    fchmod(file->fd_, file->mode_);
  }
  while(file->fd_ < 0);

  if(orig_path != file->path_)
    free(orig_path);

  log_printf(INFO, "opened file '%s' -> %d", file->path_, file->fd_);

  return 0;
}