-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostprocesor.c
More file actions
218 lines (180 loc) · 4.38 KB
/
Copy pathpostprocesor.c
File metadata and controls
218 lines (180 loc) · 4.38 KB
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
/*
postprocesor.c
This is part of pcb2g - pcb bitmap to G code converter
Copyright (C) 2011- 2015 Peter Popovec, popovec@fei.tuke.sk
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 3 of the License, or
(at your option) any later version.
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, see <http://www.gnu.org/licenses/>.
Postprocesor wrapper functions
*/
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#include <dlfcn.h>
#include <string.h>
#include <stdarg.h>
#include "post.h"
struct postprocesor *first;
//typedef int entrypoint (const char *argument);
typedef struct postprocesor *entrypoint (void);
#ifndef POST_PATH
#define POST_PATH "./", "/usr/lib/pcb2g/", 0
#endif
static void
postprocesor_init0 (char *modulepath)
{
void *module = NULL;
entrypoint *run = NULL;
struct postprocesor *post;
char *error;
const char *m_path[] = { POST_PATH };
int i;
char *mp;
for (i = 0; m_path[i] != 0; i++)
{
mp = NULL;
asprintf (&mp, "%s%s", m_path[i], modulepath);
printf ("opening %s\n", mp);
module = dlopen (mp, RTLD_NOW);
free (mp);
if (module)
break;
}
if (!module)
{
printf ("Unable to open postprocesor %s\n", modulepath);
return;
}
dlerror (); // clear error
run = dlsym (module, "init");
if ((error = dlerror ()) != NULL)
{
printf ("Unable to init postprocesor %s,%s \n", modulepath, error);
dlclose (module);
return;
}
post = (*run) ();
if (post == NULL)
{
dlclose (module);
return;
}
post->module = module;
post->next = first;
first = post;
}
void
postprocesor_init ()
{
postprocesor_init0 ("post_linuxcnc.so");
postprocesor_init0 ("post_svg.so");
}
struct postprocesor *
postprocesor_register (struct post_operations *p, void *data, char *name)
{
struct postprocesor *tmp;
if (!name)
return NULL;
if (!p)
{
printf ("Postprocesor %s does not set any opeations\n", name);
return NULL;
}
tmp = calloc (sizeof (struct postprocesor), 1);
tmp->name = name;
printf ("Registering postprocesor: %s\n", name);
tmp->ops = p;
tmp->data = data;
return tmp;
}
void
postprocesor_close ()
{
struct postprocesor *p, *fr;
for (p = first; p != NULL;)
{
if ((p->ops->close))
(p->ops->close) (p);
dlclose (p->module);
fr = p;
p = p->next;
free (fr);
}
}
void
postprocesor_write_comment (char *comment)
{
struct postprocesor *p;
for (p = first; p != NULL; p = p->next)
if ((p->ops->write_comment))
(p->ops->write_comment) (p, comment);
}
void
postprocesor_open (char *filename)
{
struct postprocesor *p;
for (p = first; p != NULL; p = p->next)
if ((p->ops->open))
(p->ops->open) (p, filename);
}
void
postprocesor_set (enum POST_SET op, ...)
{
struct postprocesor *p;
va_list ap;
for (p = first; p != NULL; p = p->next)
if ((p->ops->set))
{
va_start (ap, op);
(p->ops->set) (p, op, ap);
va_end (ap);
}
}
void
postprocesor_route (double x, double y)
{
struct postprocesor *p;
for (p = first; p != NULL; p = p->next)
if ((p->ops->route))
(p->ops->route) (p, x, y);
}
void
postprocesor_rapid (double x, double y)
{
struct postprocesor *p;
for (p = first; p != NULL; p = p->next)
if ((p->ops->rapid))
(p->ops->rapid) (p, x, y);
}
void
postprocesor_route_arc (double x, double y, double cx, double cy, int dir)
{
struct postprocesor *p;
for (p = first; p != NULL; p = p->next)
if ((p->ops->route_arc))
(p->ops->route_arc) (p, x, y, cx, cy, dir);
}
void
postprocesor_hole (double x, double y, double dia)
{
struct postprocesor *p;
for (p = first; p != NULL; p = p->next)
if ((p->ops->hole))
(p->ops->hole) (p, x, y, dia);
}
void
postprocesor_operation (enum POST_MACHINE_OPS op)
{
struct postprocesor *p;
for (p = first; p != NULL; p = p->next)
if (p->ops->operation)
(p->ops->operation) (p, op);
}