/usr/lib/ats2-postiats-0.1.3/prelude/DATS/strptr.dats is in ats2-lang 0.1.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 | (***********************************************************************)
(* *)
(* Applied Type System *)
(* *)
(***********************************************************************)
(*
** ATS/Postiats - Unleashing the Potential of Types!
** Copyright (C) 2010-2013 Hongwei Xi, ATS Trustful Software, Inc.
** All rights reserved
**
** ATS is free software; you can redistribute it and/or modify it under
** the terms of the GNU GENERAL PUBLIC LICENSE (GPL) as published by the
** Free Software Foundation; either version 3, or (at your option) any
** later version.
**
** ATS 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 ATS; see the file COPYING. If not, please write to the
** Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
** 02110-1301, USA.
*)
(* ****** ****** *)
(*
** Source:
** $PATSHOME/prelude/DATS/CODEGEN/strptr.atxt
** Time of generation: Fri Sep 26 22:20:56 2014
*)
(* ****** ****** *)
(* Author: Hongwei Xi *)
(* Authoremail: hwxi AT cs DOT bu DOT edu *)
(* Start time: April, 2012 *)
(* ****** ****** *)
#define ATS_DYNLOADFLAG 0 // no dynloading at run-time
(* ****** ****** *)
staload UN = "prelude/SATS/unsafe.sats"
(* ****** ****** *)
staload _(*anon*) = "prelude/DATS/integer.dats"
(* ****** ****** *)
#define CNUL '\000'
#define nullp the_null_ptr
(* ****** ****** *)
overload + with add_ptr_bsz
(* ****** ****** *)
implement{}
strptr_is_null (str) = (strptr2ptr (str) = nullp)
implement{}
strptr_isnot_null (str) = (strptr2ptr (str) > nullp)
(* ****** ****** *)
implement{}
strptr_is_empty (str) = let
val p = strptr2ptr (str) in $UN.ptr1_get<char>(p) = CNUL
end // end of [strptr_is_empty]
implement{}
strptr_isnot_empty (str) = let
val p = strptr2ptr (str) in $UN.ptr1_get<char>(p) != CNUL
end // end of [strptr_isnot_empty]
(* ****** ****** *)
implement{}
strnptr_get_at_size (str, i) =
$UN.ptr0_get<charNZ>(strnptr2ptr(str) + i)
// end of [strnptr_get_at_size]
implement{tk}
strnptr_get_at_gint (str, i) =
strnptr_get_at_size (str, g1int2uint (i))
// end of [strnptr_get_at_gint]
implement{tk}
strnptr_get_at_guint (str, i) =
strnptr_get_at_size (str, g1uint2uint (i))
// end of [strnptr_get_at_guint]
(* ****** ****** *)
implement{}
strnptr_set_at_size (str, i, c) =
$UN.ptr0_set<charNZ>(strnptr2ptr(str) + i, c)
// end of [strnptr_set_at_size]
implement{tk}
strnptr_set_at_gint (str, i, c) =
strnptr_set_at_size (str, g1int2uint (i), c)
// end of [strnptr_set_at_gint]
implement{tk}
strnptr_set_at_guint (str, i, c) =
strnptr_set_at_size (str, g1uint2uint (i), c)
// end of [strnptr_set_at_guint]
(* ****** ****** *)
implement
lt_strptr_strptr (x1, x2) = (compare_strptr_strptr (x1, x2) < 0)
implement
lte_strptr_strptr (x1, x2) = (compare_strptr_strptr (x1, x2) <= 0)
implement
gt_strptr_strptr (x1, x2) = (compare_strptr_strptr (x1, x2) > 0)
implement
gte_strptr_strptr (x1, x2) = (compare_strptr_strptr (x1, x2) >= 0)
implement
eq_strptr_strptr (x1, x2) = (compare_strptr_strptr (x1, x2) = 0)
implement
neq_strptr_strptr (x1, x2) = (compare_strptr_strptr (x1, x2) != 0)
(* ****** ****** *)
(*
//
// HX: implemented in [strptr.cats]
//
implement
print_strptr (x) = fprint_strptr (stdout_ref, x)
implement
prerr_strptr (x) = fprint_strptr (stderr_ref, x)
*)
(* ****** ****** *)
implement{}
strnptr_is_null (str) = (strnptr2ptr (str) = nullp)
implement{}
strnptr_isnot_null (str) = (strnptr2ptr (str) > nullp)
(* ****** ****** *)
implement{}
strptr_length (x) = let
val isnot = ptr_isnot_null (strptr2ptr(x))
in
if isnot
then g0u2i(string_length ($UN.strptr2string(x))) else g0i2i(~1)
// end of [if]
end // end of [strptr_length]
implement{}
strnptr_length (x) = let
prval () = lemma_strnptr_param (x)
val isnot = ptr_isnot_null (strnptr2ptr(x))
in
if isnot
then g1u2i(string_length ($UN.strnptr2string(x))) else g1i2i(~1)
// end of [if]
end // end of [strnptr_length]
(* ****** ****** *)
implement{}
strptr0_copy (x) = let
val isnot = ptr_isnot_null (strptr2ptr(x))
in
if isnot then string0_copy ($UN.strptr2string(x)) else strptr_null ()
end // end of [strptr0_copy]
implement{}
strptr1_copy (x) = string0_copy ($UN.strptr2string(x))
(* ****** ****** *)
implement{}
strptr_append
(x1, x2) = let
//
val isnot1 = ptr_isnot_null (strptr2ptr(x1))
//
in
//
if isnot1 then let
//
val isnot2 = ptr_isnot_null (strptr2ptr(x2))
//
in
//
if
isnot2
then
strnptr2strptr(string1_append ($UN.strptr2string(x1), $UN.strptr2string(x2)))
else
strptr1_copy (x1)
// end of [if]
//
end else
strptr0_copy (x2)
// end of [if]
//
end // end of [strptr_append]
(* ****** ****** *)
implement{}
strptrlst_free (xs) = let
//
fun loop
(xs: List_vt(Strptr0)): void = let
in
//
case+ xs of
| ~list_vt_cons
(x, xs) => (strptr_free (x); loop (xs))
| ~list_vt_nil () => ()
//
end // end of [loop]
//
in
$effmask_all (loop (xs))
end // end of [strptrlst_free]
(* ****** ****** *)
implement{}
strptrlst_concat (xs) = let
//
prval () = lemma_list_vt_param (xs)
//
fun loop
{n0:nat} .<n0>.
(
xs: &list_vt(Strptr0, n0)>>list_vt(Strptr1, n1)
) :<!wrt> #[n1:nat | n1 <= n0] void = let
in
//
case+ xs of
| @list_vt_cons
(x, xs1) => let
val isnot = strptr_isnot_null (x)
in
if isnot then let
val () = loop (xs1)
prval () = fold@ (xs)
in
// nothing
end else let
prval () =
strptr_free_null (x)
val xs1 = xs1
val () = free@ {..}{0} (xs)
val ((*void*)) = (xs := xs1)
in
loop (xs)
end // end of [if]
end // end of [list_vt_cons]
| @list_vt_nil () => fold@ (xs)
//
end // end of [loop]
//
var xs = xs
val () = loop (xs)
//
in
//
case+ xs of
| ~list_vt_nil () => strptr_null ()
| ~list_vt_cons (x, ~list_vt_nil ()) => x
| _ => let
val res =
stringlst_concat ($UN.castvwtp1{List(string)}(xs))
val () =
loop (xs) where {
fun loop {n:nat} .<n>.
(xs: list_vt (Strptr1, n)):<!wrt> void =
case+ xs of
| ~list_vt_cons (x, xs) => (strptr_free (x); loop (xs))
| ~list_vt_nil ((*void*)) => ()
// end of [loop]
} // end of [where] // end of [val]
in
res
end // end of [_]
//
end // end of [strptrlst_concat]
(* ****** ****** *)
implement
{env}(*tmp*)
strnptr_foreach$cont (c, env) = true
(* ****** ****** *)
implement
{}(*tmp*)
strnptr_foreach (str) = let
var env: void = () in strnptr_foreach_env<void> (str, env)
end // end of [strnptr_foreach]
(* ****** ****** *)
implement
{env}(*tmp*)
strnptr_foreach_env
{n} (str, env) = let
//
fun loop
(
p: ptr, env: &env >> _
) : ptr = let
//
#define NUL '\000'
//
val c = $UN.ptr0_get<Char> (p)
//
in
//
if
(c != NUL)
then let
val (pf, fpf | p) =
$UN.ptr0_vtake{charNZ}(p)
val cont =
strnptr_foreach$cont<env> (!p, env)
// end of [val]
in
if cont
then let
val () =
strnptr_foreach$fwork<env> (!p, env)
prval ((*void*)) = fpf (pf)
in
loop (ptr_succ<char> (p), env)
end // end of [then]
else let
prval ((*void*)) = fpf (pf) in (p)
end // end of [else]
end // end of [then]
else (p) // end of [else]
//
end // end of [loop]
//
val p0 = ptrcast(str)
//
in
$UN.cast{sizeLte(n)}(loop (p0, env) - p0)
end // end of [strnptr_foreach_env]
(* ****** ****** *)
implement
{env}(*tmp*)
strnptr_rforeach$cont (c, env) = true
(* ****** ****** *)
implement
{}(*tmp*)
strnptr_rforeach (str) = let
var env: void = () in strnptr_rforeach_env<void> (str, env)
end // end of [strnptr_rforeach]
(* ****** ****** *)
implement
{env}(*tmp*)
strnptr_rforeach_env
{n} (str, env) = let
//
fun loop
(
p0: ptr, p1: ptr, env: &env >> _
) : ptr = let
in
//
if
(p1 > p0)
then let
val p2 = ptr_pred<char> (p1)
val (pf, fpf | p2) =
$UN.ptr0_vtake{charNZ}(p2)
val cont =
strnptr_rforeach$cont<env> (!p2, env)
// end of [val]
in
if cont
then let
val () =
strnptr_rforeach$fwork<env> (!p2, env)
prval ((*void*)) = fpf (pf)
in
loop (p0, p2, env)
end // end of [then]
else let
prval ((*void*)) = fpf (pf) in (p1)
end // end of [else]
end // end of [then]
else (p1) // end of [else]
//
end // end of [loop]
//
val p0 = ptrcast(str)
val p1 = ptr_add<char> (p0, length(str))
//
in
$UN.cast{sizeLte(n)}(p1 - loop (p0, p1, env))
end // end of [strnptr_rforeach_env]
(* ****** ****** *)
(* end of [strptr.dats] *)
|