-
Notifications
You must be signed in to change notification settings - Fork 1
/
wrapper.c
98 lines (88 loc) · 2.75 KB
/
wrapper.c
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
/**
* PROJ (http://proj4.org) wrapper in Golang
* Release under the MIT License (MIT)
*
* Copyright © `2019` `Didier RICHARD`
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the “Software”), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
**/
#include "wrapper.h"
#include "_cgo_export.h"
char *getAuthorityFromPROJ ( PROJ_STRING_LIST l, int i ) {
return l[i];
}
char *listcat ( PROJ_STRING_LIST sl ) {
size_t l = 0;
char *result = NULL;
PROJ_STRING_LIST iterator = NULL;
if (sl == NULL) return NULL ;
for (iterator = sl; *iterator; iterator++) {
l += strlen(*iterator);
}
result = (char *)malloc(l+1);
if (result == NULL) return NULL;
result[0] = '\0';
for (iterator = sl; *iterator; iterator++) {
result = strcat(result, *iterator);
}
return result;
}
double wrapper_proj_dmstor ( const char *dms ) {
char *rs = NULL;
return proj_dmstor(dms,&rs);
}
char **makeStringArray ( size_t l ) {
return (char **)calloc(l,sizeof(char*));
}
void setStringArrayItem ( const char **t, size_t i, const char *v) {
t[i] = v;
}
const char *getStringArrayItem ( const char **t, size_t i) {
return t[i];
}
void destroyStringArray ( char ***t ) {
free(*t);
*t = NULL;
}
int nbUnitsFromPROJ ( ) {
int n = 0 ;
PJ_UNITS *us;
for (us = (PJ_UNITS *)proj_list_units(); us->id; us++) { n++; }
return n;
}
PJ_UNITS *getUnitFromPROJ ( int i ) {
PJ_UNITS *us;
us = (PJ_UNITS *)proj_list_units();
return us+i;
}
void logFuncToGo ( void *udata, int llvl, const char *emsg ) {
switch (llvl) {
case PJ_LOG_ERROR :
LogOnCError((char *)emsg);
default :
case PJ_LOG_DEBUG :
case PJ_LOG_TRACE :
case PJ_LOG_NONE :
return ;
}
return;
}