/* ----------------------------------------------------------------------------- * std_string_view.i * * std::string_view typemaps for Guile * ----------------------------------------------------------------------------- */ %{ #include #include %} namespace std { %naturalvar string_view; %typemap(in) string_view (std::string temp) { char *ptr = scm_to_stringn($input, NULL, "utf8", SCM_FAILED_CONVERSION_ERROR); temp.assign(ptr); SWIG_free(ptr); $1 = std::string_view(temp); } %typemap(out) string_view %{ $result = scm_from_stringn($1.data(), $1.size(), "utf8", SCM_FAILED_CONVERSION_ERROR); %} %typemap(in) const string_view& (std::string temp, $*1_ltype view) { char *ptr = scm_to_stringn($input, NULL, "utf8", SCM_FAILED_CONVERSION_ERROR); temp.assign(ptr); SWIG_free(ptr); view = std::string_view(temp); $1 = &view; } %typemap(out) const string_view& %{ $result = scm_from_stringn($1->data(), $1->size(), "utf8", SCM_FAILED_CONVERSION_ERROR); %} %typemap(varout) string_view %{ $result = scm_from_stringn($1.data(), $1.size(), "utf8", SCM_FAILED_CONVERSION_ERROR); %} // for throwing of any kind of string_view, string_view ref's and // string_view pointers we convert all to Guile strings %typemap(throws) string_view, string_view&, const string_view& %{ scm_throw(scm_from_locale_symbol("swig-exception"), scm_list_1(scm_from_stringn($1.data(), $1.size(), "utf8", SCM_FAILED_CONVERSION_ERROR))); %} %typemap(throws) string_view*, const string_view* %{ scm_throw(scm_from_locale_symbol("swig-exception"), scm_list_1(scm_from_stringn($1->data(), $1->size(), "utf8", SCM_FAILED_CONVERSION_ERROR))); %} %typemap(typecheck,precedence=SWIG_TYPECHECK_STRINGVIEW) string_view, const string_view& { $1 = scm_is_string($input); } class string_view; }