aboutsummaryrefslogtreecommitdiff
path: root/stat.c
blob: 06d9d159c62152693cf35f8f963ce8c1300a3514 (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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
/* --------------------------------------------------------------------------*/
/*                                                                           */
/* object for getting file type (dir, link, exe, etc) using a filename       */
/* Written by Hans-Christoph Steiner <hans@at.or.at>                         */
/*                                                                           */
/* Copyright (c) 2006 Hans-Christoph Steiner                                 */
/*                                                                           */
/* This program 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 2            */
/* of the License, or (at your option) any later version.                    */
/*                                                                           */
/* See file LICENSE for further informations on licensing terms.             */
/*                                                                           */
/* This program 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 this program; if not, write to the Free Software Foundation,   */
/* Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.           */
/*                                                                           */
/* --------------------------------------------------------------------------*/

#include <m_pd.h>

#ifdef _WIN32
#define _WIN32_WINNT 0x0400
#include <windows.h>
#include <stdio.h>
#else
#include <stdlib.h>
#endif

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

static char *version = "$Revision: 1.2 $";

t_int stat_instance_count;

#define DEBUG(x)
//#define DEBUG(x) x 

/*------------------------------------------------------------------------------
 *  CLASS DEF
 */
static t_class *stat_class;

typedef struct _stat {
	t_object            x_obj;
	t_symbol            *x_filename;
/* output */
	t_atom              *output; // holder for a list of atoms to be outputted
	t_int               output_count;  // number of atoms in in x->output 
	t_outlet            *x_data_outlet;
	t_outlet            *x_status_outlet;
} t_stat;



/*------------------------------------------------------------------------------
 * SUPPORT FUNCTIONS
 */

/* add one new atom to the list to be outputted */
static void add_atom_to_output(t_stat *x, t_atom *new_atom)
{
    t_atom *new_atom_list;

	new_atom_list = (t_atom *)getbytes((x->output_count + 1) * sizeof(t_atom));
	memcpy(new_atom_list, x->output, x->output_count * sizeof(t_atom));
	freebytes(x->output, x->output_count * sizeof(t_atom));
	x->output = new_atom_list;
	memcpy(x->output + x->output_count, new_atom, sizeof(t_atom));
	++(x->output_count);
}

/*
static void add_symbol_to_output(t_stat *x, t_symbol *s)
{
	t_atom *temp_atom = getbytes(sizeof(t_atom));
	SETSYMBOL(temp_atom, s); 
	add_atom_to_output(x,temp_atom);
	freebytes(temp_atom,sizeof(t_atom));
}
*/
		
static void add_float_to_output(t_stat *x, t_float f)
{
	t_atom *temp_atom = getbytes(sizeof(t_atom));
	SETFLOAT(temp_atom, f);
	add_atom_to_output(x,temp_atom);
	freebytes(temp_atom,sizeof(t_atom));
}

static void reset_output(t_stat *x)
{
	if(x->output)
	{
		freebytes(x->output, x->output_count * sizeof(t_atom));
		x->output = NULL;
		x->output_count = 0;
	}
}

/*------------------------------------------------------------------------------
 * IMPLEMENTATION                    
 */

static void stat_output_error(t_stat *x)
{
	t_atom output_atoms[2];
	switch(errno)
	{
	case EACCES:
		error("[stat]: access denied: %s", x->x_filename->s_name);
		SETSYMBOL(output_atoms, gensym("access_denied"));
		break;
	case EIO:
		error("[stat]: An error occured while reading %s", 
			  x->x_filename->s_name);
		SETSYMBOL(output_atoms, gensym("io_error"));
		break;
	case ELOOP:
		error("[stat]: A loop exists in symbolic links in %s", 
			  x->x_filename->s_name);
		SETSYMBOL(output_atoms, gensym("symlink_loop"));
		break;
	case ENAMETOOLONG:
		error("[stat]: The filename %s is too long", 
			  x->x_filename->s_name);
		SETSYMBOL(output_atoms, gensym("name_too_long"));
		break;
	case ENOENT:
		error("[stat]: %s does not exist", x->x_filename->s_name);
		SETSYMBOL(output_atoms, gensym("does_not_exist"));
		break;
	case ENOTDIR:
		error("[stat]: A component of %s is not a existing folder", 
			  x->x_filename->s_name);
		SETSYMBOL(output_atoms, gensym("not_folder"));
		break;
	case EOVERFLOW:
		error("[stat]: %s caused overflow in stat struct", 
			  x->x_filename->s_name);
		SETSYMBOL(output_atoms, gensym("internal_overflow"));
		break;
	case EFAULT:
		error("[stat]: fault in stat struct (%s)", x->x_filename->s_name);
		SETSYMBOL(output_atoms, gensym("internal_fault"));
		break;
	case EINVAL:
		error("[stat]: invalid argument to stat() (%s)", 
			  x->x_filename->s_name);
		SETSYMBOL(output_atoms, gensym("invalid"));
		break;
	default:
		error("[stat]: unknown error %d: %s", errno, x->x_filename->s_name);
		SETSYMBOL(output_atoms, gensym("unknown"));
	}
	SETSYMBOL(output_atoms + 2, x->x_filename);
	outlet_anything(x->x_status_outlet, gensym("error"), 2, output_atoms);
}

static void stat_output(t_stat* x)
{
	DEBUG(post("stat_output"););
	struct stat stat_buffer;
	int result;

#ifdef _WIN32
	result = _stat(x->x_filename, &stat_buffer);
#else
	result = stat(x->x_filename->s_name, &stat_buffer);
#endif /* _WIN32 */
	if(result != 0)
	{
		stat_output_error(x);
	}
	else
	{
		reset_output(x);
		add_float_to_output(x, (t_float) stat_buffer.st_mode);
		add_float_to_output(x, (t_float) stat_buffer.st_nlink);
		add_float_to_output(x, (t_float) stat_buffer.st_uid);
		add_float_to_output(x, (t_float) stat_buffer.st_gid);
		add_float_to_output(x, (t_float) stat_buffer.st_rdev);
		add_float_to_output(x, (t_float) stat_buffer.st_size);
		add_float_to_output(x, (t_float) stat_buffer.st_blocks);
		add_float_to_output(x, (t_float) stat_buffer.st_blksize);
		/* 86400 seconds == 24 hours == 1 day */
#ifdef _POSIX_C_SOURCE
		add_float_to_output(x, 
				 (t_float) (stat_buffer.st_atimespec.tv_sec / 86400));
		add_float_to_output(x, 
				 (t_float) (stat_buffer.st_atimespec.tv_sec % 86400));
		add_float_to_output(x, 
				 (t_float) (stat_buffer.st_mtimespec.tv_sec / 86400));
		add_float_to_output(x, 
				 (t_float) (stat_buffer.st_mtimespec.tv_sec % 86400));
		add_float_to_output(x, 
				 (t_float) (stat_buffer.st_ctimespec.tv_sec / 86400));
		add_float_to_output(x, 
				 (t_float) (stat_buffer.st_ctimespec.tv_sec % 86400));
#else
		add_float_to_output(x, (t_float) (stat_buffer.st_atime / 86400));
		add_float_to_output(x, (t_float) (stat_buffer.st_atime % 86400));
		add_float_to_output(x, (t_float) (stat_buffer.st_mtime / 86400));
		add_float_to_output(x, (t_float) (stat_buffer.st_mtime % 86400));
		add_float_to_output(x, (t_float) (stat_buffer.st_ctime / 86400));
		add_float_to_output(x, (t_float) (stat_buffer.st_ctime % 86400));
#endif /* _POSIX_C_SOURCE */
		outlet_anything(x->x_data_outlet,x->x_filename,
						x->output_count,x->output);
	}
}


static void stat_set(t_stat* x, t_symbol *s) 
{
	DEBUG(post("stat_set"););
#ifdef _WIN32
	char string_buffer[MAX_PATH];
	ExpandEnvironmentStrings(s->s_name, string_buffer, MAX_PATH);
	x->x_filename = gensym(string_buffer);
#else
	x->x_filename = s;
#endif	
}


static void stat_symbol(t_stat *x, t_symbol *s) 
{
   stat_set(x,s);
   stat_output(x);
}


static void *stat_new(t_symbol *s) 
{
	DEBUG(post("stat_new"););

	t_stat *x = (t_stat *)pd_new(stat_class);

	if(!stat_instance_count) 
	{
		post("[stat] %s",version);  
		post("\twritten by Hans-Christoph Steiner <hans@at.or.at>");
		post("\tcompiled on "__DATE__" at "__TIME__ " ");
	}
	stat_instance_count++;


    symbolinlet_new(&x->x_obj, &x->x_filename);
	x->x_data_outlet = outlet_new(&x->x_obj, 0);
	x->x_status_outlet = outlet_new(&x->x_obj, 0);

	/* set to the value from the object argument, if that exists */
	if (s != &s_)
	{
		x->x_filename = s;
	}
	else
	{
		x->x_filename = canvas_getcurrentdir();
		post("setting pattern to default: %s",x->x_filename->s_name);
	}

	return (x);
}

void stat_setup(void) 
{
	DEBUG(post("stat_setup"););
	stat_class = class_new(gensym("stat"), 
								  (t_newmethod)stat_new, 
								  0,
								  sizeof(t_stat), 
								  0, 
								  A_DEFSYM, 
								  0);
	/* add inlet datatype methods */
	class_addbang(stat_class,(t_method) stat_output);
	class_addsymbol(stat_class,(t_method) stat_symbol);
	
	/* add inlet message methods */
	class_addmethod(stat_class,(t_method) stat_set,gensym("set"), 
					A_DEFSYM, 0);
}