2013-12-02 14:50:02 +00:00
|
|
|
/*************************************************************************
|
|
|
|
* *
|
|
|
|
* YAP Prolog *
|
|
|
|
* *
|
|
|
|
* Yap Prolog was developed at NCCUP - Universidade do Porto *
|
|
|
|
* *
|
|
|
|
* Copyright L.Damas, V.S.Costa and Universidade do Porto 1985-1997 *
|
|
|
|
* *
|
|
|
|
**************************************************************************
|
|
|
|
* *
|
|
|
|
* File: YapMirror.c *
|
|
|
|
* Last rev: 5/2/88 *
|
|
|
|
* mods: *
|
|
|
|
* comments: Term conversion C implemented support *
|
|
|
|
* *
|
|
|
|
*************************************************************************/
|
2015-07-06 12:01:55 +01:00
|
|
|
#ifndef YAP_TEXT_H
|
|
|
|
#define YAP_TEXT_H
|
2013-12-02 14:50:02 +00:00
|
|
|
|
2013-12-05 21:26:46 +00:00
|
|
|
#if SIZEOF_WCHAR_T == 2
|
|
|
|
#define CHARCODE_MAX 0xffff
|
|
|
|
#else
|
|
|
|
#define CHARCODE_MAX 0x10ffff
|
|
|
|
#endif
|
|
|
|
|
2013-12-02 14:50:02 +00:00
|
|
|
/*
|
2013-12-04 23:01:30 +00:00
|
|
|
* This file defines main data-structure for text conversion and
|
|
|
|
* mirroring
|
2013-12-02 14:50:02 +00:00
|
|
|
*/
|
|
|
|
|
2015-08-07 22:57:53 +01:00
|
|
|
#include "Yap.h"
|
2016-01-05 03:30:31 +00:00
|
|
|
#include "../utf8proc/utf8proc.h"
|
2015-09-21 23:05:36 +01:00
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
/* Character types for tokenizer and write.c */
|
2015-09-21 23:05:36 +01:00
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
/****************** character definition table **************************/
|
2015-09-21 23:05:36 +01:00
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
#define NUMBER_OF_CHARS 256
|
|
|
|
extern char *Yap_chtype;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
BG = 0, /* initial state */
|
|
|
|
UC = 1, /* Upper case */
|
|
|
|
UL = 2, /* Underline */
|
|
|
|
LC = 3, /* Lower case */
|
|
|
|
NU = 4, /* digit */
|
|
|
|
QT = 5, /* single quote */
|
|
|
|
DC = 6, /* double quote */
|
|
|
|
SY = 7, /* Symbol character */
|
|
|
|
SL = 8, /* Solo character */
|
|
|
|
BK = 9, /* Brackets & friends */
|
|
|
|
BS = 10, /* Blank */
|
|
|
|
EF = 11, /* End of File marker */
|
|
|
|
CC = 12 /* comment,char % */
|
|
|
|
} char_kind_t;
|
|
|
|
|
|
|
|
extern char_kind_t Yap_chtype0[];
|
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
#define Yap_chtype (Yap_chtype0 + 1)
|
2015-10-20 07:49:53 +01:00
|
|
|
|
|
|
|
char_kind_t Yap_wide_chtype(int ch);
|
|
|
|
|
|
|
|
INLINE_ONLY EXTERN inline char_kind_t Yap_wide_chtype(int ch) {
|
|
|
|
if (ch < 256)
|
|
|
|
return Yap_chtype[ch];
|
|
|
|
switch (utf8proc_category(ch)) {
|
|
|
|
case UTF8PROC_CATEGORY_CN: /**< Other, not assigned */
|
|
|
|
return BG;
|
|
|
|
case UTF8PROC_CATEGORY_LU: /**< Letter, uppercase */
|
|
|
|
return UC;
|
|
|
|
case UTF8PROC_CATEGORY_LL: /**< Letter, lowercase */
|
|
|
|
return LC;
|
|
|
|
case UTF8PROC_CATEGORY_LT: /**< Letter, titlecase */
|
|
|
|
return UC;
|
|
|
|
case UTF8PROC_CATEGORY_LM: /**< Letter, modifier */
|
|
|
|
return LC;
|
|
|
|
case UTF8PROC_CATEGORY_LO: /**< Letter, other */
|
|
|
|
return LC;
|
|
|
|
case UTF8PROC_CATEGORY_MN: /**< Mark, nonspacing */
|
|
|
|
return BG;
|
|
|
|
case UTF8PROC_CATEGORY_MC: /**< Mark, spacing combining */
|
|
|
|
return BK;
|
|
|
|
case UTF8PROC_CATEGORY_ME: /**< Mark, enclosing */
|
|
|
|
return BK;
|
|
|
|
case UTF8PROC_CATEGORY_ND: /**< Number, decimal digit */
|
|
|
|
return NU;
|
|
|
|
case UTF8PROC_CATEGORY_NL: /**< Number, letter */
|
|
|
|
return NU;
|
|
|
|
case UTF8PROC_CATEGORY_NO: /**< Number, other */
|
|
|
|
return NU;
|
|
|
|
case UTF8PROC_CATEGORY_PC: /**< Punctuation, connector */
|
|
|
|
return SL;
|
|
|
|
case UTF8PROC_CATEGORY_PD: /**< Punctuation, dash */
|
|
|
|
return SY;
|
|
|
|
case UTF8PROC_CATEGORY_PS: /**< Punctuation, open */
|
|
|
|
return BK;
|
|
|
|
case UTF8PROC_CATEGORY_PE: /**< Punctuation, close */
|
|
|
|
return BK;
|
|
|
|
case UTF8PROC_CATEGORY_PI: /**< Punctuation, initial quote */
|
|
|
|
return QT;
|
|
|
|
case UTF8PROC_CATEGORY_PF: /**< Punctuation, final quote */
|
|
|
|
return QT;
|
|
|
|
case UTF8PROC_CATEGORY_PO: /**< Punctuation, other */
|
|
|
|
return SL;
|
|
|
|
case UTF8PROC_CATEGORY_SM: /**< Symbol, math */
|
|
|
|
return SY;
|
|
|
|
case UTF8PROC_CATEGORY_SC: /**< Symbol, currency */
|
|
|
|
return SY;
|
|
|
|
case UTF8PROC_CATEGORY_SK: /**< Symbol, modifier
|
|
|
|
|
|
|
|
unsure in YAP, let's assume a,c us treated as aç
|
|
|
|
*/
|
|
|
|
return LC;
|
|
|
|
case UTF8PROC_CATEGORY_SO: /**< Symbol, other */
|
|
|
|
return SL;
|
|
|
|
case UTF8PROC_CATEGORY_ZS: /**< Separator, space */
|
|
|
|
return BS;
|
|
|
|
case UTF8PROC_CATEGORY_ZL: /**< Separator, line */
|
|
|
|
return BS;
|
|
|
|
case UTF8PROC_CATEGORY_ZP: /**< Separator, paragraph */
|
|
|
|
return BS;
|
|
|
|
case UTF8PROC_CATEGORY_CC: /**< Other, control */
|
|
|
|
return BG;
|
|
|
|
case UTF8PROC_CATEGORY_CF: /**< Other, format */
|
|
|
|
return BG;
|
|
|
|
case UTF8PROC_CATEGORY_CS: /**< Other, surrogate */
|
|
|
|
return BG;
|
|
|
|
case UTF8PROC_CATEGORY_CO: /**< Other, private use */
|
|
|
|
return BG;
|
|
|
|
}
|
|
|
|
return BS;
|
|
|
|
}
|
|
|
|
|
|
|
|
INLINE_ONLY EXTERN inline char_kind_t chtype(Int ch) {
|
|
|
|
if (ch < NUMBER_OF_CHARS)
|
|
|
|
return Yap_chtype[ch];
|
|
|
|
return Yap_wide_chtype(ch);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef __ANDROID__
|
|
|
|
#define __android_log_print(...)
|
|
|
|
#endif
|
|
|
|
|
2016-02-18 12:10:58 +00:00
|
|
|
inline static utf8proc_ssize_t get_utf8(utf8proc_uint8_t *ptr, size_t n,
|
2015-10-20 07:49:53 +01:00
|
|
|
utf8proc_int32_t *valp) {
|
2016-02-18 12:10:58 +00:00
|
|
|
return utf8proc_iterate(ptr, n, valp);
|
2015-10-20 07:49:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
inline static utf8proc_ssize_t put_utf8(utf8proc_uint8_t *ptr,
|
|
|
|
utf8proc_int32_t val) {
|
|
|
|
return utf8proc_encode_char(val, ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline static utf8proc_uint8_t *skip_utf8(utf8proc_uint8_t *pt,
|
|
|
|
utf8proc_ssize_t n) {
|
2015-09-21 23:05:36 +01:00
|
|
|
utf8proc_ssize_t i;
|
|
|
|
utf8proc_int32_t b;
|
2015-10-20 07:49:53 +01:00
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
utf8proc_ssize_t l = utf8proc_iterate(pt, -1, &b);
|
|
|
|
if (b == 0)
|
|
|
|
return pt;
|
2015-09-21 23:05:36 +01:00
|
|
|
pt += l;
|
|
|
|
}
|
|
|
|
return pt;
|
|
|
|
}
|
|
|
|
|
2016-02-18 12:10:58 +00:00
|
|
|
inline static utf8proc_ssize_t utf8_nof( utf8proc_int32_t val) {
|
|
|
|
return utf8proc_charwidth(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
inline static utf8proc_ssize_t strlen_utf8(const utf8proc_uint8_t *pt) {
|
|
|
|
utf8proc_ssize_t rc = 0;
|
2015-09-21 23:05:36 +01:00
|
|
|
utf8proc_int32_t b;
|
|
|
|
while (true) {
|
2015-10-20 07:49:53 +01:00
|
|
|
utf8proc_ssize_t l = utf8proc_iterate(pt, -1, &b);
|
|
|
|
if (b == 0)
|
|
|
|
return rc;
|
2015-09-21 23:05:36 +01:00
|
|
|
pt += l;
|
|
|
|
rc += l;
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
inline static utf8proc_ssize_t strlen_latin_utf8(const unsigned char *pt) {
|
|
|
|
utf8proc_ssize_t rc = 0;
|
2015-09-21 23:05:36 +01:00
|
|
|
utf8proc_uint8_t b;
|
|
|
|
while (true) {
|
2015-10-20 07:49:53 +01:00
|
|
|
utf8proc_ssize_t l = utf8proc_encode_char(*pt, &b);
|
|
|
|
if (b == 0)
|
|
|
|
return rc;
|
2015-09-21 23:05:36 +01:00
|
|
|
pt++;
|
|
|
|
rc += l;
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
inline static utf8proc_ssize_t strnlen_latin_utf8(const unsigned char *pt,
|
|
|
|
size_t max) {
|
|
|
|
utf8proc_ssize_t rc = 0;
|
2015-09-21 23:05:36 +01:00
|
|
|
utf8proc_uint8_t b;
|
|
|
|
while (true) {
|
2015-10-20 07:49:53 +01:00
|
|
|
utf8proc_ssize_t l = utf8proc_encode_char(*pt, &b);
|
|
|
|
if (b == 0)
|
|
|
|
return rc;
|
2015-09-21 23:05:36 +01:00
|
|
|
pt++;
|
|
|
|
rc += l;
|
2015-10-20 07:49:53 +01:00
|
|
|
if (--max == 0)
|
|
|
|
return rc;
|
2015-09-21 23:05:36 +01:00
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
inline static utf8proc_ssize_t strlen_ucs2_utf8(const wchar_t *pt) {
|
|
|
|
utf8proc_ssize_t rc = 0;
|
2015-09-21 23:05:36 +01:00
|
|
|
utf8proc_uint8_t b;
|
|
|
|
while (true) {
|
2015-10-20 07:49:53 +01:00
|
|
|
utf8proc_ssize_t l = utf8proc_encode_char(*pt, &b);
|
|
|
|
if (b == 0)
|
|
|
|
return rc;
|
|
|
|
pt++;
|
2015-09-21 23:05:36 +01:00
|
|
|
rc += l;
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
inline static utf8proc_ssize_t strnlen_ucs2_utf8(const wchar_t *pt,
|
|
|
|
size_t max) {
|
|
|
|
utf8proc_ssize_t rc = 0;
|
2015-09-21 23:05:36 +01:00
|
|
|
utf8proc_uint8_t b;
|
|
|
|
while (true) {
|
2015-10-20 07:49:53 +01:00
|
|
|
utf8proc_ssize_t l = utf8proc_encode_char(*pt, &b);
|
|
|
|
if (b == 0)
|
|
|
|
return rc;
|
|
|
|
pt++;
|
2015-09-21 23:05:36 +01:00
|
|
|
rc += l;
|
2015-10-20 07:49:53 +01:00
|
|
|
if (--max == 0)
|
|
|
|
return rc;
|
2015-09-21 23:05:36 +01:00
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
inline static int cmpn_utf8(const utf8proc_uint8_t *pt1,
|
|
|
|
const utf8proc_uint8_t *pt2, utf8proc_ssize_t n) {
|
2015-09-21 23:05:36 +01:00
|
|
|
utf8proc_ssize_t i;
|
|
|
|
utf8proc_int32_t b;
|
2015-10-20 07:49:53 +01:00
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
if (pt1[0] != pt2[0])
|
|
|
|
return pt1[0] - pt2[0];
|
|
|
|
utf8proc_ssize_t l = utf8proc_iterate(pt1, -1, &b);
|
|
|
|
if (l == 2) {
|
|
|
|
if (pt1[1] != pt2[1])
|
|
|
|
return pt1[1] - pt2[1];
|
|
|
|
} else if (l == 3) {
|
|
|
|
if (pt1[2] != pt2[2])
|
|
|
|
return pt1[2] - pt2[2];
|
|
|
|
} else if (l == 4) {
|
|
|
|
if (pt1[3] != pt2[3])
|
|
|
|
return pt1[3] - pt2[3];
|
|
|
|
}
|
2015-09-21 23:05:36 +01:00
|
|
|
pt1 += l;
|
|
|
|
pt2 += l;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2013-12-02 14:50:02 +00:00
|
|
|
|
2016-02-18 12:10:58 +00:00
|
|
|
// UTF16
|
|
|
|
|
2016-02-19 19:36:11 +00:00
|
|
|
#define LEAD_OFFSET ((uint32_t)0xD800 - (uint32_t)(0x10000 >> 10))
|
|
|
|
#define SURROGATE_OFFSET ( (uint32_t)0x10000 - (uint32_t)(0xD800 << 10) - (uint32_t)0xDC00 )
|
2016-02-18 12:10:58 +00:00
|
|
|
|
2016-04-10 14:21:17 +01:00
|
|
|
const char *Yap_tokRep(TokEntry *tokptr, encoding_t enc);
|
2015-08-18 20:51:32 +01:00
|
|
|
|
2013-12-02 14:50:02 +00:00
|
|
|
// standard strings
|
|
|
|
|
|
|
|
typedef enum {
|
2015-10-20 07:49:53 +01:00
|
|
|
YAP_STRING_STRING = 0x1, /// target is a string term
|
|
|
|
YAP_STRING_CODES = 0x2, /// target is a list of integer codes
|
|
|
|
YAP_STRING_ATOMS = 0x4, /// target is a list of kength-1 atom
|
2015-08-07 22:57:53 +01:00
|
|
|
YAP_STRING_ATOMS_CODES = 0x6, /// targt is list of atoms or codes
|
2015-10-20 07:49:53 +01:00
|
|
|
YAP_STRING_CHARS = 0x8, /// target is a buffer, with byte-sized units
|
|
|
|
YAP_STRING_WCHARS = 0x10, /// target is a buffer of wide chars
|
|
|
|
YAP_STRING_ATOM = 0x20, /// tarfet is an ayom
|
|
|
|
YAP_STRING_INT = 0x40, /// target is an integer term
|
|
|
|
YAP_STRING_FLOAT = 0x80, /// target is a floar term
|
|
|
|
YAP_STRING_BIG = 0x100, /// target is an big num term
|
|
|
|
YAP_STRING_DATUM =
|
|
|
|
0x200, /// associated with previous 3, use actual object if type, not tern
|
|
|
|
YAP_STRING_LENGTH =
|
|
|
|
0x400, /// input: length is fixed; output: return integer with length
|
|
|
|
YAP_STRING_NTH = 0x800, /// input: ignored; output: nth char
|
|
|
|
YAP_STRING_TERM = 0x1000, // Generic term, if nothing else given
|
|
|
|
YAP_STRING_DIFF = 0x2000, // difference list
|
|
|
|
YAP_STRING_NCHARS = 0x4000, // size of input/result
|
|
|
|
YAP_STRING_TRUNC = 0x8000, // truncate on maximum size of input/result
|
|
|
|
YAP_STRING_WQ = 0x10000, // output with write_quote
|
|
|
|
YAP_STRING_WC = 0x20000, // output with write_canonical
|
|
|
|
YAP_STRING_WITH_BUFFER = 0x40000, // output on existing buffer
|
2016-05-30 11:22:47 +01:00
|
|
|
YAP_STRING_MALLOC = 0x80000, // output on malloced buffer
|
|
|
|
YAP_STRING_UPCASE = 0x100000, // output on malloced buffer
|
|
|
|
YAP_STRING_DOWNCASE = 0x200000 // output on malloced buffer
|
2014-03-18 15:40:50 +00:00
|
|
|
} enum_seq_type_t;
|
|
|
|
|
|
|
|
typedef UInt seq_type_t;
|
2013-12-02 14:50:02 +00:00
|
|
|
|
2015-07-06 12:01:55 +01:00
|
|
|
#define YAP_TYPE_MASK 0x0FFF
|
2013-12-02 14:50:02 +00:00
|
|
|
|
|
|
|
typedef union {
|
2015-10-20 07:49:53 +01:00
|
|
|
Float f;
|
|
|
|
Int i;
|
2013-12-02 14:50:02 +00:00
|
|
|
MP_INT *b;
|
2015-08-07 22:57:53 +01:00
|
|
|
const char *c0;
|
|
|
|
const wchar_t *w0;
|
|
|
|
char *c;
|
2015-09-21 23:05:36 +01:00
|
|
|
unsigned char *uc;
|
2015-08-07 22:57:53 +01:00
|
|
|
wchar_t *w;
|
2015-10-20 07:49:53 +01:00
|
|
|
Atom a;
|
2013-12-04 23:01:30 +00:00
|
|
|
size_t l;
|
2013-12-06 23:24:01 +00:00
|
|
|
int d;
|
2015-10-20 07:49:53 +01:00
|
|
|
Term t; // depends on other flags
|
|
|
|
} seq_val_t;
|
2013-12-02 14:50:02 +00:00
|
|
|
|
|
|
|
typedef struct text_cvt {
|
|
|
|
seq_type_t type;
|
|
|
|
seq_val_t val;
|
2015-10-20 07:49:53 +01:00
|
|
|
Term mod; // optional
|
|
|
|
size_t sz; // fixed sz, or -1
|
|
|
|
Term dif; // diff-list, usually TermNil
|
|
|
|
size_t max; // max_size
|
2015-08-07 22:57:53 +01:00
|
|
|
encoding_t enc;
|
2013-12-02 14:50:02 +00:00
|
|
|
} seq_tv_t;
|
|
|
|
|
2013-12-04 23:01:30 +00:00
|
|
|
// string construction
|
2014-01-19 21:15:05 +00:00
|
|
|
#ifdef HR
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term init_tstring(USES_REGS1) {
|
2014-01-19 21:15:05 +00:00
|
|
|
Term t = AbsAppl(HR);
|
2013-12-04 23:01:30 +00:00
|
|
|
|
2014-01-19 21:15:05 +00:00
|
|
|
HR[0] = (CELL)FunctorString;
|
2013-12-04 23:01:30 +00:00
|
|
|
return t;
|
|
|
|
}
|
2013-12-02 14:50:02 +00:00
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline unsigned char *buf_from_tstring(CELL *p) {
|
2015-09-21 23:05:36 +01:00
|
|
|
unsigned char *out = (unsigned char *)(p + 2);
|
2013-12-04 23:01:30 +00:00
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline void close_tstring(unsigned char *p USES_REGS) {
|
|
|
|
CELL *szp = HR + 1;
|
|
|
|
HR = (CELL *)ALIGN_BY_TYPE(p, CELL);
|
|
|
|
*szp = (HR - szp) - 1;
|
2014-01-19 21:15:05 +00:00
|
|
|
*HR++ = EndSpecials;
|
2013-12-04 23:01:30 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// string type depends on current module
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline seq_type_t mod_to_type(Term mod USES_REGS) {
|
|
|
|
|
2015-02-04 12:32:38 +00:00
|
|
|
// see pl-incl.h
|
2013-12-02 14:50:02 +00:00
|
|
|
unsigned int flags = Yap_GetModuleEntry(mod)->flags;
|
2014-12-02 02:34:28 +00:00
|
|
|
if (flags & DBLQ_ATOM) {
|
|
|
|
return YAP_STRING_ATOM;
|
2013-12-02 14:50:02 +00:00
|
|
|
} else if (flags & DBLQ_STRING) {
|
|
|
|
return YAP_STRING_STRING;
|
2015-10-20 07:49:53 +01:00
|
|
|
} else if (flags & DBLQ_CHARS) {
|
2014-12-02 02:34:28 +00:00
|
|
|
return YAP_STRING_ATOMS;
|
2013-12-02 14:50:02 +00:00
|
|
|
}
|
2014-12-02 02:34:28 +00:00
|
|
|
return YAP_STRING_CODES;
|
2013-12-02 14:50:02 +00:00
|
|
|
}
|
|
|
|
|
2015-07-06 12:01:55 +01:00
|
|
|
// string type depends on current module
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline seq_type_t mod_to_bqtype(Term mod USES_REGS) {
|
|
|
|
|
2015-07-06 12:01:55 +01:00
|
|
|
// see pl-incl.h
|
|
|
|
unsigned int flags = Yap_GetModuleEntry(mod)->flags;
|
|
|
|
if (flags & BCKQ_ATOM) {
|
|
|
|
return YAP_STRING_ATOM;
|
|
|
|
} else if (flags & BCKQ_STRING) {
|
|
|
|
return YAP_STRING_STRING;
|
2015-10-20 07:49:53 +01:00
|
|
|
} else if (flags & BCKQ_CHARS) {
|
2015-07-06 12:01:55 +01:00
|
|
|
return YAP_STRING_ATOMS;
|
|
|
|
}
|
|
|
|
return YAP_STRING_CODES;
|
|
|
|
}
|
|
|
|
|
2013-12-04 23:01:30 +00:00
|
|
|
// the routines
|
2013-12-02 14:50:02 +00:00
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
extern void *Yap_readText(void *buf, seq_tv_t *inp, encoding_t *enc,
|
|
|
|
int *minimal, size_t *lengp USES_REGS);
|
2016-05-30 11:22:47 +01:00
|
|
|
extern bool write_Text(void *inp, seq_tv_t *out, encoding_t enc, int minimal,
|
2015-10-20 07:49:53 +01:00
|
|
|
size_t leng USES_REGS);
|
|
|
|
extern int Yap_CVT_Text(seq_tv_t *inp, seq_tv_t *out USES_REGS);
|
|
|
|
extern void *Yap_Concat_Text(int n, seq_tv_t inp[], seq_tv_t *out USES_REGS);
|
|
|
|
extern void *Yap_Splice_Text(int n, size_t cuts[], seq_tv_t *inp,
|
|
|
|
encoding_t encv[], seq_tv_t outv[] USES_REGS);
|
2013-12-04 23:01:30 +00:00
|
|
|
|
|
|
|
// user friendly interface
|
|
|
|
|
2016-05-30 11:22:47 +01:00
|
|
|
static inline Atom Yap_AtomicToLowAtom(Term t0 USES_REGS) {
|
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_CODES | YAP_STRING_ATOMS |
|
|
|
|
YAP_STRING_ATOM | YAP_STRING_INT | YAP_STRING_FLOAT |
|
|
|
|
YAP_STRING_BIG | YAP_STRING_TERM;
|
|
|
|
out.type = YAP_STRING_ATOM|YAP_STRING_DOWNCASE;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.a;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline Atom Yap_AtomicToUpAtom(Term t0 USES_REGS) {
|
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_CODES | YAP_STRING_ATOMS |
|
|
|
|
YAP_STRING_ATOM | YAP_STRING_INT | YAP_STRING_FLOAT |
|
|
|
|
YAP_STRING_BIG | YAP_STRING_TERM;
|
|
|
|
out.type = YAP_STRING_ATOM|YAP_STRING_UPCASE;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.a;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline Term Yap_AtomicToLowString(Term t0 USES_REGS) {
|
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_CODES | YAP_STRING_ATOMS |
|
|
|
|
YAP_STRING_ATOM | YAP_STRING_INT | YAP_STRING_FLOAT |
|
|
|
|
YAP_STRING_BIG | YAP_STRING_TERM;
|
|
|
|
out.type = YAP_STRING_STRING|YAP_STRING_DOWNCASE;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline Term Yap_AtomicToUpString(Term t0 USES_REGS) {
|
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_CODES | YAP_STRING_ATOMS |
|
|
|
|
YAP_STRING_ATOM | YAP_STRING_INT | YAP_STRING_FLOAT |
|
|
|
|
YAP_STRING_BIG | YAP_STRING_TERM;
|
|
|
|
out.type = YAP_STRING_STRING|YAP_STRING_UPCASE;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline Term Yap_AtomicToLowListOfCodes(Term t0 USES_REGS) {
|
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_CODES | YAP_STRING_ATOMS |
|
|
|
|
YAP_STRING_ATOM | YAP_STRING_INT | YAP_STRING_FLOAT |
|
|
|
|
YAP_STRING_BIG | YAP_STRING_TERM;
|
|
|
|
out.type = YAP_STRING_CODES|YAP_STRING_DOWNCASE;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline Term Yap_AtomicToUpListOfCodes(Term t0 USES_REGS) {
|
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_CODES | YAP_STRING_ATOMS |
|
|
|
|
YAP_STRING_ATOM | YAP_STRING_INT | YAP_STRING_FLOAT |
|
|
|
|
YAP_STRING_BIG | YAP_STRING_TERM;
|
|
|
|
out.type = YAP_STRING_CODES|YAP_STRING_UPCASE;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline Term Yap_AtomicToLowListOfAtoms(Term t0 USES_REGS) {
|
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_CODES | YAP_STRING_ATOMS |
|
|
|
|
YAP_STRING_ATOM | YAP_STRING_INT | YAP_STRING_FLOAT |
|
|
|
|
YAP_STRING_BIG | YAP_STRING_TERM;
|
|
|
|
out.type = YAP_STRING_ATOMS|YAP_STRING_DOWNCASE;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline Term Yap_AtomicToUpListOfAtoms(Term t0 USES_REGS) {
|
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_CODES | YAP_STRING_ATOMS |
|
|
|
|
YAP_STRING_ATOM | YAP_STRING_INT | YAP_STRING_FLOAT |
|
|
|
|
YAP_STRING_BIG | YAP_STRING_TERM;
|
|
|
|
out.type = YAP_STRING_ATOMS|YAP_STRING_UPCASE;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline size_t Yap_AtomicToLength(Term t0 USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_CODES | YAP_STRING_ATOMS |
|
|
|
|
YAP_STRING_ATOM | YAP_STRING_INT | YAP_STRING_FLOAT |
|
|
|
|
YAP_STRING_BIG | YAP_STRING_TERM;
|
2013-12-04 23:01:30 +00:00
|
|
|
out.type = YAP_STRING_LENGTH;
|
2013-12-02 14:50:02 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_AtomicToListOfAtoms(Term t0 USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_ATOM | YAP_STRING_INT |
|
|
|
|
YAP_STRING_FLOAT | YAP_STRING_BIG | YAP_STRING_TERM;
|
2013-12-02 14:50:02 +00:00
|
|
|
out.type = YAP_STRING_ATOMS;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_AtomicToListOfCodes(Term t0 USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_ATOM | YAP_STRING_INT |
|
|
|
|
YAP_STRING_FLOAT | YAP_STRING_BIG | YAP_STRING_TERM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-02 14:50:02 +00:00
|
|
|
out.type = YAP_STRING_CODES;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Atom Yap_AtomicToAtom(Term t0 USES_REGS) {
|
2014-10-12 00:32:17 +01:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_ATOM | YAP_STRING_INT |
|
|
|
|
YAP_STRING_FLOAT | YAP_STRING_BIG | YAP_STRING_TERM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2014-10-12 00:32:17 +01:00
|
|
|
out.type = YAP_STRING_ATOM;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.a;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline size_t Yap_AtomToLength(Term t0 USES_REGS) {
|
2013-12-04 23:01:30 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
|
|
|
inp.type = YAP_STRING_ATOM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-04 23:01:30 +00:00
|
|
|
out.type = YAP_STRING_LENGTH;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
2013-12-06 15:08:35 +00:00
|
|
|
return (size_t)(-1L);
|
|
|
|
return out.val.l;
|
2013-12-04 23:01:30 +00:00
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_AtomToListOfAtoms(Term t0 USES_REGS) {
|
2013-12-04 23:01:30 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
|
|
|
inp.type = YAP_STRING_ATOM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-04 23:01:30 +00:00
|
|
|
out.type = YAP_STRING_ATOMS;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_AtomSWIToListOfAtoms(Term t0 USES_REGS) {
|
2013-12-06 15:08:35 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
|
|
|
|
inp.val.t = t0;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_ATOM | YAP_STRING_STRING | YAP_STRING_INT |
|
|
|
|
YAP_STRING_FLOAT | YAP_STRING_BIG | YAP_STRING_ATOMS_CODES |
|
|
|
|
YAP_STRING_TERM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-06 15:08:35 +00:00
|
|
|
out.type = YAP_STRING_ATOMS;
|
2015-07-06 12:01:55 +01:00
|
|
|
|
2013-12-06 15:08:35 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_AtomToListOfCodes(Term t0 USES_REGS) {
|
2013-12-04 23:01:30 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
|
|
|
inp.type = YAP_STRING_ATOM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-04 23:01:30 +00:00
|
|
|
out.type = YAP_STRING_CODES;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_AtomToNumber(Term t0 USES_REGS) {
|
2013-12-04 23:01:30 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
|
|
|
inp.type = YAP_STRING_ATOM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2016-01-03 02:06:09 +00:00
|
|
|
out.type = YAP_STRING_INT | YAP_STRING_FLOAT | YAP_STRING_BIG;
|
2013-12-04 23:01:30 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_AtomToString(Term t0 USES_REGS) {
|
2013-12-04 23:01:30 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
|
|
|
|
inp.val.t = t0;
|
|
|
|
inp.type = YAP_STRING_ATOM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-04 23:01:30 +00:00
|
|
|
out.type = YAP_STRING_STRING;
|
2015-07-06 12:01:55 +01:00
|
|
|
|
2013-12-04 23:01:30 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_AtomSWIToString(Term t0 USES_REGS) {
|
2013-12-05 21:26:46 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
|
|
|
|
inp.val.t = t0;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_ATOM | YAP_STRING_STRING | YAP_STRING_INT |
|
|
|
|
YAP_STRING_FLOAT | YAP_STRING_BIG | YAP_STRING_ATOMS_CODES;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-05 21:26:46 +00:00
|
|
|
out.type = YAP_STRING_STRING;
|
2015-07-06 12:01:55 +01:00
|
|
|
|
2013-12-05 21:26:46 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_AtomicToString(Term t0 USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
|
|
|
|
inp.val.t = t0;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_ATOM | YAP_STRING_INT |
|
|
|
|
YAP_STRING_FLOAT | YAP_STRING_BIG | YAP_STRING_TERM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-02 14:50:02 +00:00
|
|
|
out.type = YAP_STRING_STRING;
|
2015-07-06 12:01:55 +01:00
|
|
|
|
2013-12-02 14:50:02 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_AtomicToTDQ(Term t0, Term mod USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
2015-10-20 07:49:53 +01:00
|
|
|
|
2013-12-02 14:50:02 +00:00
|
|
|
inp.val.t = t0;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_ATOM | YAP_STRING_INT |
|
|
|
|
YAP_STRING_FLOAT | YAP_STRING_BIG | YAP_STRING_TERM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-02 14:50:02 +00:00
|
|
|
out.type = mod_to_type(mod PASS_REGS);
|
2015-10-20 07:49:53 +01:00
|
|
|
|
2013-12-02 14:50:02 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
2014-12-15 00:53:56 +00:00
|
|
|
if (out.type == YAP_STRING_ATOM)
|
2015-10-20 07:49:53 +01:00
|
|
|
return MkAtomTerm(out.val.a);
|
2013-12-02 14:50:02 +00:00
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_AtomicToTBQ(Term t0, Term mod USES_REGS) {
|
2015-07-06 12:01:55 +01:00
|
|
|
seq_tv_t inp, out;
|
2015-10-20 07:49:53 +01:00
|
|
|
|
2015-07-06 12:01:55 +01:00
|
|
|
inp.val.t = t0;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_ATOM | YAP_STRING_INT |
|
|
|
|
YAP_STRING_FLOAT | YAP_STRING_BIG | YAP_STRING_TERM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2015-07-06 12:01:55 +01:00
|
|
|
out.type = mod_to_bqtype(mod PASS_REGS);
|
2015-10-20 07:49:53 +01:00
|
|
|
|
2015-07-06 12:01:55 +01:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
if (out.type == YAP_STRING_ATOM)
|
2015-10-20 07:49:53 +01:00
|
|
|
return MkAtomTerm(out.val.a);
|
2015-07-06 12:01:55 +01:00
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Atom Yap_CharsToAtom(const char *s, encoding_t enc USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
|
2015-08-07 22:57:53 +01:00
|
|
|
inp.val.c0 = s;
|
2013-12-18 16:42:05 +00:00
|
|
|
inp.sz = 0;
|
2015-09-21 23:05:36 +01:00
|
|
|
inp.enc = enc;
|
2013-12-02 14:50:02 +00:00
|
|
|
inp.type = YAP_STRING_CHARS;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-02 14:50:02 +00:00
|
|
|
out.type = YAP_STRING_ATOM;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.a;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_CharsToListOfAtoms(const char *s,
|
|
|
|
encoding_t enc USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
|
2015-08-07 22:57:53 +01:00
|
|
|
inp.val.c0 = s;
|
2013-12-18 16:42:05 +00:00
|
|
|
inp.sz = 0;
|
2015-09-21 23:05:36 +01:00
|
|
|
inp.enc = enc;
|
2013-12-02 14:50:02 +00:00
|
|
|
inp.type = YAP_STRING_CHARS;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-02 14:50:02 +00:00
|
|
|
out.type = YAP_STRING_ATOMS;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_CharsToListOfCodes(const char *s,
|
|
|
|
encoding_t enc USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
|
2015-08-07 22:57:53 +01:00
|
|
|
inp.val.c0 = s;
|
2013-12-18 16:42:05 +00:00
|
|
|
inp.sz = 0;
|
2015-09-21 23:05:36 +01:00
|
|
|
inp.enc = enc;
|
2013-12-02 14:50:02 +00:00
|
|
|
inp.type = YAP_STRING_CHARS;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-02 14:50:02 +00:00
|
|
|
out.type = YAP_STRING_CODES;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_UTF8ToListOfCodes(const char *s USES_REGS) {
|
2015-06-19 00:51:17 +01:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
|
2015-08-07 22:57:53 +01:00
|
|
|
inp.val.c0 = s;
|
2015-06-19 00:51:17 +01:00
|
|
|
inp.sz = 0;
|
|
|
|
inp.type = YAP_STRING_CHARS;
|
2015-09-21 23:05:36 +01:00
|
|
|
inp.enc = ENC_ISO_UTF8;
|
|
|
|
out.type = YAP_STRING_CODES;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_CharsToDiffListOfCodes(const char *s, Term tail,
|
|
|
|
encoding_t enc USES_REGS) {
|
2015-09-21 23:05:36 +01:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
|
|
|
|
inp.val.c0 = s;
|
|
|
|
inp.sz = 0;
|
|
|
|
inp.enc = enc;
|
|
|
|
inp.type = YAP_STRING_CHARS;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2015-10-20 07:49:53 +01:00
|
|
|
out.type = YAP_STRING_DIFF | YAP_STRING_CODES;
|
2015-09-21 23:05:36 +01:00
|
|
|
out.dif = tail;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_UTF8ToDiffListOfCodes(const char *s,
|
|
|
|
Term tail USES_REGS) {
|
2015-09-21 23:05:36 +01:00
|
|
|
seq_tv_t inp, out;
|
2015-10-20 07:49:53 +01:00
|
|
|
|
2015-09-21 23:05:36 +01:00
|
|
|
inp.val.c0 = s;
|
|
|
|
inp.sz = 0;
|
|
|
|
inp.type = YAP_STRING_CHARS;
|
|
|
|
inp.enc = ENC_ISO_UTF8;
|
2015-10-20 07:49:53 +01:00
|
|
|
out.type = YAP_STRING_DIFF | YAP_STRING_CODES;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2015-09-21 23:05:36 +01:00
|
|
|
out.dif = tail;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_WCharsToDiffListOfCodes(const wchar_t *s,
|
|
|
|
Term tail USES_REGS) {
|
2015-09-21 23:05:36 +01:00
|
|
|
seq_tv_t inp, out;
|
2015-10-20 07:49:53 +01:00
|
|
|
|
2015-09-21 23:05:36 +01:00
|
|
|
inp.val.w0 = s;
|
|
|
|
inp.sz = 0;
|
|
|
|
inp.type = YAP_STRING_WCHARS;
|
2015-10-20 07:49:53 +01:00
|
|
|
out.type = YAP_STRING_DIFF | YAP_STRING_CODES;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2015-06-19 00:51:17 +01:00
|
|
|
out.dif = tail;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_CharsToString(const char *s, encoding_t enc USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
|
2015-08-07 22:57:53 +01:00
|
|
|
inp.val.c0 = s;
|
2013-12-18 16:42:05 +00:00
|
|
|
inp.sz = 0;
|
2015-09-21 23:05:36 +01:00
|
|
|
inp.enc = enc;
|
2013-12-02 14:50:02 +00:00
|
|
|
inp.type = YAP_STRING_CHARS;
|
|
|
|
out.type = YAP_STRING_STRING;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-02 14:50:02 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline char *Yap_AtomToUTF8Text(Atom at, const char *s USES_REGS) {
|
2015-08-07 22:57:53 +01:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
|
|
|
|
inp.val.a = at;
|
|
|
|
inp.sz = 0;
|
|
|
|
inp.type = YAP_STRING_ATOM;
|
|
|
|
out.type = YAP_STRING_CHARS;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2015-08-07 22:57:53 +01:00
|
|
|
out.enc = ENC_ISO_UTF8;
|
|
|
|
if (s) {
|
|
|
|
out.val.c0 = s;
|
|
|
|
out.type |= YAP_STRING_WITH_BUFFER;
|
|
|
|
} else {
|
|
|
|
out.val.c = NULL;
|
|
|
|
}
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.c;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_CharsToTDQ(const char *s, Term mod,
|
|
|
|
encoding_t enc USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
2015-10-20 07:49:53 +01:00
|
|
|
|
2015-08-07 22:57:53 +01:00
|
|
|
inp.val.c0 = s;
|
2013-12-18 16:42:05 +00:00
|
|
|
inp.sz = 0;
|
2013-12-02 14:50:02 +00:00
|
|
|
inp.type = YAP_STRING_CHARS;
|
|
|
|
inp.mod = mod;
|
2015-09-21 23:05:36 +01:00
|
|
|
inp.enc = enc;
|
2013-12-02 14:50:02 +00:00
|
|
|
out.type = mod_to_type(mod PASS_REGS);
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-02 14:50:02 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
2014-12-15 00:53:56 +00:00
|
|
|
if (out.type == YAP_STRING_ATOM)
|
2015-10-20 07:49:53 +01:00
|
|
|
return MkAtomTerm(out.val.a);
|
2013-12-02 14:50:02 +00:00
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_CharsToTBQ(const char *s, Term mod,
|
|
|
|
encoding_t enc USES_REGS) {
|
2015-07-06 12:01:55 +01:00
|
|
|
seq_tv_t inp, out;
|
2015-10-20 07:49:53 +01:00
|
|
|
|
2015-08-07 22:57:53 +01:00
|
|
|
inp.val.c0 = s;
|
2015-07-06 12:01:55 +01:00
|
|
|
inp.sz = 0;
|
|
|
|
inp.type = YAP_STRING_CHARS;
|
|
|
|
inp.mod = mod;
|
2015-09-21 23:05:36 +01:00
|
|
|
inp.enc = enc;
|
2015-07-06 12:01:55 +01:00
|
|
|
out.type = mod_to_bqtype(mod PASS_REGS);
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2015-07-06 12:01:55 +01:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
if (out.type == YAP_STRING_ATOM)
|
2015-10-20 07:49:53 +01:00
|
|
|
return MkAtomTerm(out.val.a);
|
2015-07-06 12:01:55 +01:00
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Atom Yap_ListOfAtomsToAtom(Term t0 USES_REGS) {
|
2013-12-04 23:01:30 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
|
|
|
inp.type = YAP_STRING_ATOMS;
|
|
|
|
out.type = YAP_STRING_ATOM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-08 19:12:24 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
2014-06-12 01:25:50 +01:00
|
|
|
return (Atom)NULL;
|
2013-12-08 19:12:24 +00:00
|
|
|
return out.val.a;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_ListOfAtomsToNumber(Term t0 USES_REGS) {
|
2013-12-08 19:12:24 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
|
|
|
inp.type = YAP_STRING_ATOMS;
|
2015-10-20 07:49:53 +01:00
|
|
|
out.type =
|
|
|
|
YAP_STRING_INT | YAP_STRING_FLOAT | YAP_STRING_BIG | YAP_STRING_TERM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-04 23:01:30 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
2013-12-08 19:12:24 +00:00
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_ListOfAtomsToString(Term t0 USES_REGS) {
|
2013-12-08 19:12:24 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
|
|
|
inp.type = YAP_STRING_ATOMS;
|
|
|
|
out.type = YAP_STRING_STRING;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-08 19:12:24 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Atom Yap_ListOfCodesToAtom(Term t0 USES_REGS) {
|
2013-12-08 19:12:24 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
|
|
|
inp.type = YAP_STRING_CODES;
|
|
|
|
out.type = YAP_STRING_ATOM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-08 19:12:24 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
2014-06-12 01:25:50 +01:00
|
|
|
return (Atom)NULL;
|
2013-12-04 23:01:30 +00:00
|
|
|
return out.val.a;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_ListOfCodesToNumber(Term t0 USES_REGS) {
|
2013-12-08 19:12:24 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
|
|
|
inp.type = YAP_STRING_CODES;
|
2015-10-20 07:49:53 +01:00
|
|
|
out.type = YAP_STRING_INT | YAP_STRING_FLOAT | YAP_STRING_BIG;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-08 19:12:24 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_ListOfCodesToString(Term t0 USES_REGS) {
|
2013-12-08 19:12:24 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
|
|
|
inp.type = YAP_STRING_CODES;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-08 19:12:24 +00:00
|
|
|
out.type = YAP_STRING_STRING;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Atom Yap_ListToAtom(Term t0 USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
2016-02-13 20:18:10 +00:00
|
|
|
inp.type = YAP_STRING_ATOMS_CODES;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-02 14:50:02 +00:00
|
|
|
out.type = YAP_STRING_ATOM;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.a;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_ListToAtomic(Term t0 USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_ATOMS_CODES | YAP_STRING_TERM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2015-10-20 07:49:53 +01:00
|
|
|
out.type = YAP_STRING_ATOM | YAP_STRING_INT | YAP_STRING_FLOAT |
|
|
|
|
YAP_STRING_BIG | YAP_STRING_TERM;
|
2013-12-02 14:50:02 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_ListToNumber(Term t0 USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
|
|
|
|
inp.val.t = t0;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_ATOMS_CODES;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2015-10-20 07:49:53 +01:00
|
|
|
out.type = YAP_STRING_INT | YAP_STRING_FLOAT | YAP_STRING_BIG;
|
2015-07-06 12:01:55 +01:00
|
|
|
|
2013-12-02 14:50:02 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_ListToString(Term t0 USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
|
|
|
|
inp.val.t = t0;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_ATOMS_CODES | YAP_STRING_TERM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-02 14:50:02 +00:00
|
|
|
out.type = YAP_STRING_STRING;
|
2015-07-06 12:01:55 +01:00
|
|
|
|
2013-12-02 14:50:02 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_ListSWIToString(Term t0 USES_REGS) {
|
2013-12-05 21:26:46 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
|
|
|
|
inp.val.t = t0;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_ATOM | YAP_STRING_ATOMS_CODES |
|
|
|
|
YAP_STRING_INT | YAP_STRING_FLOAT | YAP_STRING_BIG |
|
|
|
|
YAP_STRING_TERM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-05 21:26:46 +00:00
|
|
|
out.type = YAP_STRING_STRING;
|
2015-07-06 12:01:55 +01:00
|
|
|
|
2013-12-05 21:26:46 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term YapListToTDQ(Term t0, Term mod USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
2015-10-20 07:49:53 +01:00
|
|
|
|
2013-12-02 14:50:02 +00:00
|
|
|
inp.val.t = t0;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_ATOMS_CODES | YAP_STRING_TERM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-02 14:50:02 +00:00
|
|
|
out.type = mod_to_type(mod PASS_REGS);
|
2015-10-20 07:49:53 +01:00
|
|
|
|
2015-07-06 12:01:55 +01:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
if (out.type == YAP_STRING_ATOM) {
|
2015-10-20 07:49:53 +01:00
|
|
|
return MkAtomTerm(out.val.a);
|
2015-07-06 12:01:55 +01:00
|
|
|
}
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term YapListToTBQ(Term t0, Term mod USES_REGS) {
|
2015-07-06 12:01:55 +01:00
|
|
|
seq_tv_t inp, out;
|
2015-10-20 07:49:53 +01:00
|
|
|
|
2015-07-06 12:01:55 +01:00
|
|
|
inp.val.t = t0;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_ATOMS_CODES | YAP_STRING_TERM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2015-07-06 12:01:55 +01:00
|
|
|
out.type = mod_to_bqtype(mod PASS_REGS);
|
2015-10-20 07:49:53 +01:00
|
|
|
|
2015-07-06 12:01:55 +01:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
2013-12-02 14:50:02 +00:00
|
|
|
return 0L;
|
2014-12-15 00:53:56 +00:00
|
|
|
if (out.type == YAP_STRING_ATOM) {
|
2015-10-20 07:49:53 +01:00
|
|
|
return MkAtomTerm(out.val.a);
|
2014-12-15 00:53:56 +00:00
|
|
|
}
|
2013-12-02 14:50:02 +00:00
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Atom Yap_NCharsToAtom(const char *s, size_t len,
|
|
|
|
encoding_t enc USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
|
2015-08-07 22:57:53 +01:00
|
|
|
inp.val.c0 = s;
|
2013-12-02 14:50:02 +00:00
|
|
|
inp.sz = len;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_CHARS | YAP_STRING_NCHARS;
|
2015-09-21 23:05:36 +01:00
|
|
|
inp.enc = enc;
|
2013-12-02 14:50:02 +00:00
|
|
|
out.type = YAP_STRING_ATOM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2014-03-18 15:40:50 +00:00
|
|
|
out.max = len;
|
2013-12-02 14:50:02 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.a;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_CharsToDiffListOfAtoms(const char *s, encoding_t enc,
|
|
|
|
Term tail USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
|
2015-08-07 22:57:53 +01:00
|
|
|
inp.val.c0 = s;
|
2015-06-19 00:51:17 +01:00
|
|
|
inp.type = YAP_STRING_CHARS;
|
2015-09-21 23:05:36 +01:00
|
|
|
inp.enc = enc;
|
2015-10-20 07:49:53 +01:00
|
|
|
out.type = YAP_STRING_ATOMS | YAP_STRING_DIFF;
|
2015-06-19 00:51:17 +01:00
|
|
|
out.dif = tail;
|
2013-12-02 14:50:02 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_NCharsToListOfCodes(const char *s, size_t len,
|
|
|
|
encoding_t enc USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
|
2015-08-07 22:57:53 +01:00
|
|
|
inp.val.c0 = s;
|
2013-12-02 14:50:02 +00:00
|
|
|
inp.sz = len;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_CHARS | YAP_STRING_NCHARS;
|
2015-09-21 23:05:36 +01:00
|
|
|
inp.enc = enc;
|
2013-12-02 14:50:02 +00:00
|
|
|
out.type = YAP_STRING_CODES;
|
2014-03-18 15:40:50 +00:00
|
|
|
out.max = len;
|
2013-12-02 14:50:02 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_NCharsToString(const char *s, size_t len,
|
|
|
|
encoding_t enc USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
|
2015-08-07 22:57:53 +01:00
|
|
|
inp.val.c0 = s;
|
2013-12-02 14:50:02 +00:00
|
|
|
inp.sz = len;
|
2015-09-21 23:05:36 +01:00
|
|
|
inp.enc = enc;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_CHARS | YAP_STRING_NCHARS;
|
2013-12-02 14:50:02 +00:00
|
|
|
out.type = YAP_STRING_STRING;
|
2014-03-18 15:40:50 +00:00
|
|
|
out.max = len;
|
2013-12-02 14:50:02 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_NCharsToTDQ(const char *s, size_t len, encoding_t enc,
|
|
|
|
Term mod USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
2015-10-20 07:49:53 +01:00
|
|
|
|
2015-08-07 22:57:53 +01:00
|
|
|
inp.val.c0 = s;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_CHARS | YAP_STRING_NCHARS;
|
2013-12-02 14:50:02 +00:00
|
|
|
inp.sz = len;
|
2015-09-21 23:05:36 +01:00
|
|
|
inp.enc = enc;
|
2013-12-02 14:50:02 +00:00
|
|
|
inp.mod = mod;
|
|
|
|
out.type = mod_to_type(mod PASS_REGS);
|
2014-03-18 15:40:50 +00:00
|
|
|
out.max = len;
|
2013-12-02 14:50:02 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
2014-12-15 00:53:56 +00:00
|
|
|
if (out.type == YAP_STRING_ATOM)
|
2015-10-20 07:49:53 +01:00
|
|
|
return MkAtomTerm(out.val.a);
|
2013-12-02 14:50:02 +00:00
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_NCharsToTBQ(const char *s, size_t len, encoding_t enc,
|
|
|
|
Term mod USES_REGS) {
|
2015-07-06 12:01:55 +01:00
|
|
|
seq_tv_t inp, out;
|
2015-10-20 07:49:53 +01:00
|
|
|
|
2015-08-07 22:57:53 +01:00
|
|
|
inp.val.c0 = s;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_CHARS | YAP_STRING_NCHARS;
|
2015-07-06 12:01:55 +01:00
|
|
|
inp.sz = len;
|
2015-09-21 23:05:36 +01:00
|
|
|
inp.enc = enc;
|
2015-07-06 12:01:55 +01:00
|
|
|
inp.mod = mod;
|
|
|
|
out.type = mod_to_bqtype(mod PASS_REGS);
|
|
|
|
out.max = len;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
if (out.type == YAP_STRING_ATOM)
|
2015-10-20 07:49:53 +01:00
|
|
|
return MkAtomTerm(out.val.a);
|
2015-07-06 12:01:55 +01:00
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Atom Yap_NumberToAtom(Term t0 USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type =
|
|
|
|
YAP_STRING_INT | YAP_STRING_FLOAT | YAP_STRING_BIG | YAP_STRING_TERM;
|
2013-12-02 14:50:02 +00:00
|
|
|
out.type = YAP_STRING_ATOM;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.a;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_NumberToListOfAtoms(Term t0 USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type =
|
|
|
|
YAP_STRING_INT | YAP_STRING_FLOAT | YAP_STRING_BIG | YAP_STRING_TERM;
|
2013-12-02 14:50:02 +00:00
|
|
|
out.type = YAP_STRING_ATOMS;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_NumberToListOfCodes(Term t0 USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type =
|
|
|
|
YAP_STRING_INT | YAP_STRING_FLOAT | YAP_STRING_BIG | YAP_STRING_TERM;
|
2013-12-02 14:50:02 +00:00
|
|
|
out.type = YAP_STRING_CODES;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_NumberToString(Term t0 USES_REGS) {
|
2013-12-04 23:01:30 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type =
|
|
|
|
YAP_STRING_INT | YAP_STRING_FLOAT | YAP_STRING_BIG | YAP_STRING_TERM;
|
2013-12-04 23:01:30 +00:00
|
|
|
out.type = YAP_STRING_STRING;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Atom Yap_NWCharsToAtom(const wchar_t *s, size_t len USES_REGS) {
|
|
|
|
seq_tv_t inp, out;
|
2015-07-06 12:01:55 +01:00
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.val.w0 = s;
|
|
|
|
inp.sz = len;
|
|
|
|
inp.type = YAP_STRING_WCHARS | YAP_STRING_NCHARS;
|
|
|
|
out.type = YAP_STRING_ATOM;
|
|
|
|
out.max = len;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.a;
|
2013-12-02 14:50:02 +00:00
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_NWCharsToListOfAtoms(const wchar_t *s,
|
|
|
|
size_t len USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
|
2015-08-07 22:57:53 +01:00
|
|
|
inp.val.w0 = s;
|
2013-12-02 14:50:02 +00:00
|
|
|
inp.sz = len;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_WCHARS | YAP_STRING_NCHARS;
|
2013-12-02 14:50:02 +00:00
|
|
|
out.type = YAP_STRING_ATOMS;
|
2014-03-18 15:40:50 +00:00
|
|
|
out.max = len;
|
2013-12-02 14:50:02 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_NWCharsToListOfCodes(const wchar_t *s,
|
|
|
|
size_t len USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
|
2015-08-07 22:57:53 +01:00
|
|
|
inp.val.w0 = s;
|
2013-12-02 14:50:02 +00:00
|
|
|
inp.sz = len;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_WCHARS | YAP_STRING_NCHARS;
|
2013-12-02 14:50:02 +00:00
|
|
|
out.type = YAP_STRING_CODES;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2014-03-18 15:40:50 +00:00
|
|
|
out.max = len;
|
2013-12-02 14:50:02 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_NWCharsToString(const wchar_t *s, size_t len USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
|
2015-08-07 22:57:53 +01:00
|
|
|
inp.val.w0 = s;
|
2013-12-02 14:50:02 +00:00
|
|
|
inp.sz = len;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_WCHARS | YAP_STRING_NCHARS;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-02 14:50:02 +00:00
|
|
|
out.type = YAP_STRING_STRING;
|
2014-03-18 15:40:50 +00:00
|
|
|
out.max = len;
|
2013-12-02 14:50:02 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Atom Yap_StringToAtom(Term t0 USES_REGS) {
|
2013-12-04 23:01:30 +00:00
|
|
|
seq_tv_t inp, out;
|
2013-12-18 16:42:05 +00:00
|
|
|
inp.sz = 0;
|
2013-12-04 23:01:30 +00:00
|
|
|
inp.val.t = t0;
|
|
|
|
inp.type = YAP_STRING_STRING;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-04 23:01:30 +00:00
|
|
|
out.type = YAP_STRING_ATOM;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.a;
|
|
|
|
}
|
2013-12-02 14:50:02 +00:00
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Atom Yap_StringSWIToAtom(Term t0 USES_REGS) {
|
2013-12-05 21:26:46 +00:00
|
|
|
seq_tv_t inp, out;
|
2013-12-18 16:42:05 +00:00
|
|
|
inp.sz = 0;
|
2013-12-05 21:26:46 +00:00
|
|
|
inp.val.t = t0;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_ATOM | YAP_STRING_INT |
|
|
|
|
YAP_STRING_FLOAT | YAP_STRING_BIG | YAP_STRING_ATOMS_CODES |
|
|
|
|
YAP_STRING_TERM;
|
2013-12-05 21:26:46 +00:00
|
|
|
out.type = YAP_STRING_ATOM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-05 21:26:46 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.a;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline size_t Yap_StringToAtomic(Term t0 USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
2013-12-18 16:42:05 +00:00
|
|
|
inp.sz = 0;
|
2013-12-02 14:50:02 +00:00
|
|
|
inp.val.t = t0;
|
2013-12-04 23:01:30 +00:00
|
|
|
inp.type = YAP_STRING_STRING;
|
2015-10-20 07:49:53 +01:00
|
|
|
out.type = YAP_STRING_ATOM | YAP_STRING_INT | YAP_STRING_FLOAT |
|
|
|
|
YAP_STRING_BIG | YAP_STRING_TERM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-04 23:01:30 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline size_t Yap_StringToLength(Term t0 USES_REGS) {
|
2013-12-04 23:01:30 +00:00
|
|
|
seq_tv_t inp, out;
|
2013-12-18 16:42:05 +00:00
|
|
|
inp.sz = 0;
|
2013-12-04 23:01:30 +00:00
|
|
|
inp.val.t = t0;
|
|
|
|
inp.type = YAP_STRING_STRING;
|
|
|
|
out.type = YAP_STRING_LENGTH;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-04 23:01:30 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
2013-12-06 15:08:35 +00:00
|
|
|
return (size_t)(-1L);
|
|
|
|
return out.val.l;
|
2013-12-04 23:01:30 +00:00
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline size_t Yap_StringToListOfAtoms(Term t0 USES_REGS) {
|
2013-12-04 23:01:30 +00:00
|
|
|
seq_tv_t inp, out;
|
2013-12-18 16:42:05 +00:00
|
|
|
inp.sz = 0;
|
2013-12-04 23:01:30 +00:00
|
|
|
inp.val.t = t0;
|
|
|
|
inp.type = YAP_STRING_STRING;
|
|
|
|
out.type = YAP_STRING_ATOMS;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-04 23:01:30 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline size_t Yap_StringSWIToListOfAtoms(Term t0 USES_REGS) {
|
2013-12-06 15:08:35 +00:00
|
|
|
seq_tv_t inp, out;
|
2013-12-18 16:42:05 +00:00
|
|
|
inp.sz = 0;
|
2013-12-06 15:08:35 +00:00
|
|
|
inp.val.t = t0;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_ATOM | YAP_STRING_INT |
|
|
|
|
YAP_STRING_FLOAT | YAP_STRING_BIG | YAP_STRING_ATOMS_CODES |
|
|
|
|
YAP_STRING_TERM;
|
2013-12-06 15:08:35 +00:00
|
|
|
out.type = YAP_STRING_ATOMS;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-06 15:08:35 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline size_t Yap_StringToListOfCodes(Term t0 USES_REGS) {
|
2013-12-04 23:01:30 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
2013-12-18 16:42:05 +00:00
|
|
|
inp.sz = 0;
|
2013-12-04 23:01:30 +00:00
|
|
|
inp.type = YAP_STRING_STRING;
|
2013-12-02 14:50:02 +00:00
|
|
|
out.type = YAP_STRING_CODES;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-04 23:01:30 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline size_t Yap_StringSWIToListOfCodes(Term t0 USES_REGS) {
|
2013-12-05 21:26:46 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
2015-10-20 07:49:53 +01:00
|
|
|
inp.type = YAP_STRING_STRING | YAP_STRING_ATOM | YAP_STRING_INT |
|
|
|
|
YAP_STRING_FLOAT | YAP_STRING_BIG | YAP_STRING_ATOMS_CODES |
|
|
|
|
YAP_STRING_TERM;
|
2013-12-05 21:26:46 +00:00
|
|
|
out.type = YAP_STRING_CODES;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-05 21:26:46 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_StringToNumber(Term t0 USES_REGS) {
|
2013-12-04 23:01:30 +00:00
|
|
|
seq_tv_t inp, out;
|
|
|
|
inp.val.t = t0;
|
2013-12-18 16:42:05 +00:00
|
|
|
inp.sz = 0;
|
2013-12-04 23:01:30 +00:00
|
|
|
inp.type = YAP_STRING_STRING;
|
2015-10-20 07:49:53 +01:00
|
|
|
out.type =
|
|
|
|
YAP_STRING_INT | YAP_STRING_FLOAT | YAP_STRING_BIG | YAP_STRING_TERM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-02 14:50:02 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-11-13 13:22:50 +00:00
|
|
|
static inline Term Yap_UTF8ToString(const char *s USES_REGS) {
|
2016-01-03 02:06:09 +00:00
|
|
|
return MkStringTerm(s);
|
2015-11-13 13:22:50 +00:00
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_WCharsToListOfCodes(const wchar_t *s USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
2015-08-07 22:57:53 +01:00
|
|
|
inp.val.w0 = s;
|
2013-12-18 16:42:05 +00:00
|
|
|
inp.sz = 0;
|
2013-12-02 14:50:02 +00:00
|
|
|
inp.type = YAP_STRING_WCHARS;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-02 14:50:02 +00:00
|
|
|
out.type = YAP_STRING_CODES;
|
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_WCharsToTDQ(wchar_t *s, Term mod USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
2015-10-20 07:49:53 +01:00
|
|
|
|
2015-08-07 22:57:53 +01:00
|
|
|
inp.val.w0 = s;
|
2013-12-02 14:50:02 +00:00
|
|
|
inp.type = YAP_STRING_WCHARS;
|
2013-12-18 16:42:05 +00:00
|
|
|
inp.sz = 0;
|
2013-12-02 14:50:02 +00:00
|
|
|
inp.mod = mod;
|
|
|
|
out.type = mod_to_type(mod PASS_REGS);
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-02 14:50:02 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
2014-12-15 00:53:56 +00:00
|
|
|
if (out.type == YAP_STRING_ATOM)
|
2015-10-20 07:49:53 +01:00
|
|
|
return MkAtomTerm(out.val.a);
|
2013-12-02 14:50:02 +00:00
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_WCharsToTBQ(wchar_t *s, Term mod USES_REGS) {
|
2015-07-06 12:01:55 +01:00
|
|
|
seq_tv_t inp, out;
|
2015-10-20 07:49:53 +01:00
|
|
|
|
2015-07-06 12:01:55 +01:00
|
|
|
inp.val.w = s;
|
|
|
|
inp.type = YAP_STRING_WCHARS;
|
|
|
|
inp.sz = 0;
|
|
|
|
inp.mod = mod;
|
|
|
|
out.type = mod_to_bqtype(mod PASS_REGS);
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2015-07-06 12:01:55 +01:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
if (out.type == YAP_STRING_ATOM)
|
2015-10-20 07:49:53 +01:00
|
|
|
return MkAtomTerm(out.val.a);
|
2015-07-06 12:01:55 +01:00
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_WCharsToString(const wchar_t *s USES_REGS) {
|
2013-12-02 14:50:02 +00:00
|
|
|
seq_tv_t inp, out;
|
2015-08-07 22:57:53 +01:00
|
|
|
inp.val.w0 = s;
|
2013-12-18 16:42:05 +00:00
|
|
|
inp.sz = 0;
|
2013-12-02 14:50:02 +00:00
|
|
|
inp.type = YAP_STRING_WCHARS;
|
|
|
|
out.type = YAP_STRING_STRING;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-02 14:50:02 +00:00
|
|
|
if (!Yap_CVT_Text(&inp, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Atom Yap_ConcatAtoms(Term t1, Term t2 USES_REGS) {
|
2013-12-04 23:01:30 +00:00
|
|
|
seq_tv_t inpv[2], out;
|
|
|
|
inpv[0].val.t = t1;
|
|
|
|
inpv[0].type = YAP_STRING_ATOM;
|
2013-12-18 16:42:05 +00:00
|
|
|
inpv[0].sz = 0;
|
2013-12-04 23:01:30 +00:00
|
|
|
inpv[1].val.t = t2;
|
|
|
|
inpv[1].type = YAP_STRING_ATOM;
|
2013-12-18 16:42:05 +00:00
|
|
|
inpv[1].sz = 0;
|
2013-12-04 23:01:30 +00:00
|
|
|
out.type = YAP_STRING_ATOM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-04 23:01:30 +00:00
|
|
|
if (!Yap_Concat_Text(2, inpv, &out PASS_REGS))
|
2014-06-12 01:25:50 +01:00
|
|
|
return (Atom)NULL;
|
2013-12-04 23:01:30 +00:00
|
|
|
return out.val.a;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Atom Yap_ConcatAtomics(Term t1, Term t2 USES_REGS) {
|
2013-12-04 23:01:30 +00:00
|
|
|
seq_tv_t inpv[2], out;
|
|
|
|
inpv[0].val.t = t1;
|
2015-10-20 07:49:53 +01:00
|
|
|
inpv[0].type = YAP_STRING_STRING | YAP_STRING_ATOM | YAP_STRING_INT |
|
|
|
|
YAP_STRING_FLOAT | YAP_STRING_BIG | YAP_STRING_TERM;
|
2013-12-18 16:42:05 +00:00
|
|
|
inpv[0].sz = 0;
|
2013-12-04 23:01:30 +00:00
|
|
|
inpv[1].val.t = t2;
|
2015-10-20 07:49:53 +01:00
|
|
|
inpv[1].type = YAP_STRING_STRING | YAP_STRING_ATOM | YAP_STRING_INT |
|
|
|
|
YAP_STRING_FLOAT | YAP_STRING_BIG | YAP_STRING_TERM;
|
2013-12-18 16:42:05 +00:00
|
|
|
inpv[1].sz = 0;
|
2013-12-04 23:01:30 +00:00
|
|
|
out.type = YAP_STRING_ATOM;
|
2015-10-13 01:59:50 +01:00
|
|
|
out.val.uc = NULL;
|
2013-12-04 23:01:30 +00:00
|
|
|
if (!Yap_Concat_Text(2, inpv, &out PASS_REGS))
|
2014-06-12 01:25:50 +01:00
|
|
|
return (Atom)NULL;
|
2013-12-04 23:01:30 +00:00
|
|
|
return out.val.a;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_ConcatStrings(Term t1, Term t2 USES_REGS) {
|
2013-12-04 23:01:30 +00:00
|
|
|
seq_tv_t inpv[2], out;
|
|
|
|
inpv[0].val.t = t1;
|
|
|
|
inpv[0].type = YAP_STRING_STRING;
|
2013-12-18 16:42:05 +00:00
|
|
|
inpv[0].sz = 0;
|
2013-12-04 23:01:30 +00:00
|
|
|
inpv[1].val.t = t2;
|
|
|
|
inpv[1].type = YAP_STRING_STRING;
|
2013-12-18 16:42:05 +00:00
|
|
|
inpv[1].sz = 0;
|
2013-12-04 23:01:30 +00:00
|
|
|
out.type = YAP_STRING_STRING;
|
2015-10-13 01:59:50 +01:00
|
|
|
|
2013-12-04 23:01:30 +00:00
|
|
|
if (!Yap_Concat_Text(2, inpv, &out PASS_REGS))
|
|
|
|
return 0L;
|
|
|
|
return out.val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Atom Yap_SpliceAtom(Term t1, Atom ats[], size_t cut,
|
|
|
|
size_t max USES_REGS) {
|
2013-12-04 23:01:30 +00:00
|
|
|
seq_tv_t outv[2], inp;
|
2013-12-06 15:08:35 +00:00
|
|
|
size_t cuts[2];
|
|
|
|
cuts[0] = cut;
|
|
|
|
cuts[1] = max;
|
2013-12-04 23:01:30 +00:00
|
|
|
inp.type = YAP_STRING_ATOM;
|
|
|
|
inp.val.t = t1;
|
2013-12-18 16:42:05 +00:00
|
|
|
inp.sz = 0;
|
2013-12-04 23:01:30 +00:00
|
|
|
outv[0].type = YAP_STRING_ATOM;
|
2013-12-18 16:42:05 +00:00
|
|
|
outv[0].sz = 0;
|
2013-12-04 23:01:30 +00:00
|
|
|
outv[1].type = YAP_STRING_ATOM;
|
2013-12-18 16:42:05 +00:00
|
|
|
outv[1].sz = 0;
|
2014-06-12 01:25:50 +01:00
|
|
|
if (!Yap_Splice_Text(2, cuts, &inp, (encoding_t *)NULL, outv PASS_REGS))
|
|
|
|
return (Atom)NULL;
|
2013-12-04 23:01:30 +00:00
|
|
|
ats[0] = outv[0].val.a;
|
|
|
|
ats[1] = outv[1].val.a;
|
|
|
|
return ats[0];
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Atom Yap_SubtractHeadAtom(Term t1, Term th USES_REGS) {
|
2013-12-04 23:01:30 +00:00
|
|
|
seq_tv_t outv[2], inp;
|
|
|
|
inp.type = YAP_STRING_ATOM;
|
|
|
|
inp.val.t = t1;
|
2013-12-18 16:42:05 +00:00
|
|
|
inp.sz = 0;
|
2013-12-04 23:01:30 +00:00
|
|
|
outv[0].type = YAP_STRING_ATOM;
|
|
|
|
outv[0].val.t = th;
|
2013-12-18 16:42:05 +00:00
|
|
|
outv[0].sz = 0;
|
2013-12-04 23:01:30 +00:00
|
|
|
outv[1].type = YAP_STRING_ATOM;
|
|
|
|
outv[1].val.t = 0;
|
2013-12-18 16:42:05 +00:00
|
|
|
outv[1].sz = 0;
|
2015-10-20 07:49:53 +01:00
|
|
|
if (!Yap_Splice_Text(2, (size_t *)NULL, &inp, (encoding_t *)NULL,
|
|
|
|
outv PASS_REGS))
|
2014-06-12 01:25:50 +01:00
|
|
|
return (Atom)NULL;
|
2013-12-04 23:01:30 +00:00
|
|
|
return outv[1].val.a;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Atom Yap_SubtractTailAtom(Term t1, Term th USES_REGS) {
|
2013-12-04 23:01:30 +00:00
|
|
|
seq_tv_t outv[2], inp;
|
|
|
|
inp.type = YAP_STRING_ATOM;
|
|
|
|
inp.val.t = t1;
|
2013-12-18 16:42:05 +00:00
|
|
|
inp.sz = 0;
|
2013-12-04 23:01:30 +00:00
|
|
|
outv[0].type = YAP_STRING_ATOM;
|
|
|
|
outv[0].val.t = 0;
|
2013-12-18 16:42:05 +00:00
|
|
|
outv[0].sz = 0;
|
2013-12-04 23:01:30 +00:00
|
|
|
outv[1].type = YAP_STRING_ATOM;
|
|
|
|
outv[1].val.t = th;
|
2015-10-20 07:49:53 +01:00
|
|
|
if (!Yap_Splice_Text(2, (size_t *)NULL, &inp, (encoding_t *)NULL,
|
|
|
|
outv PASS_REGS))
|
2014-06-12 01:25:50 +01:00
|
|
|
return (Atom)NULL;
|
2013-12-04 23:01:30 +00:00
|
|
|
return outv[0].val.a;
|
|
|
|
}
|
2013-12-06 15:08:35 +00:00
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_SpliceString(Term t1, Term ts[], size_t cut,
|
|
|
|
size_t max USES_REGS) {
|
2013-12-06 15:08:35 +00:00
|
|
|
seq_tv_t outv[2], inp;
|
|
|
|
size_t cuts[2];
|
|
|
|
inp.type = YAP_STRING_STRING;
|
|
|
|
inp.val.t = t1;
|
2013-12-18 16:42:05 +00:00
|
|
|
inp.sz = 0;
|
2013-12-06 15:08:35 +00:00
|
|
|
outv[0].type = YAP_STRING_STRING;
|
|
|
|
outv[1].type = YAP_STRING_STRING;
|
2013-12-18 16:42:05 +00:00
|
|
|
outv[1].sz = 0;
|
2013-12-08 19:12:24 +00:00
|
|
|
cuts[0] = cut;
|
|
|
|
cuts[1] = max;
|
2015-10-20 07:49:53 +01:00
|
|
|
if (!Yap_Splice_Text(2, cuts, &inp, (encoding_t *)NULL, outv PASS_REGS))
|
2013-12-06 15:08:35 +00:00
|
|
|
return 0L;
|
|
|
|
ts[0] = outv[0].val.t;
|
|
|
|
ts[1] = outv[1].val.t;
|
|
|
|
return ts[0];
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_SubtractHeadString(Term t1, Term th USES_REGS) {
|
2013-12-06 15:08:35 +00:00
|
|
|
seq_tv_t outv[2], inp;
|
|
|
|
inp.type = YAP_STRING_STRING;
|
|
|
|
inp.val.t = t1;
|
2013-12-18 16:42:05 +00:00
|
|
|
inp.sz = 0;
|
2013-12-06 15:08:35 +00:00
|
|
|
outv[0].type = YAP_STRING_STRING;
|
|
|
|
outv[0].val.t = th;
|
2013-12-18 16:42:05 +00:00
|
|
|
outv[0].sz = 0;
|
2013-12-06 15:08:35 +00:00
|
|
|
outv[1].type = YAP_STRING_STRING;
|
|
|
|
outv[1].val.t = 0;
|
2013-12-18 16:42:05 +00:00
|
|
|
outv[1].sz = 0;
|
2015-10-20 07:49:53 +01:00
|
|
|
if (!Yap_Splice_Text(2, (size_t *)NULL, &inp, (encoding_t *)NULL,
|
|
|
|
outv PASS_REGS))
|
2013-12-06 15:08:35 +00:00
|
|
|
return 0L;
|
|
|
|
return outv[1].val.t;
|
|
|
|
}
|
|
|
|
|
2015-10-20 07:49:53 +01:00
|
|
|
static inline Term Yap_SubtractTailString(Term t1, Term th USES_REGS) {
|
2013-12-06 15:08:35 +00:00
|
|
|
seq_tv_t outv[2], inp;
|
|
|
|
inp.type = YAP_STRING_STRING;
|
|
|
|
inp.val.t = t1;
|
2013-12-18 16:42:05 +00:00
|
|
|
inp.sz = 0;
|
2013-12-06 15:08:35 +00:00
|
|
|
outv[0].type = YAP_STRING_STRING;
|
|
|
|
outv[0].val.t = 0;
|
2013-12-18 16:42:05 +00:00
|
|
|
outv[0].sz = 0;
|
2013-12-06 15:08:35 +00:00
|
|
|
outv[1].type = YAP_STRING_STRING;
|
|
|
|
outv[1].val.t = th;
|
2015-10-20 07:49:53 +01:00
|
|
|
if (!Yap_Splice_Text(2, (size_t *)NULL, &inp, (encoding_t *)NULL,
|
|
|
|
outv PASS_REGS))
|
2013-12-06 15:08:35 +00:00
|
|
|
return 0L;
|
|
|
|
return outv[0].val.t;
|
|
|
|
}
|
|
|
|
|
2015-07-06 12:01:55 +01:00
|
|
|
#endif // ≈YAP_TEXT_H
|
2016-04-10 14:21:17 +01:00
|
|
|
|
|
|
|
const char *Yap_TextTermToText(Term t, char *buf, size_t len, encoding_t enc);
|
|
|
|
Term Yap_MkTextTerm(const char *s, encoding_t e, Term tguide);
|