aboutsummaryrefslogtreecommitdiff
path: root/src/iemlib2/splitfilename.c
blob: f0720a76ad8068500a3919e5c54d18714b76c73c (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
/* For information on usage and redistribution, and for a DISCLAIMER OF ALL
* WARRANTIES, see the file, "LICENSE.txt," in this distribution.

iemlib2 written by Thomas Musil, Copyright (c) IEM KUG Graz Austria 2000 - 2005 */

#ifdef NT
#pragma warning( disable : 4244 )
#pragma warning( disable : 4305 )
#endif

#include "m_pd.h"
#include "iemlib.h"
#include <stdlib.h>
#include <string.h>
#include <stdio.h>

/* ----------------------- splitfilename -------------------------- */
/* -- splits a symbol into 2 parts (path + file) at the position -- */
/* -- of the first separator-character beginnig from the right ---- */
/* ---------- eliminating the separator-character ----------------- */

static t_class *splitfilename_class;

typedef struct _splitfilename
{
	t_object x_obj;
	char     x_sep[2];
	void     *x_outpath;
	void     *x_outfile;
} t_splitfilename;

static void splitfilename_separator(t_splitfilename *x, t_symbol *s, int ac, t_atom *av)
{
	if(ac > 0)
	{
		if(IS_A_SYMBOL(av, 0))
		{
			if(strlen(av->a_w.w_symbol->s_name) == 1)
				x->x_sep[0] = av->a_w.w_symbol->s_name[0];
			else if(!strcmp(av->a_w.w_symbol->s_name, "backslash"))
				x->x_sep[0] = '\\';
			else if(!strcmp(av->a_w.w_symbol->s_name, "slash"))
				x->x_sep[0] = '/';
			else if(!strcmp(av->a_w.w_symbol->s_name, "blank"))
				x->x_sep[0] = ' ';
			else if(!strcmp(av->a_w.w_symbol->s_name, "space"))
				x->x_sep[0] = ' ';
			else if(!strcmp(av->a_w.w_symbol->s_name, "dollar"))
				x->x_sep[0] = '$';
			else if(!strcmp(av->a_w.w_symbol->s_name, "comma"))
				x->x_sep[0] = ',';
			else if(!strcmp(av->a_w.w_symbol->s_name, "semi"))
				x->x_sep[0] = ';';
			else if(!strcmp(av->a_w.w_symbol->s_name, "leftbrace"))
				x->x_sep[0] = '{';
			else if(!strcmp(av->a_w.w_symbol->s_name, "rightbrace"))
				x->x_sep[0] = '}';
			else
				x->x_sep[0] = '/';
		}
		else if(IS_A_FLOAT(av, 0))
		{
			int i;
			float f=fabs(av->a_w.w_float);
			
			while(f >= 10.0)
				f *= 0.1;
			i = (int)f;
			x->x_sep[0] = (char)i + '0';
		}
	}
	else
		x->x_sep[0] = 0;
}

static void splitfilename_symbol(t_splitfilename *x, t_symbol *s)
{
	int len = strlen(s->s_name);
	
	if(len)
	{
		if(x->x_sep[0] != 0)
		{
			char *str_path = (char *)getbytes(len*sizeof(char));
			char *str_file = (char *)getbytes(len*sizeof(char));
			char *cpp, *cpf;
			
			strcpy(str_path, s->s_name);
			strcpy(str_file, s->s_name);
			cpp = strrchr(str_path, x->x_sep[0]);
			cpf = strrchr(str_file, x->x_sep[0]);
			if(!cpp) /* JMZ: 20050701 */
			{
			  post("1");
				outlet_symbol(x->x_outfile, gensym(str_file));
				outlet_symbol(x->x_outpath, &s_);			  
			} 
			else if (!cpf) /* JMZ: 20050701 */
			{
			  post("2");
				outlet_symbol(x->x_outfile, &s_);
				outlet_symbol(x->x_outpath, gensym(str_path));
			}
			else if((cpp - str_path) < 0) /* JMZ:removed typecast (char*) to (int); this is not portable */
			  {
				outlet_symbol(x->x_outfile, gensym(str_file));
				outlet_symbol(x->x_outpath, &s_);
			  }
			else if((cpp - str_path) >= len) /* JMZ: removed typecast (char*) to (int) */
			    {
				outlet_symbol(x->x_outfile, &s_);
				outlet_symbol(x->x_outpath, gensym(str_path));
			  }
			  else
			  {
				*cpp = 0;
				cpf++;
				outlet_symbol(x->x_outfile, gensym(cpf));
				outlet_symbol(x->x_outpath, gensym(str_path));
			  }
			freebytes(str_file, len*sizeof(char));
			freebytes(str_path, len*sizeof(char));
		}
		else
		{
			outlet_symbol(x->x_outfile, &s_);
			outlet_symbol(x->x_outpath, s);
		}
	}
}

static void *splitfilename_new(t_symbol *s, int ac, t_atom *av)
{
	t_splitfilename *x = (t_splitfilename *)pd_new(splitfilename_class);
	
	x->x_sep[0] = 0;
	x->x_sep[1] = 0;
	if(ac == 0)
		x->x_sep[0] = '/';
	else
		splitfilename_separator(x, s, ac, av);
	x->x_outpath = outlet_new(&x->x_obj, &s_symbol);
	x->x_outfile = outlet_new(&x->x_obj, &s_symbol);
	return (x);
}

void splitfilename_setup(void)
{
	splitfilename_class = class_new(gensym("splitfilename"), (t_newmethod)splitfilename_new,
		0, sizeof(t_splitfilename), 0, A_GIMME, 0);
	class_addsymbol(splitfilename_class, splitfilename_symbol);
	class_addmethod(splitfilename_class, (t_method)splitfilename_separator, gensym("separator"), A_GIMME, 0);
	class_addmethod(splitfilename_class, (t_method)splitfilename_separator, gensym("sep"), A_GIMME, 0);
	class_sethelpsymbol(splitfilename_class, gensym("iemhelp/help-splitfilename"));
}