2019-02-05 03:46:47 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include "../wasmer.h"
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
wasmer_memory_t *memory = NULL;
|
|
|
|
wasmer_limits_t descriptor;
|
|
|
|
descriptor.min = 10;
|
2019-02-09 23:53:03 +00:00
|
|
|
descriptor.max = 15;
|
2019-02-12 01:07:28 +00:00
|
|
|
wasmer_result_t memory_result = wasmer_memory_new(&memory, descriptor);
|
2019-02-05 03:46:47 +00:00
|
|
|
printf("Memory result: %d\n", memory_result);
|
2019-02-12 01:07:28 +00:00
|
|
|
assert(memory_result == WASMER_OK);
|
2019-02-05 03:46:47 +00:00
|
|
|
|
|
|
|
uint32_t len = wasmer_memory_length(memory);
|
|
|
|
printf("Memory pages length: %d\n", len);
|
|
|
|
assert(len == 10);
|
|
|
|
|
2019-02-12 01:07:28 +00:00
|
|
|
wasmer_result_t grow_result = wasmer_memory_grow(memory, 2);
|
|
|
|
assert(grow_result == WASMER_OK);
|
2019-02-09 23:53:03 +00:00
|
|
|
|
|
|
|
uint32_t new_len = wasmer_memory_length(memory);
|
|
|
|
printf("Memory pages length: %d\n", new_len);
|
|
|
|
assert(new_len == 12);
|
|
|
|
|
2019-02-10 20:14:42 +00:00
|
|
|
uint32_t bytes_len = wasmer_memory_data_length(memory);
|
|
|
|
printf("Memory bytes length: %d\n", bytes_len);
|
|
|
|
assert(bytes_len == 12 * 65536);
|
|
|
|
|
2019-02-09 23:53:03 +00:00
|
|
|
// Err, grow beyond max
|
2019-02-12 01:07:28 +00:00
|
|
|
wasmer_result_t grow_result2 = wasmer_memory_grow(memory, 10);
|
|
|
|
assert(grow_result2 == WASMER_ERROR);
|
2019-02-12 02:08:54 +00:00
|
|
|
int error_len = wasmer_last_error_length();
|
|
|
|
char *error_str = malloc(error_len);
|
|
|
|
wasmer_last_error_message(error_str, error_len);
|
|
|
|
printf("Error str: `%s`\n", error_str);
|
|
|
|
assert(0 == strcmp(error_str, "unable to grow memory"));
|
|
|
|
free(error_str);
|
2019-02-10 23:57:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
// wasmer_memory_t *bad_memory = NULL;
|
|
|
|
// wasmer_limits_t bad_descriptor;
|
|
|
|
// bad_descriptor.min = 15;
|
|
|
|
// bad_descriptor.max = 10;
|
2019-02-12 01:07:28 +00:00
|
|
|
// wasmer_result_t bad_memory_result = wasmer_memory_new(&bad_memory, bad_descriptor);
|
2019-02-10 23:57:23 +00:00
|
|
|
// printf("Bad memory result: %d\n", bad_memory_result);
|
|
|
|
// assert(memory_result == WASMER_MEMORY_ERROR);
|
|
|
|
//
|
|
|
|
// int error_len = wasmer_last_error_length();
|
|
|
|
// char *error_str = malloc(error_len);
|
|
|
|
// wasmer_last_error_message(error_str, error_len);
|
|
|
|
// assert(0 == strcmp(error_str, "Creation error"));
|
|
|
|
// free(error_str);
|
2019-02-09 23:53:03 +00:00
|
|
|
|
2019-02-05 03:46:47 +00:00
|
|
|
printf("Destroy memory\n");
|
|
|
|
wasmer_memory_destroy(memory);
|
|
|
|
return 0;
|
|
|
|
}
|