Skip to content

Commit 167edad

Browse files
committed
Changing some functions to be effectful
1 parent 45f310a commit 167edad

File tree

3 files changed

+222
-231
lines changed

3 files changed

+222
-231
lines changed

src/Data/ArrayBuffer/Typed.purs

+27-28
Original file line numberDiff line numberDiff line change
@@ -21,22 +21,21 @@ module Data.ArrayBuffer.Typed
2121
, toString, toString', toArray
2222
) where
2323

24-
import Prelude (Unit, (>=), (&&), (<<<), (<=), pure, (-), flip, (*), (*>))
25-
2624
import Data.Array (length) as A
2725
import Data.ArrayBuffer.Types (ArrayView, kind ArrayViewType, ArrayBuffer, ByteOffset, ByteLength, Float64Array, Float32Array, Uint8ClampedArray, Uint32Array, Uint16Array, Uint8Array, Int32Array, Int16Array, Int8Array, Float64, Float32, Uint8Clamped, Uint32, Uint16, Uint8, Int32, Int16, Int8)
2826
import Data.ArrayBuffer.ValueMapping (class BinaryValue, class BytesPerValue)
27+
import Data.Float32 (Float32) as F
2928
import Data.Function.Uncurried (Fn2, Fn3, mkFn2, runFn2, runFn3)
3029
import Data.Maybe (Maybe(..), fromMaybe)
3130
import Data.Nullable (Nullable, notNull, null, toMaybe, toNullable)
3231
import Data.Tuple (Tuple(..))
3332
import Data.Typelevel.Num (class Nat, toInt')
3433
import Data.UInt (UInt)
35-
import Data.Float32 (Float32) as F
3634
import Effect (Effect)
3735
import Effect.Uncurried (EffectFn1, EffectFn2, EffectFn3, EffectFn4, mkEffectFn2, mkEffectFn3, runEffectFn1, runEffectFn2, runEffectFn3, runEffectFn4)
3836
import Effect.Unsafe (unsafePerformEffect)
3937
import Partial.Unsafe (unsafePartial)
38+
import Prelude (Unit, (>=), (&&), (<<<), (<=), pure, (-), flip, (*), (*>))
4039
import Type.Proxy (Proxy(..))
4140

4241

@@ -60,15 +59,15 @@ length = lengthImpl
6059

6160
-- object creator implementations for each typed array
6261

63-
foreign import newUint8ClampedArray :: forall a. Fn3 a (Nullable ByteOffset) (Nullable ByteLength) Uint8ClampedArray
64-
foreign import newUint32Array :: forall a. Fn3 a (Nullable ByteOffset) (Nullable ByteLength) Uint32Array
65-
foreign import newUint16Array :: forall a. Fn3 a (Nullable ByteOffset) (Nullable ByteLength) Uint16Array
66-
foreign import newUint8Array :: forall a. Fn3 a (Nullable ByteOffset) (Nullable ByteLength) Uint8Array
67-
foreign import newInt32Array :: forall a. Fn3 a (Nullable ByteOffset) (Nullable ByteLength) Int32Array
68-
foreign import newInt16Array :: forall a. Fn3 a (Nullable ByteOffset) (Nullable ByteLength) Int16Array
69-
foreign import newInt8Array :: forall a. Fn3 a (Nullable ByteOffset) (Nullable ByteLength) Int8Array
70-
foreign import newFloat32Array :: forall a. Fn3 a (Nullable ByteOffset) (Nullable ByteLength) Float32Array
71-
foreign import newFloat64Array :: forall a. Fn3 a (Nullable ByteOffset) (Nullable ByteLength) Float64Array
62+
foreign import newUint8ClampedArray :: forall a. EffectFn3 a (Nullable ByteOffset) (Nullable ByteLength) Uint8ClampedArray
63+
foreign import newUint32Array :: forall a. EffectFn3 a (Nullable ByteOffset) (Nullable ByteLength) Uint32Array
64+
foreign import newUint16Array :: forall a. EffectFn3 a (Nullable ByteOffset) (Nullable ByteLength) Uint16Array
65+
foreign import newUint8Array :: forall a. EffectFn3 a (Nullable ByteOffset) (Nullable ByteLength) Uint8Array
66+
foreign import newInt32Array :: forall a. EffectFn3 a (Nullable ByteOffset) (Nullable ByteLength) Int32Array
67+
foreign import newInt16Array :: forall a. EffectFn3 a (Nullable ByteOffset) (Nullable ByteLength) Int16Array
68+
foreign import newInt8Array :: forall a. EffectFn3 a (Nullable ByteOffset) (Nullable ByteLength) Int8Array
69+
foreign import newFloat32Array :: forall a. EffectFn3 a (Nullable ByteOffset) (Nullable ByteLength) Float32Array
70+
foreign import newFloat64Array :: forall a. EffectFn3 a (Nullable ByteOffset) (Nullable ByteLength) Float64Array
7271

7372

7473
-- ----
@@ -135,7 +134,7 @@ type Range = Maybe (Tuple Offset (Maybe Offset))
135134
-- | - `toString` prints to a CSV, `toString'` allows you to supply the delimiter
136135
-- | - `toArray` returns an array of numeric values
137136
class BinaryValue a t <= TypedArray (a :: ArrayViewType) (t :: Type) | a -> t where
138-
create :: forall x. Fn3 x (Nullable ByteOffset) (Nullable ByteLength) (ArrayView a)
137+
create :: forall x. EffectFn3 x (Nullable ByteOffset) (Nullable ByteLength) (ArrayView a)
139138

140139
instance typedArrayUint8Clamped :: TypedArray Uint8Clamped UInt where
141140
create = newUint8ClampedArray
@@ -157,32 +156,32 @@ instance typedArrayFloat64 :: TypedArray Float64 Number where
157156
create = newFloat64Array
158157

159158
-- | View mapping the whole `ArrayBuffer`.
160-
whole :: forall a t. TypedArray a t => ArrayBuffer -> ArrayView a
161-
whole a = runFn3 create a null null
159+
whole :: forall a t. TypedArray a t => ArrayBuffer -> Effect (ArrayView a)
160+
whole a = runEffectFn3 create a null null
162161

163162
-- | View mapping the rest of an `ArrayBuffer` after an index.
164-
remainder :: forall a b t. TypedArray a t => Nat b => BytesPerValue a b => ArrayBuffer -> Offset -> ArrayView a
163+
remainder :: forall a b t. TypedArray a t => Nat b => BytesPerValue a b => ArrayBuffer -> Offset -> Effect (ArrayView a)
165164
remainder a x = remainder' a o
166165
where o = x * toInt' (Proxy :: Proxy b)
167166

168-
remainder' :: forall a t. TypedArray a t => ArrayBuffer -> ByteOffset -> ArrayView a
169-
remainder' a x = runFn3 create a (notNull x) null
167+
remainder' :: forall a t. TypedArray a t => ArrayBuffer -> ByteOffset -> Effect (ArrayView a)
168+
remainder' a x = runEffectFn3 create a (notNull x) null
170169

171170
-- | View mapping a region of the `ArrayBuffer`.
172-
part :: forall a b t. TypedArray a t => Nat b => BytesPerValue a b => ArrayBuffer -> Offset -> Length -> ArrayView a
171+
part :: forall a b t. TypedArray a t => Nat b => BytesPerValue a b => ArrayBuffer -> Offset -> Length -> Effect (ArrayView a)
173172
part a x y = part' a o y
174173
where o = x * toInt' (Proxy :: Proxy b)
175174

176-
part' :: forall a t. TypedArray a t => ArrayBuffer -> ByteOffset -> Length -> ArrayView a
177-
part' a x y = runFn3 create a (notNull x) (notNull y)
175+
part' :: forall a t. TypedArray a t => ArrayBuffer -> ByteOffset -> Length -> Effect (ArrayView a)
176+
part' a x y = runEffectFn3 create a (notNull x) (notNull y)
178177

179178
-- | Creates an empty typed array, where each value is assigned 0
180-
empty :: forall a t. TypedArray a t => Length -> ArrayView a
181-
empty n = runFn3 create n null null
179+
empty :: forall a t. TypedArray a t => Length -> Effect (ArrayView a)
180+
empty n = runEffectFn3 create n null null
182181

183182
-- | Creates a typed array from an input array of values, to be binary serialized
184-
fromArray :: forall a t. TypedArray a t => Array t -> ArrayView a
185-
fromArray a = runFn3 create a null null
183+
fromArray :: forall a t. TypedArray a t => Array t -> Effect (ArrayView a)
184+
fromArray a = runEffectFn3 create a null null
186185

187186
-- | Fill the array with a value
188187
fill :: forall a t. TypedArray a t => ArrayView a -> t -> Range -> Effect Unit
@@ -424,8 +423,8 @@ at a n = if a `hasIndex` n
424423
infixl 3 at as !
425424

426425

427-
foreign import toArrayImpl :: forall a b. ArrayView a -> Array b
426+
foreign import toArrayImpl :: forall a b. EffectFn1 (ArrayView a) (Array b)
428427

429428
-- | Turn typed array into an array.
430-
toArray :: forall a t. TypedArray a t => ArrayView a -> Array t
431-
toArray = toArrayImpl
429+
toArray :: forall a t. TypedArray a t => ArrayView a -> Effect (Array t)
430+
toArray a = runEffectFn1 toArrayImpl a

src/Data/ArrayBuffer/Typed/Gen.purs

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@
22

33
module Data.ArrayBuffer.Typed.Gen where
44

5-
import Prelude ((<$>), bind, (/), (-), negate, ($), bottom, pure, top)
6-
75
import Control.Monad.Gen.Class (class MonadGen, sized, chooseInt, chooseFloat)
86
import Data.ArrayBuffer.Typed (class TypedArray)
97
import Data.ArrayBuffer.Typed as TA
108
import Data.ArrayBuffer.Types (ArrayView)
9+
import Data.Float32 (Float32, fromNumber) as F
1110
import Data.Generic.Rep (class Generic)
1211
import Data.Maybe (Maybe(..))
1312
import Data.Typelevel.Num (class Nat, toInt')
1413
import Data.UInt (UInt)
1514
import Data.UInt (fromInt) as UInt
16-
import Data.Float32 (Float32, fromNumber) as F
1715
import Data.UInt.Gen (genUInt) as UInt
1816
import Data.Unfoldable (replicateA)
1917
import Data.Vec (Vec)
2018
import Data.Vec (fromArray) as Vec
19+
import Effect.Unsafe (unsafePerformEffect)
2120
import Partial.Unsafe (unsafePartial)
21+
import Prelude ((<$>), bind, (/), (-), negate, ($), bottom, pure, top)
2222
import Type.Proxy (Proxy(..))
2323

2424

@@ -30,7 +30,7 @@ genTypedArray :: forall m a t
3030
genTypedArray gen = sized \s -> do
3131
n <- chooseInt 0 s
3232
a <- replicateA n gen
33-
pure (TA.fromArray a)
33+
pure (unsafePerformEffect $ TA.fromArray a)
3434

3535
genUint8 :: forall m. MonadGen m => m UInt
3636
genUint8 = UInt.fromInt <$> chooseInt 0 255

0 commit comments

Comments
 (0)