summaryrefslogtreecommitdiff
path: root/Lib/go/argcargv.i
blob: 437832bb254685d64b8557c7d544af5c65b02b6d (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
/* ------------------------------------------------------------
 * SWIG library containing argc and argv multi-argument typemaps
 * ------------------------------------------------------------ */

%typemap(gotype) (int ARGC, char **ARGV) "[]string"

%insert(go_wrapper) %{
//export cgo_swig_get_string_slice_idx
func cgo_swig_get_string_slice_idx(s []string, i C.swig_intgo) string {
    return s[i]
}
%}

%{
extern
#ifdef __cplusplus
  "C"
#endif
_gostring_ cgo_swig_get_string_slice_idx(_goslice_ s, intgo i);
%}

%typemap(in) (int ARGC, char **ARGV) {
  $1_ltype len = ($1_ltype)$input.len;
  size_t aralloc = (size_t)((len + 1) * sizeof(char *));
  if (len <= 0 || $input.array == NULL) {
    _swig_gopanic("array must contain at least 1 element");
  }
  $2 = ($2_ltype) Swig_malloc((int)aralloc);
  if ($2 == NULL) {
    _swig_gopanic("fail allocating memory for array");
  }
  memset($2, 0, aralloc);
  $1 = len;
  {
    $1_ltype i;
    for (i = 0; i < len; i++) {
      char *p;
      _gostring_ st = cgo_swig_get_string_slice_idx($input, (intgo)i);
      if (st.n <= 0) {
        _swig_gopanic("string length must be positive");
      }
      p = (char *) Swig_malloc((int)(st.n + 1));
      if (p == NULL) {
        _swig_gopanic("fail allocating memory for a string");
      }
      memcpy(p, st.p, st.n);
      p[st.n] = 0;
      $2[i] = p;
    }
    $2[i] = NULL;
  }
}

%typemap(freearg) (int ARGC, char **ARGV) {
  if ($2 != NULL) {
    $1_ltype i;
    for (i = 0; i < $1; i++) {
      if ($2[i] != NULL) {
        Swig_free((void *)$2[i]);
      }
    }
    Swig_free((void *)$2);
  }
}