From ddb636c4c00499e0b1c5f320c4f58da4de9cd447 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Sun, 31 May 2015 08:09:05 -0700 Subject: [PATCH] io.binary.fast: easier to read using stdint types. --- extra/io/binary/fast/fast.factor | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/extra/io/binary/fast/fast.factor b/extra/io/binary/fast/fast.factor index ce0b483745..60ca17c7e4 100644 --- a/extra/io/binary/fast/fast.factor +++ b/extra/io/binary/fast/fast.factor @@ -1,9 +1,8 @@ ! Copyright (C) 2011 Doug Coleman. ! See http://factorcode.org/license.txt for BSD license. -USING: alien.data byte-arrays combinators combinators.smart -endian fry hints kernel locals macros math math.ranges -sequences sequences.generalizations ; -QUALIFIED-WITH: alien.c-types c +USING: alien.c-types alien.data byte-arrays combinators +combinators.smart endian fry hints kernel locals macros math +math.ranges sequences sequences.generalizations ; RENAME: be> io.binary => slow-be> RENAME: le> io.binary => slow-le> RENAME: >be io.binary => >slow-be @@ -49,13 +48,13 @@ HINTS: n-le> { byte-array object } ; PRIVATE> : 2be> ( bytes -- x ) - big-endian [ c:ushort deref ] [ 2 n-be> ] if-endian ; + big-endian [ uint16_t deref ] [ 2 n-be> ] if-endian ; : 4be> ( bytes -- x ) - big-endian [ c:uint deref ] [ 4 n-be> ] if-endian ; + big-endian [ uint32_t deref ] [ 4 n-be> ] if-endian ; : 8be> ( bytes -- x ) - big-endian [ c:ulonglong deref ] [ 8 n-be> ] if-endian ; + big-endian [ uint64_t deref ] [ 8 n-be> ] if-endian ; : be> ( bytes -- x ) dup length { @@ -66,13 +65,13 @@ PRIVATE> } case ; : 2le> ( bytes -- x ) - little-endian [ c:ushort deref ] [ 2 n-le> ] if-endian ; + little-endian [ uint16_t deref ] [ 2 n-le> ] if-endian ; : 4le> ( bytes -- x ) - little-endian [ c:uint deref ] [ 4 n-le> ] if-endian ; + little-endian [ uint32_t deref ] [ 4 n-le> ] if-endian ; : 8le> ( bytes -- x ) - little-endian [ c:ulonglong deref ] [ 8 n-le> ] if-endian ; + little-endian [ uint64_t deref ] [ 8 n-le> ] if-endian ; : le> ( bytes -- x ) dup length { @@ -85,9 +84,9 @@ PRIVATE> : >le ( x n -- bytes ) compute-native-endianness little-endian = [ { - { 2 [ c:short ] } - { 4 [ c:int ] } - { 8 [ c:longlong ] } + { 2 [ int16_t ] } + { 4 [ int32_t ] } + { 8 [ int64_t ] } [ >slow-le ] } case ] [ >slow-le ] if ; @@ -95,9 +94,9 @@ PRIVATE> : >be ( x n -- bytes ) compute-native-endianness big-endian = [ { - { 2 [ c:short ] } - { 4 [ c:int ] } - { 8 [ c:longlong ] } + { 2 [ int16_t ] } + { 4 [ int32_t ] } + { 8 [ int64_t ] } [ >slow-be ] } case ] [ >slow-be ] if ;