ExternalBytes.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 10 Jun 2015 08:43:00 +0100
branchjv
changeset 18482 68a43e2b3e78
parent 18120 e3a375d5f6a8
child 18608 7d521f25267c
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
17627
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
     1
"{ Encoding: utf8 }"
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
     2
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
     3
"
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
     4
 COPYRIGHT (c) 1993 by Claus Gittinger
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
     5
	      All Rights Reserved
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
     7
 This software is furnished under a license and may be used
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
     8
 only in accordance with the terms of that license and with the
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    10
 be provided or otherwise made available to, or used by, any
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    11
 other person.  No title to or ownership of the software is
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    12
 hereby transferred.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    13
"
5378
bc9f9e427fa7 oops - must synchronize accesses to AllocatedInstances
ps
parents: 5281
diff changeset
    14
"{ Package: 'stx:libbasic' }"
bc9f9e427fa7 oops - must synchronize accesses to AllocatedInstances
ps
parents: 5281
diff changeset
    15
17627
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
    16
"{ NameSpace: Smalltalk }"
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
    17
3208
2d71538b9fd5 now subclass of UIBytes - which contains common protocol
Claus Gittinger <cg@exept.de>
parents: 3206
diff changeset
    18
UninterpretedBytes subclass:#ExternalBytes
3211
ef7a5411afa1 remove methods which are provided by my (new) superClass
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
    19
	instanceVariableNames:'address* size'
10137
7bfdc51fcb65 Avoid deadlock when free is called by finalization code (Stefan Vogel)
Michael Beyl <mb@exept.de>
parents: 9895
diff changeset
    20
	classVariableNames:'AllocatedInstances Lobby DebugMalloc TraceMalloc'
3211
ef7a5411afa1 remove methods which are provided by my (new) superClass
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
    21
	poolDictionaries:''
ef7a5411afa1 remove methods which are provided by my (new) superClass
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
    22
	category:'System-Support'
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
14749
64fd0e91d2d7 class: ExternalBytes
Stefan Vogel <sv@exept.de>
parents: 14632
diff changeset
    25
!ExternalBytes primitiveDefinitions!
64fd0e91d2d7 class: ExternalBytes
Stefan Vogel <sv@exept.de>
parents: 14632
diff changeset
    26
%{
64fd0e91d2d7 class: ExternalBytes
Stefan Vogel <sv@exept.de>
parents: 14632
diff changeset
    27
#include <stdlib.h>
64fd0e91d2d7 class: ExternalBytes
Stefan Vogel <sv@exept.de>
parents: 14632
diff changeset
    28
#include <stdio.h>
64fd0e91d2d7 class: ExternalBytes
Stefan Vogel <sv@exept.de>
parents: 14632
diff changeset
    29
%}
64fd0e91d2d7 class: ExternalBytes
Stefan Vogel <sv@exept.de>
parents: 14632
diff changeset
    30
! !
64fd0e91d2d7 class: ExternalBytes
Stefan Vogel <sv@exept.de>
parents: 14632
diff changeset
    31
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
!ExternalBytes primitiveFunctions!
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
%{
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
struct mallocList {
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    36
	char *chunk;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    37
	unsigned size;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    38
	struct mallocList *next;
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
};
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
static struct mallocList *mallocList = (struct mallocList *)0;
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
    41
static INT mallocCount = 0;
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
6242
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
    43
static void
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
    44
removeFromMallocList(ptr)
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
    45
    char *ptr;
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
    46
{
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
    47
    struct mallocList *this, *prev, *next;
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
    48
    int found = 0;
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
    49
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
    50
    if (@global(DebugMalloc) != true) return;
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
    51
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
    52
    if (ptr) {
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    53
	found = 0;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    54
	for (this=mallocList, prev=0; this; this=next) {
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    55
	    next = this->next;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    56
	    if (this->chunk == ptr) {
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    57
		if (prev) {
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    58
		    prev->next = next;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    59
		} else {
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    60
		    mallocList = next;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    61
		}
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    62
		free(this);
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    63
		found++;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    64
		mallocCount--;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    65
	    } else {
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    66
		prev = this;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    67
	    }
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    68
	}
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    69
	if (! found) {
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
    70
	    console_printf("ExternalBytes [warning]: **** free: alien %"_lx_" (allocated somewhere else ?))\n", (INT)ptr);
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    71
	}
6242
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
    72
    }
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
    73
}
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
    74
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
    75
static void
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
    76
addToMallocList(ptr, nBytes)
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
    77
    char *ptr;
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
    78
{
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
    79
    struct mallocList *e, *this;
9895
93328f425669 Fix declaration of malloc()
Stefan Vogel <sv@exept.de>
parents: 9389
diff changeset
    80
    void *malloc();
6242
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
    81
    int found;
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
    82
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
    83
    if (@global(DebugMalloc) != true) return;
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
    84
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
    85
    if (ptr) {
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    86
	found = 0;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    87
	for (this=mallocList; this; this=this->next) {
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    88
	    if (this->chunk == ptr) {
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
    89
		console_printf("ExternalBytes [warning]: **** %016"_lx_" already allocated (freed somewhere else ?)\n", (INT)ptr);
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    90
		found++;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    91
	    }
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    92
	}
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    93
	if (! found) {
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    94
	    e = (struct mallocList *) malloc(sizeof(struct mallocList));
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    95
	    e->next = mallocList;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    96
	    e->chunk = ptr;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    97
	    e->size = nBytes;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    98
	    mallocList = e;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
    99
	    mallocCount++;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   100
	}
6242
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   101
    }
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   102
}
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   103
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   104
char *
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
__stx_malloc(nBytes) {
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   106
	char *ptr;
9895
93328f425669 Fix declaration of malloc()
Stefan Vogel <sv@exept.de>
parents: 9389
diff changeset
   107
	void *malloc();
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   109
	ptr = malloc(nBytes);
6242
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   110
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   111
	if (@global(TraceMalloc) == true) {
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   112
	    console_printf("ExternalBytes [info]: allocated %d bytes at: %016"_lx_"\n", nBytes, (INT)ptr);
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   113
	}
6242
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   114
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   115
	addToMallocList(ptr, nBytes);
6242
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   116
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   117
	return ptr;
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   118
}
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   119
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   120
char *
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   121
__stx_calloc(n, size) {
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   122
	char *ptr;
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   124
	ptr = __stx_malloc(n * size);
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   125
	if (ptr != (char *)0) {
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   126
	    bzero(ptr, (n * size));
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   127
	}
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   128
	return ptr;
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
}
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   130
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   131
char *
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   132
__stx_realloc(ptr, nBytes)
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   133
    char *ptr;
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   134
{
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   135
	char *newPtr;
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   136
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   137
	removeFromMallocList(ptr);
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   138
	newPtr = realloc(ptr, nBytes);
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   139
	addToMallocList(newPtr, nBytes);
6457
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
   140
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   141
	if (@global(TraceMalloc) == true) {
15003
Claus Gittinger <cg@exept.de>
parents: 14750
diff changeset
   142
	    console_printf("ExternalBytes [info]: realloc %d bytes for %"_lx_" at: %"_lx_"\n", nBytes, (INT)ptr, (INT)newPtr);
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   143
	}
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   144
	return newPtr;
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   145
}
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   146
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   147
__stx_free(ptr)
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   148
    char *ptr;
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   149
{
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   150
	if (@global(TraceMalloc) == true) {
15003
Claus Gittinger <cg@exept.de>
parents: 14750
diff changeset
   151
	    console_printf("ExternalBytes: free bytes at: %"_lx_"\n", (INT)ptr);
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   152
	}
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   153
	removeFromMallocList(ptr);
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   154
11076
b35229a4126f you shalt not return void values.
Stefan Vogel <sv@exept.de>
parents: 10925
diff changeset
   155
	free(ptr);
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   156
}
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   157
3320
09eb32bbceaf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3211
diff changeset
   158
__stx_mallocStatistics() {
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   159
	struct mallocList *this;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   160
	int amount = 0;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   161
	int n = 0;
3320
09eb32bbceaf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3211
diff changeset
   162
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   163
	for (this=mallocList; this; this=this->next) {
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   164
	    n++;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   165
	    amount += this->size;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   166
	}
13704
Claus Gittinger <cg@exept.de>
parents: 13196
diff changeset
   167
	console_printf("ExternalBytes [info]: allocated %d blocks with %d bytes overall\n", n, amount);
3320
09eb32bbceaf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3211
diff changeset
   168
}
09eb32bbceaf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3211
diff changeset
   169
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   170
%}
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   171
! !
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   172
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   173
!ExternalBytes class methodsFor:'documentation'!
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   174
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   175
copyright
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   176
"
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   177
 COPYRIGHT (c) 1993 by Claus Gittinger
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   178
	      All Rights Reserved
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   179
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   180
 This software is furnished under a license and may be used
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   181
 only in accordance with the terms of that license and with the
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   182
 inclusion of the above copyright notice.   This software may not
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   183
 be provided or otherwise made available to, or used by, any
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   184
 other person.  No title to or ownership of the software is
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   185
 hereby transferred.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   186
"
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   187
!
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   188
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   189
documentation
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   190
"
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   191
    This class provides access to any memory in the system. Its main purpose
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   192
    is to provide a baseclass for objects referencing structured external data.
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   193
    Normally, instances are created by primitive code which wants to pass C-data
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   194
    to Smalltalk AND grants smalltalk access to individual bytes afterwards.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   195
    Primitives which do not want to grant this access should return instances of
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   196
    ExternalAddress. See more info there. Also, have a look at ExternalFunction
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   197
    which is another similar class, but specialized to represent callable C-functions.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   198
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   199
    Since the memory address of an instance stays fixed (once allocated),
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   200
    it can also be used to share data with external C-parts
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   201
    (which are not prepared for objects to change their address).
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   202
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   203
    Use with great care - access is not always checked for out-of-bounds
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   204
    or valid addresses.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   205
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   206
    Since the data is allocated outside the garbage collected smalltalk space,
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   207
    its address stays fix. Thus, it can be passed to external C-functions without
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   208
    any danger. However, you have to take care for freeing the memory yourself.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   209
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   210
    To help in avoiding memory bugs, instances created with #new: are
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   211
    registered in a local classvar and deregistered when the underlying memory
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   212
    is explicitely freed. Since a life reference (from that classvar) exists,
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   213
    the garbage collector will never find these to be reclaimable, and the
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   214
    underlying memory stays allocated (at a fix address) forever.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   215
    To release the memory, either #free it or #unprotect it.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   216
    The first will immediately release the memory, while the second will delay
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   217
    freeing until the next garbage collect occurs.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   218
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   219
    If you need memory which is automatically freed, create
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   220
    the instance via #unprotectedNew: right away; the underlying malloced-memory
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   221
    will be released as soon as no smalltalk reference to the ExtBytes object
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   222
    exists any more (however, you have to know for sure, that no C-references
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   223
    exist to this memory).
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   224
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   225
    To release all memory call #releaseAllMemory which simply sets the
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   226
    AllocatedInstances class variable to nil (thus releasing those refs).
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   227
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   228
    Example (automatic freeing as soon as ref to buffer is gone):
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   229
	|buffer|
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   230
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   231
	buffer := ExternalBytes unprotectedNew:100.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   232
	...
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   233
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   234
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   235
    Example (manual freeing - never freed, if ref to buffer is gone):
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   236
	|buffer|
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   237
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   238
	buffer := ExternalBytes new:100.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   239
	...
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   240
	buffer free
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   241
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   242
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   243
    Example (delayed automatic freeing as soon as ref to buffer is gone):
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   244
	|buffer|
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   245
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   246
	buffer := ExternalBytes new:100.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   247
	...
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   248
	buffer unregister
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   249
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   250
    This class only supports unstructured external data
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   251
    - see the companion class ExternalStructure for more.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   252
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   253
    Notice: support for external data is still being developed -
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   254
	    a parser for C structure syntax and typedefs is on the way,
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   255
	    making shared data with C programs much easier in the future.
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   256
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   257
    Also notice, that this class may not be available or behave different
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   258
    in other smalltalk systems, making code using it very unportable.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   259
    It is provided for C interfacing only.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   260
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   261
    Finally note, that ST/X's memory system is much faster than malloc/free
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   262
    in the normal case - especially for short term temporary objects,
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   263
    automatically reclaimed object memory is about 5-10 times faster than
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   264
    malloc/free.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   265
    Things may be different for huge byte-valued objects, which are to be
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   266
    reclaimed by the oldspace colletor.
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   267
    Anyway, for portability, we strongly warn from using this as a substitute
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   268
    for byteArrays; it is meant for shared data with external C-functions ONLY.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   269
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   270
    Debugging:
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   271
	since all manual memory systems are subject of obscure errors,
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   272
	you may want to turn malloc-tracing on; this traces all allocations/frees
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   273
	done here. To do this, evaluate: 'ExternalBytes mallocTrace:true'.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   274
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   275
	In addition, you may turn on full debugging (with 'ExternalBytes mallocDebug:true');
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   276
	if turned on, all malloc/realloc requests are remembered and later free / realloc
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   277
	requests validated against this list (i.e. to detect freeing unallocated chunks).
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   278
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   279
	To benefit from this in C-code, we recommend you use __stx_malloc() / __stx_free()
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   280
	instead of malloc() / free(). To do so, redefine them in a header file (or cc comand line)
6242
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   281
	and recompile your external c-libraries with this.
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   282
6242
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   283
	I used this here to find memory leaks in the Xt libraries (there are still some in
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   284
	the HTML widget ...). If mallocDebug is on, #dumpMallocChunks will print out what is
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   285
	leftOver. This may help to find trouble spots in your C-code.
1286
4270a0b4917d documentation
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   286
4270a0b4917d documentation
Claus Gittinger <cg@exept.de>
parents: 1267
diff changeset
   287
    [author:]
6242
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   288
	Claus Gittinger
1317
cc737e0fdf48 examples
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
   289
cc737e0fdf48 examples
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
   290
    [see also:]
6242
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   291
	ExternalAddress ExternalFunction
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   292
	ByteArray
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   293
	( how to write primitive code :html: programming/primitive.html )
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   294
"
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   295
!
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   296
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   297
examples
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   298
"
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   299
    These examples below are not directly executable;
7191
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   300
    some require primitive code to be compiled, or are simply given as sceletton.
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   301
    Notice, that in C, indexing is 0-based, while in Smalltalk, indices start
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   302
    at 1.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   303
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   304
    allocating memory in ST, passing it to C:
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   305
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   306
      in smalltalk:
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   307
	...
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   308
	bytes := ExternalBytes new:100.
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   309
	...
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   310
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   311
      in C (assuming that the bytes-object has been passed):
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   312
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   313
	...
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   314
	char *bytePtr;
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   315
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   316
	bytePtr = (char *)(__externalBytesAddress(bytes));
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   317
	if (bytePtr) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   318
	    ... do something with bytes at bytePtr ...
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   319
	}
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   320
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   321
      freeing (in ST):
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   322
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   323
	...
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   324
	bytes free.
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   325
	...
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   326
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   327
    allocating memory in C, passing it to ST:
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   328
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   329
      in C:
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   330
	...
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   331
	char *bytePtr;
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   332
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   333
	bytePtr = (char *)(malloc(100));
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   334
	...
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   335
	RETURN (__MKEXTERNALBYTES(bytePtr));
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   336
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   337
      in Smalltalk (extracting bytes, integers or strings):
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   338
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   339
	byteVal := bytes byteAt:1.
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   340
	...
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   341
	intVal := bytes doubleWordAt:1 MSB:true.
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   342
	...
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   343
	string := bytes stringAt:20.
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   344
	...
7191
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   345
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   346
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   347
    |data bytes2|
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   348
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   349
    data := #[0 1 2 3 4 5 6 7 8 9 9 8 7 6 5 4 3 2 1 0] copy.
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   350
    bytes2 := ExternalBytes new:30.
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   351
    bytes2 replaceBytesFrom:1 to:20 with:data startingAt:1.
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   352
    data replaceBytesFrom:2 to:20 with:bytes2 startingAt:1.
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   353
    bytes2
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   354
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   355
    |data bytes1 bytes2|
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   356
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   357
    data := #[0 1 2 3 4 5 6 7 8 9 9 8 7 6 5 4 3 2 1 0].
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   358
    bytes1 := ExternalBytes new:30.
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   359
    bytes2 := ExternalBytes new:30.
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   360
    bytes1 replaceBytesFrom:1 to:20 with:data startingAt:1.
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   361
    bytes2 atAllPut:99.
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   362
    bytes2 replaceBytesFrom:2 to:21 with:bytes1 startingAt:1.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   363
    bytes2 asByteArray
7191
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   364
7192
3a388e746946 tuned the replaceBytes to/from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7191
diff changeset
   365
    |data1 bytes1 data2|
3a388e746946 tuned the replaceBytes to/from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7191
diff changeset
   366
3a388e746946 tuned the replaceBytes to/from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7191
diff changeset
   367
    data1 := #[0 1 2 3 4 5 6 7 8 9 9 8 7 6 5 4 3 2 1 0].
3a388e746946 tuned the replaceBytes to/from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7191
diff changeset
   368
    bytes1 := ExternalBytes new:30.
3a388e746946 tuned the replaceBytes to/from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7191
diff changeset
   369
    bytes1 replaceBytesFrom:1 to:20 with:data1 startingAt:1.
3a388e746946 tuned the replaceBytes to/from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7191
diff changeset
   370
3a388e746946 tuned the replaceBytes to/from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7191
diff changeset
   371
    data2 := ByteArray new:30 withAll:99.
3a388e746946 tuned the replaceBytes to/from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7191
diff changeset
   372
    data2 replaceBytesFrom:2 to:21 with:bytes1 startingAt:1.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   373
    data2
7192
3a388e746946 tuned the replaceBytes to/from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7191
diff changeset
   374
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   375
"
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   376
! !
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   377
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   378
!ExternalBytes class methodsFor:'initialization'!
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   379
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   380
initialize
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   381
    Lobby isNil ifTrue:[
11854
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
   382
	Lobby := Registry new.
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   383
    ]
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   384
! !
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   385
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   386
!ExternalBytes class methodsFor:'instance creation'!
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   387
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   388
address:aNumber
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   389
    "return a new ExternalBytes object to access bytes starting at aNumber.
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   390
     The memory at aNumber has been allocated elsewhere. The size is not known,
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   391
     therefore byte accesses will NOT be checked for valid index.
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   392
     Use this, if you get a pointer from some external source (such as a
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   393
     C-callBack function) and you have to extract bytes from that.
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   394
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   395
     DANGER ALERT: this method allows very bad things to be done to the
6242
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   396
		   system - use with GREAT care (better: do not use it)"
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   397
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   398
    ^ self basicNew setAddress:aNumber size:nil
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   399
!
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   400
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   401
address:aNumber size:size
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   402
    "return a new ExternalBytes object to access bytes starting at aNumber.
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   403
     The memory at aNumber has been allocated elsewhere. The size is known,
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   404
     which allows byte accesses to be checked for valid index.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   405
     Use this, if you get a pointer to a structure from some external source
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   406
     (such as a C-callBack function) and you have to extract things from that.
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   407
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   408
     DANGER ALERT: this method allows very bad things to be done to the
6242
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   409
		   system - use with GREAT care (better: do not use it)"
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   410
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   411
    ^ self basicNew setAddress:aNumber size:size
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   412
!
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   413
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   414
new:numberOfBytes
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   415
    "allocate some memory usable for data;
15398
4c73c49852d6 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15262
diff changeset
   416
     the memory safe from being finalized by the garbage collector.
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   417
     Return a corresponding ExternalBytes object or raise MallocFailure (if malloc fails).
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   418
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   419
     Use this, if you have to pass a block of bytes to some
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   420
     external destination (such as a C function) which does not copy the
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   421
     data, but instead keeps a reference to it. For example, many functions
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   422
     which expect strings simply keep a ref to the passed string - for those,
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   423
     an ST/X string-pointer is not the right thing to pass, since ST/X objects
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   424
     may change their address.
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   425
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   426
     DANGER ALERT: the memory is NOT automatically freed until it is either
15398
4c73c49852d6 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15262
diff changeset
   427
                   MANUALLY freed (see #free) or the returned externalBytes object
4c73c49852d6 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15262
diff changeset
   428
                   is unprotected or the classes releaseAllMemory method is called."
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   429
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   430
    |newInst|
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   431
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   432
    newInst := self unprotectedNew:numberOfBytes.
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   433
    newInst protectFromGC.
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   434
    ^ newInst
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   435
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   436
    "
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   437
     |bytes|
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   438
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   439
     bytes := ExternalBytes new:100.
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   440
     bytes wordAt:1 put:1.
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   441
     bytes doubleWordAt:3 put:16r12345678.
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   442
     bytes inspect
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   443
    "
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   444
!
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   445
10925
61c04a27097e add #newNullTerminatedFromString:
fm
parents: 10178
diff changeset
   446
newNullTerminatedFromString:aString
11854
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
   447
    ^ ((self new:aString size+1)
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
   448
	replaceBytesFrom:1 to:aString size with:aString startingAt:1)
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
   449
	at:aString size+1 put:0;
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
   450
	yourself
10925
61c04a27097e add #newNullTerminatedFromString:
fm
parents: 10178
diff changeset
   451
!
61c04a27097e add #newNullTerminatedFromString:
fm
parents: 10178
diff changeset
   452
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   453
unprotectedNew:numberOfBytes
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   454
    "allocate some memory usable for data;
15398
4c73c49852d6 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15262
diff changeset
   455
     the memory is under the control of the garbage collector (i.e. the instance will
4c73c49852d6 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15262
diff changeset
   456
     be finalized and the malloc'd memory will be freed, if the instance goes away).
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   457
     Return a corresponding ExternalBytes object or raise MallocFailure (if malloc fails).
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   458
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   459
     DANGER ALERT: the memory block as allocated will be automatically freed
15398
4c73c49852d6 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15262
diff changeset
   460
                   as soon as the reference to the returned externalBytes object
4c73c49852d6 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15262
diff changeset
   461
                   is gone (by the next garbage collect).
4c73c49852d6 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15262
diff changeset
   462
                   If the memory has been passed to a C-function which
4c73c49852d6 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15262
diff changeset
   463
                   remembers this pointer, bad things may happen ...."
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   464
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   465
    |newInst|
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   466
6444
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
   467
    newInst := self basicNew allocateBytes:numberOfBytes.
9388
84f25350bb00 *** empty log message ***
ca
parents: 9345
diff changeset
   468
    newInst registerForFinalization.
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   469
    ^ newInst
6444
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
   470
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
   471
    "
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
   472
     |bytes|
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
   473
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
   474
     bytes := ExternalBytes unprotectedNew:100.
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
   475
     bytes wordAt:1 put:1.
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
   476
     bytes doubleWordAt:3 put:16r12345678.
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
   477
     bytes inspect
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
   478
    "
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   479
! !
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   480
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   481
!ExternalBytes class methodsFor:'instance release'!
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   482
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   483
releaseAllMemory
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   484
    AllocatedInstances := nil
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   485
    "
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   486
     ... the next GC will get 'em
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   487
    "
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   488
! !
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   489
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   490
!ExternalBytes class methodsFor:'malloc debug'!
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   491
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   492
dumpMallocChunks
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   493
%{  /* NOCONTEXT */
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   494
    struct mallocList *entry;
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   495
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   496
    for (entry = mallocList; entry; entry=entry->next) {
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   497
	console_printf("  %"_lx_" (%d)\n", (INT)(entry->chunk), entry->size);
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   498
    }
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   499
%}
3321
4abefa756c45 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   500
    "
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   501
     self dumpMallocChunks
3321
4abefa756c45 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   502
    "
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   503
!
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   504
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   505
freeAllMallocChunks
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   506
    "free all stx_malloc'd memory. Be careful, this does no validation at all;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   507
     It simply walks through all chunks and frees them unconditionally.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   508
     This may be helpful during debugging memory-leaks, to release memory which
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   509
     was not correctly freed by C-code. Howeve, only memory which was allocated
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   510
     by __stx_malloc() is freed here - so you better compile your primitive code with
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   511
     malloc redefined to stx_malloc.
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   512
     Also, mallocDebug has to be on to do this."
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   513
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   514
    "first free my own memory ..."
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   515
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   516
    self releaseAllMemory.
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   517
    ObjectMemory garbageCollect.
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   518
%{
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   519
    struct mallocList *entry;
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   520
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   521
    while ((entry = mallocList) != (struct mallocList *)0) {
13704
Claus Gittinger <cg@exept.de>
parents: 13196
diff changeset
   522
	if (@global(TraceMalloc) == true ) {
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   523
	    console_printf("ExternalBytes [info]: **** forced free of %"_lx_" (%d)\n", (INT)entry->chunk, entry->size);
13704
Claus Gittinger <cg@exept.de>
parents: 13196
diff changeset
   524
	}
Claus Gittinger <cg@exept.de>
parents: 13196
diff changeset
   525
	__stx_free(entry->chunk);
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   526
    }
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   527
%}
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   528
!
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   529
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   530
mallocDebug:aBoolean
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   531
    DebugMalloc := aBoolean
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   532
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   533
    "
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   534
     ExternalBytes mallocDebug:true
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   535
     ExternalBytes mallocDebug:false
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   536
    "
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   537
!
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   538
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   539
mallocStatistics
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   540
%{
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   541
    __stx_mallocStatistics();
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   542
%}
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   543
    "
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   544
     self mallocStatistics
3486
bbd47c3011e5 comment
Claus Gittinger <cg@exept.de>
parents: 3321
diff changeset
   545
    "
bbd47c3011e5 comment
Claus Gittinger <cg@exept.de>
parents: 3321
diff changeset
   546
!
bbd47c3011e5 comment
Claus Gittinger <cg@exept.de>
parents: 3321
diff changeset
   547
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   548
mallocTrace:aBoolean
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   549
    TraceMalloc := aBoolean
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   550
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   551
    "
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   552
     ExternalBytes mallocTrace:true
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   553
     ExternalBytes mallocTrace:false
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   554
    "
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   555
!
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   556
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   557
numberOfAllocatedChunks
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   558
%{  /* NOCONTEXT */
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
   559
    RETURN ( __mkSmallInteger(mallocCount) );
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   560
%}
3321
4abefa756c45 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   561
    "
4abefa756c45 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   562
     self numberOfAllocatedChunks
4abefa756c45 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   563
    "
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   564
! !
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   565
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   566
!ExternalBytes class methodsFor:'queries'!
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   567
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   568
isBuiltInClass
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   569
    "return true if this class is known by the run-time-system.
1267
e285a3a94d9e commentary
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   570
     Here, true is returned."
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   571
3553
0c9663682120 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3486
diff changeset
   572
    ^ self == ExternalBytes
1267
e285a3a94d9e commentary
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   573
3553
0c9663682120 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3486
diff changeset
   574
    "Modified: / 11.6.1998 / 17:12:51 / cg"
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   575
!
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   576
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   577
sizeofDouble
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   578
    "return the number of bytes used by the machines native doubles"
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   579
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   580
%{  /* NOCONTEXT */
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
   581
    RETURN (__mkSmallInteger( sizeof(double)));
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   582
%}
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   583
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   584
     ExternalBytes sizeofDouble
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   585
    "
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   586
!
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   587
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   588
sizeofFloat
17627
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   589
    "return the number of bytes used by the machine's native floats"
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   590
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   591
%{  /* NOCONTEXT */
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
   592
    RETURN (__mkSmallInteger( sizeof(float)));
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   593
%}
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   594
    "
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   595
     ExternalBytes sizeofFloat
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   596
    "
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   597
!
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   598
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   599
sizeofInt
17627
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   600
    "return the number of bytes used by the machine's native integer"
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   601
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   602
%{  /* NOCONTEXT */
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
   603
    RETURN (__mkSmallInteger( sizeof(int)));
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   604
%}
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   605
    "
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   606
     ExternalBytes sizeofInt
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   607
    "
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   608
!
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   609
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   610
sizeofLong
17627
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   611
    "return the number of bytes used by the machine's native longs"
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   612
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   613
%{  /* NOCONTEXT */
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
   614
    RETURN (__mkSmallInteger( sizeof(long)));
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   615
%}
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   616
    "
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   617
     ExternalBytes sizeofLong
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   618
    "
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   619
!
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   620
17627
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   621
sizeofLongDouble
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   622
    "return the number of bytes used by the machine's native longdouble.
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   623
     If the machine does not support them, return nil."
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   624
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   625
%{  /* NOCONTEXT */
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   626
#if defined(__GNUC__) || defined(WIN32)
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   627
    RETURN (__mkSmallInteger( sizeof(long double)));
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   628
#endif
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   629
%}.
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   630
    ^ nil
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   631
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   632
    "
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   633
     ExternalBytes sizeofLongDouble 
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   634
    "
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   635
!
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   636
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   637
sizeofLongLong
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   638
    "return the number of bytes used by the machine's native longlongs.
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   639
     If the machine does not support them, return nil."
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   640
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   641
%{  /* NOCONTEXT */
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   642
#ifdef HAS_LONGLONG
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   643
    RETURN (__mkSmallInteger( sizeof(long long)));
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   644
#endif
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   645
%}.
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   646
    ^ nil
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   647
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   648
    "
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   649
     ExternalBytes sizeofLongLong
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   650
    "
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   651
!
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   652
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   653
sizeofPointer
17627
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   654
    "return the number of bytes used by the machine's native pointer"
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   655
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   656
%{  /* NOCONTEXT */
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
   657
    RETURN (__mkSmallInteger( sizeof(char *)));
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   658
%}
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   659
    "
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   660
     ExternalBytes sizeofPointer
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   661
    "
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   662
!
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   663
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   664
sizeofShort
17627
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
   665
    "return the number of bytes used by the machine's native short"
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   666
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   667
%{  /* NOCONTEXT */
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
   668
    RETURN (__mkSmallInteger( sizeof(short)));
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   669
%}
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   670
    "
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   671
     ExternalBytes sizeofShort
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   672
    "
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   673
! !
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   674
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   675
!ExternalBytes methodsFor:'accessing'!
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   676
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   677
address
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   678
    "return the start address as an integer"
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   679
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   680
%{  /* NOCONTEXT */
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   681
11629
2816596e0b2e changed #address
Claus Gittinger <cg@exept.de>
parents: 11628
diff changeset
   682
    if (__INST(address_) != nil) {
11854
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
   683
	unsigned INT addr;
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   684
11854
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
   685
	addr = (unsigned INT)__INST(address_);
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
   686
	RETURN ( __MKUINT(addr));
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   687
    }
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   688
%}.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   689
    ^ nil
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   690
!
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   691
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   692
basicAt:index
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   693
    "return the byte at index, anInteger;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   694
     Indices are 1-based, therefore
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   695
     this is the byte at (address + index - 1)"
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   696
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   697
%{  /* NOCONTEXT */
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   698
1822
e7b977512062 type casts
Claus Gittinger <cg@exept.de>
parents: 1317
diff changeset
   699
    unsigned char *cp = (unsigned char *)(__INST(address_));
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   700
    int idx;
1997
4c5a80c2d570 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1822
diff changeset
   701
    OBJ sz;
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   702
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   703
    if (cp && __isSmallInteger(index)) {
6242
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   704
	idx = __intVal(index);
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   705
	if (idx > 0) {
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   706
	    if (((sz = __INST(size)) == nil)
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   707
	     || (__intVal(sz) >= idx)) {
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   708
		cp = cp + idx - 1;
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
   709
		RETURN ( __mkSmallInteger((*cp)) );
6242
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   710
	    }
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   711
	}
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   712
    }
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   713
%}.
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   714
    (size notNil and:[self address notNil]) ifTrue:[
6242
3d1358719ab4 refactored debug malloc
Claus Gittinger <cg@exept.de>
parents: 5600
diff changeset
   715
	^ self subscriptBoundsError:index
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   716
    ].
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   717
    "
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   718
     invalid index or unallocated
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   719
    "
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   720
    self primitiveFailed
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   721
!
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   722
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   723
basicAt:index put:value
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   724
    "set the byte at index, anInteger to value which must be 0..255.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   725
     Returns value (sigh).
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   726
     Indices are 1-based, therefore
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   727
     this is the byte at (address + index - 1)"
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   728
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   729
%{  /* NOCONTEXT */
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   730
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   731
    unsigned char *cp = (unsigned char *)(__INST(address_));
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   732
    int val;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   733
    int idx;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   734
    OBJ sz;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   735
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   736
    if (__isSmallInteger(value)) {
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   737
	val = __smallIntegerVal(value);
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   738
    } else if (__isCharacter(value)) {
15262
5047292c9107 all stx macros begin with double underline (eg. __qClass instead of _qClass)
Claus Gittinger <cg@exept.de>
parents: 15003
diff changeset
   739
	val = __smallIntegerVal(__characterVal(value));
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   740
    } else
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   741
	goto badArg;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   742
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   743
    if (cp && __isSmallInteger(index)) {
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   744
	idx = __intVal(index);
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   745
	if (idx > 0) {
6445
45d1c43350a1 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6444
diff changeset
   746
	    if (((sz = __INST(size)) == nil)
45d1c43350a1 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6444
diff changeset
   747
	     || (__intVal(sz) >= idx)) {
45d1c43350a1 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6444
diff changeset
   748
		if ((val & ~0xFF) == 0) /* i.e. (val >= 0) && (val <= 255) */  {
45d1c43350a1 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6444
diff changeset
   749
		    cp[idx-1] = val;
45d1c43350a1 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6444
diff changeset
   750
		    RETURN ( value );
45d1c43350a1 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6444
diff changeset
   751
		}
45d1c43350a1 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6444
diff changeset
   752
	    }
45d1c43350a1 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6444
diff changeset
   753
	}
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   754
    }
6302
32ede83e77e5 allow for character arg in #at:put:
Claus Gittinger <cg@exept.de>
parents: 6242
diff changeset
   755
32ede83e77e5 allow for character arg in #at:put:
Claus Gittinger <cg@exept.de>
parents: 6242
diff changeset
   756
badArg: ;
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   757
%}.
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   758
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   759
    (size notNil and:[self address notNil]) ifTrue:[
6445
45d1c43350a1 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6444
diff changeset
   760
	(index between:1 and:size) ifTrue:[
45d1c43350a1 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6444
diff changeset
   761
	    ^ ElementOutOfBoundsSignal raise
45d1c43350a1 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6444
diff changeset
   762
	].
45d1c43350a1 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6444
diff changeset
   763
	^ self subscriptBoundsError:index
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   764
    ].
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   765
    "
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   766
     invalid index, invalid value or unallocated
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   767
    "
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   768
    self primitiveFailed
1220
99990bbb561f commentary
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   769
99990bbb561f commentary
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   770
    "Modified: 19.4.1996 / 11:15:05 / cg"
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   771
!
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   772
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   773
byteAt:index
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   774
    "return the unsigned byte at index, anInteger.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   775
     Indices are 1-based, therefore
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   776
     this is the byte at (address + index - 1)"
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   777
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   778
    ^ self basicAt:index
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   779
!
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   780
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   781
byteAt:index put:aByteValuedInteger
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   782
    "set the byte at index.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   783
     Indices are 1-based, therefore
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   784
     this is the byte at (address + index - 1)"
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   785
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   786
    ^ self basicAt:index put:aByteValuedInteger
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   787
!
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   788
13196
a8e595628fb5 added: #copyUnicodeStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 13076
diff changeset
   789
copyCStringFromHeap
a8e595628fb5 added: #copyUnicodeStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 13076
diff changeset
   790
    "fetch a 0-terminated string from my pointed-to address"
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
   791
12594
d7267a747c2f changed: #copyCStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 11854
diff changeset
   792
    |idx byte s|
11739
d04e05026d39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11629
diff changeset
   793
12594
d7267a747c2f changed: #copyCStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 11854
diff changeset
   794
    idx := 1.
d7267a747c2f changed: #copyCStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 11854
diff changeset
   795
    s := WriteStream on:String new.
d7267a747c2f changed: #copyCStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 11854
diff changeset
   796
    [(byte := self at:idx) ~~ 0] whileTrue:[
13704
Claus Gittinger <cg@exept.de>
parents: 13196
diff changeset
   797
	s nextPut:(Character value:byte).
Claus Gittinger <cg@exept.de>
parents: 13196
diff changeset
   798
	idx := idx + 1.
11739
d04e05026d39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11629
diff changeset
   799
    ].
13196
a8e595628fb5 added: #copyUnicodeStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 13076
diff changeset
   800
    ^ s contents
a8e595628fb5 added: #copyUnicodeStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 13076
diff changeset
   801
!
a8e595628fb5 added: #copyUnicodeStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 13076
diff changeset
   802
a8e595628fb5 added: #copyUnicodeStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 13076
diff changeset
   803
copyUnicodeStringFromHeap
a8e595628fb5 added: #copyUnicodeStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 13076
diff changeset
   804
    "fetch a 0-terminated wide-string from my pointed-to address"
a8e595628fb5 added: #copyUnicodeStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 13076
diff changeset
   805
a8e595628fb5 added: #copyUnicodeStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 13076
diff changeset
   806
    |idx word s|
a8e595628fb5 added: #copyUnicodeStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 13076
diff changeset
   807
a8e595628fb5 added: #copyUnicodeStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 13076
diff changeset
   808
    idx := 1.
a8e595628fb5 added: #copyUnicodeStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 13076
diff changeset
   809
    s := WriteStream on:Unicode16String new.
a8e595628fb5 added: #copyUnicodeStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 13076
diff changeset
   810
    [(word := self unsignedShortAt:idx) ~~ 0] whileTrue:[
13704
Claus Gittinger <cg@exept.de>
parents: 13196
diff changeset
   811
	s nextPut:(Character value:word).
Claus Gittinger <cg@exept.de>
parents: 13196
diff changeset
   812
	idx := idx + 2.
13196
a8e595628fb5 added: #copyUnicodeStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 13076
diff changeset
   813
    ].
a8e595628fb5 added: #copyUnicodeStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 13076
diff changeset
   814
    ^ s contents
a8e595628fb5 added: #copyUnicodeStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 13076
diff changeset
   815
!
a8e595628fb5 added: #copyUnicodeStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 13076
diff changeset
   816
a8e595628fb5 added: #copyUnicodeStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 13076
diff changeset
   817
instVarAt:index
a8e595628fb5 added: #copyUnicodeStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 13076
diff changeset
   818
    "redefined to suppress direct access to my address, which is a non-object"
a8e595628fb5 added: #copyUnicodeStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 13076
diff changeset
   819
a8e595628fb5 added: #copyUnicodeStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 13076
diff changeset
   820
    index == 1 ifTrue:[^ self address].
a8e595628fb5 added: #copyUnicodeStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 13076
diff changeset
   821
    ^ super instVarAt:index
11739
d04e05026d39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11629
diff changeset
   822
! !
d04e05026d39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11629
diff changeset
   823
6491
6976d9b69e01 Conversion between ExternalBytes and ExternalAddress
Stefan Vogel <sv@exept.de>
parents: 6484
diff changeset
   824
!ExternalBytes methodsFor:'converting'!
6976d9b69e01 Conversion between ExternalBytes and ExternalAddress
Stefan Vogel <sv@exept.de>
parents: 6484
diff changeset
   825
6976d9b69e01 Conversion between ExternalBytes and ExternalAddress
Stefan Vogel <sv@exept.de>
parents: 6484
diff changeset
   826
asExternalAddress
6976d9b69e01 Conversion between ExternalBytes and ExternalAddress
Stefan Vogel <sv@exept.de>
parents: 6484
diff changeset
   827
    "return the start address as an external address"
6976d9b69e01 Conversion between ExternalBytes and ExternalAddress
Stefan Vogel <sv@exept.de>
parents: 6484
diff changeset
   828
6976d9b69e01 Conversion between ExternalBytes and ExternalAddress
Stefan Vogel <sv@exept.de>
parents: 6484
diff changeset
   829
%{  /* NOCONTEXT */
6976d9b69e01 Conversion between ExternalBytes and ExternalAddress
Stefan Vogel <sv@exept.de>
parents: 6484
diff changeset
   830
6976d9b69e01 Conversion between ExternalBytes and ExternalAddress
Stefan Vogel <sv@exept.de>
parents: 6484
diff changeset
   831
    RETURN(__MKEXTERNALADDRESS(__INST(address_)));
6976d9b69e01 Conversion between ExternalBytes and ExternalAddress
Stefan Vogel <sv@exept.de>
parents: 6484
diff changeset
   832
%}.
6976d9b69e01 Conversion between ExternalBytes and ExternalAddress
Stefan Vogel <sv@exept.de>
parents: 6484
diff changeset
   833
!
6976d9b69e01 Conversion between ExternalBytes and ExternalAddress
Stefan Vogel <sv@exept.de>
parents: 6484
diff changeset
   834
6976d9b69e01 Conversion between ExternalBytes and ExternalAddress
Stefan Vogel <sv@exept.de>
parents: 6484
diff changeset
   835
asExternalBytes
6976d9b69e01 Conversion between ExternalBytes and ExternalAddress
Stefan Vogel <sv@exept.de>
parents: 6484
diff changeset
   836
6976d9b69e01 Conversion between ExternalBytes and ExternalAddress
Stefan Vogel <sv@exept.de>
parents: 6484
diff changeset
   837
    ^ self
6976d9b69e01 Conversion between ExternalBytes and ExternalAddress
Stefan Vogel <sv@exept.de>
parents: 6484
diff changeset
   838
! !
6976d9b69e01 Conversion between ExternalBytes and ExternalAddress
Stefan Vogel <sv@exept.de>
parents: 6484
diff changeset
   839
6483
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   840
!ExternalBytes methodsFor:'filling & replacing'!
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   841
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   842
replaceBytesFrom:start to:stop with:aCollection startingAt:repStart
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   843
    "replace elements from another collection, which must be a ByteArray-
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   844
     like collection.
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   845
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   846
     Notice: This operation modifies the receiver, NOT a copy;
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   847
     therefore the change may affect all others referencing the receiver."
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   848
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   849
%{  /* NOCONTEXT */
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   850
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   851
    int nIndex, repNIndex;
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   852
    int startIndex, stopIndex;
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   853
    REGISTER unsigned char *src;
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   854
    REGISTER int repStartIndex;
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   855
    int repStopIndex, count;
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   856
    REGISTER unsigned char *dst;
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   857
    OBJ cls;
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   858
14076
5f68cf5ece9c changed: #replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 13704
diff changeset
   859
    if ((__isBytes(aCollection) || __isWords(aCollection) || __isExternalBytesLike(aCollection))
6483
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   860
     && __bothSmallInteger(start, stop)
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   861
     && __isSmallInteger(repStart)) {
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   862
	startIndex = __intVal(start) - 1;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   863
	if (startIndex >= 0) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   864
	    dst = (unsigned char *)__INST(address_) + startIndex;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   865
	    nIndex = __smallIntegerVal(__INST(size));
6483
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   866
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   867
	    stopIndex = __intVal(stop) - 1;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   868
	    count = stopIndex - startIndex + 1;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   869
	    if (count == 0) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   870
		RETURN ( self );
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   871
	    }
6483
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   872
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   873
	    if ((count > 0) && (stopIndex < nIndex)) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   874
		repStartIndex = __intVal(repStart) - 1;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   875
		if (repStartIndex >= 0) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   876
		    if (__isExternalBytesLike(aCollection)) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   877
			OBJ sz;
7191
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   878
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   879
			src = __externalBytesVal(aCollection);
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   880
			if (src == 0) goto fallBack;
6483
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   881
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   882
			sz = __externalBytesSize(aCollection);
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   883
			if (__isSmallInteger(sz)) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   884
			    repNIndex = __smallIntegerVal(sz);
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   885
			} else {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   886
			    repNIndex = -1; /* unknown */
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   887
			}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   888
			src = src + repStartIndex;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   889
		    } else {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   890
			repNIndex = __qSize(aCollection) - OHDR_SIZE;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   891
			src = __byteArrayVal(aCollection) + repStartIndex;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   892
			if ((cls = __qClass(aCollection)) != @global(ByteArray)) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   893
			    int nInst;
6483
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   894
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   895
			    nInst = __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   896
			    src += nInst;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   897
			    repNIndex -= nInst;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   898
			}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   899
		    }
7191
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   900
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   901
		    repStopIndex = repStartIndex + (stopIndex - startIndex);
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   902
		    if (repStopIndex < repNIndex) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   903
			if (aCollection == self) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   904
			    /* take care of overlapping copy */
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   905
			    if (src < dst) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   906
				/* must do a reverse copy */
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   907
				src += count;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   908
				dst += count;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   909
				while (count-- > 0) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   910
				    *--dst = *--src;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   911
				}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   912
				RETURN ( self );
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   913
			    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   914
			}
6483
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   915
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   916
#ifdef memcpy4
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   917
			if (((unsigned INT)src & 3) == ((unsigned INT)dst & 3)) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   918
			    int nW;
6483
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   919
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   920
			    /* copy unaligned part */
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   921
			    while (count && ((unsigned INT)src & 3)) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   922
				*dst++ = *src++;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   923
				count--;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   924
			    }
6483
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   925
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   926
			    if (count > 0) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   927
				/* copy aligned part */
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   928
				nW = count >> 2;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   929
				memcpy4(dst, src, nW);
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   930
				if ((count = count & 3) != 0) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   931
				    /* copy any remaining part */
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   932
				    src += (nW<<2);
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   933
				    dst += (nW<<2);
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   934
				    while (count--) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   935
					*dst++ = *src++;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   936
				    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   937
				}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   938
			    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   939
			    RETURN ( self );
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   940
			}
6483
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   941
#else
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8288
diff changeset
   942
# if __POINTER_SIZE__ == 8
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   943
			if (((unsigned INT)src & 7) == ((unsigned INT)dst & 7)) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   944
			    /* copy unaligned part */
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   945
			    while (count && ((unsigned INT)src & 7)) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   946
				*dst++ = *src++;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   947
				count--;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   948
			    }
6483
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   949
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   950
			    /* copy aligned part */
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   951
			    while (count >= 8) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   952
				((unsigned INT *)dst)[0] = ((unsigned INT *)src)[0];
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   953
				dst += 8;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   954
				src += 8;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   955
				count -= 8;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   956
			    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   957
			    while (count--) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   958
				*dst++ = *src++;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   959
			    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   960
			    RETURN ( self );
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   961
			}
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   962
# endif /* 64bit */
6483
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   963
#endif /* memcpy4 */
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   964
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   965
#ifdef FAST_MEMCPY
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   966
			memcpy(dst, src, count);
6483
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   967
#else
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
   968
# ifdef __UNROLL_LOOPS__
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   969
			while (count >= 8) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   970
			    dst[0] = src[0]; dst[1] = src[1];
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   971
			    dst[2] = src[2]; dst[3] = src[3];
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   972
			    dst[4] = src[4]; dst[5] = src[5];
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   973
			    dst[6] = src[6]; dst[7] = src[7];
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   974
			    dst += 8; src += 8;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   975
			    count -= 8;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   976
			}
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
   977
# endif /* __UNROLL_LOOPS__ */
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   978
			while (count-- > 0) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   979
			    *dst++ = *src++;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   980
			}
6483
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   981
#endif
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   982
			RETURN ( self );
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   983
		    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   984
		}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   985
	    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   986
	}
6483
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   987
    }
7191
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   988
fallBack: ;
6483
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   989
%}.
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   990
    "
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   991
     fall back for the error report if any index is invalid
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   992
    "
7191
82bddba980b6 tuned the replaceBytes from another externalBytes object case.
Claus Gittinger <cg@exept.de>
parents: 7184
diff changeset
   993
    ^ super replaceBytesFrom:start to:stop with:aCollection startingAt:repStart
6483
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   994
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
   995
    "
14125
6aec556d2bbf comment changed: #replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 14080
diff changeset
   996
     ((ExternalBytes unprotectedNew:16)
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   997
	    replaceBytesFrom:1 to:8
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   998
	    with:#[10 20 30 40 50 60 70 80 90 100 110 120 130 140 150 160]
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
   999
	    startingAt:1) copy
6483
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
  1000
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
  1001
     (ExternalBytes unprotectedNew:16)
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
  1002
	    replaceBytesFrom:3 to:10
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
  1003
	    with:#[10 20 30 40 50 60 70 80 90 100 110 120 130 140 150 160]
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
  1004
	    startingAt:4
6483
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
  1005
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
  1006
     (ExternalBytes unprotectedNew:16)
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
  1007
	    replaceBytesFrom:3 to:4
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
  1008
	    with:#[10 20 30 40 50 60 70 80 90 100 110 120 130 140 150 160]
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
  1009
	    startingAt:1
6483
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
  1010
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
  1011
     (ExternalBytes unprotectedNew:16)
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
  1012
	    replaceBytesFrom:0 to:9
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
  1013
	    with:#[10 20 30 40 50 60 70 80 90 100 110 120 130 140 150 160]
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
  1014
	    startingAt:1
6483
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
  1015
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
  1016
     (ExternalBytes unprotectedNew:16)
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
  1017
	    replaceBytesFrom:1 to:10
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
  1018
	    with:#[10 20 30 40 50 60 70 80 90 100 110 120 130 140 150 160]
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14125
diff changeset
  1019
	    startingAt:0
6483
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
  1020
    "
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
  1021
! !
ec599166f169 replaceBytesFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 6471
diff changeset
  1022
6444
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1023
!ExternalBytes methodsFor:'finalization'!
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1024
6440
eb9cdc352a7c Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6425
diff changeset
  1025
executor
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1026
    "redefined to return a lightweight copy
7184
1191a63dcd26 +register
penk
parents: 6503
diff changeset
  1027
     - all we need is the memory handle and the size."
6491
6976d9b69e01 Conversion between ExternalBytes and ExternalAddress
Stefan Vogel <sv@exept.de>
parents: 6484
diff changeset
  1028
6976d9b69e01 Conversion between ExternalBytes and ExternalAddress
Stefan Vogel <sv@exept.de>
parents: 6484
diff changeset
  1029
%{ /* NOCONTEXT */
6440
eb9cdc352a7c Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6425
diff changeset
  1030
7386
0996b933cbf1 Need __STORE() when assigning class
Stefan Vogel <sv@exept.de>
parents: 7257
diff changeset
  1031
    OBJ theCopy, cls;
7184
1191a63dcd26 +register
penk
parents: 6503
diff changeset
  1032
7855
27f64d1beaa1 Have to protect self, otherwise bad things happen in the VM.
Stefan Vogel <sv@exept.de>
parents: 7386
diff changeset
  1033
    __PROTECT__(self);
7184
1191a63dcd26 +register
penk
parents: 6503
diff changeset
  1034
    theCopy = __MKEXTERNALBYTES_N(__INST(address_), __smallIntegerVal(__INST(size)));
7855
27f64d1beaa1 Have to protect self, otherwise bad things happen in the VM.
Stefan Vogel <sv@exept.de>
parents: 7386
diff changeset
  1035
    __UNPROTECT__(self);
7386
0996b933cbf1 Need __STORE() when assigning class
Stefan Vogel <sv@exept.de>
parents: 7257
diff changeset
  1036
    __InstPtr(theCopy)->o_class = cls = __InstPtr(self)->o_class;
0996b933cbf1 Need __STORE() when assigning class
Stefan Vogel <sv@exept.de>
parents: 7257
diff changeset
  1037
    __STORE(theCopy, cls);
7184
1191a63dcd26 +register
penk
parents: 6503
diff changeset
  1038
    RETURN (theCopy);
6491
6976d9b69e01 Conversion between ExternalBytes and ExternalAddress
Stefan Vogel <sv@exept.de>
parents: 6484
diff changeset
  1039
%}
6976d9b69e01 Conversion between ExternalBytes and ExternalAddress
Stefan Vogel <sv@exept.de>
parents: 6484
diff changeset
  1040
6976d9b69e01 Conversion between ExternalBytes and ExternalAddress
Stefan Vogel <sv@exept.de>
parents: 6484
diff changeset
  1041
    "
6976d9b69e01 Conversion between ExternalBytes and ExternalAddress
Stefan Vogel <sv@exept.de>
parents: 6484
diff changeset
  1042
      (ExternalBytes unprotectedNew:10) executor
6976d9b69e01 Conversion between ExternalBytes and ExternalAddress
Stefan Vogel <sv@exept.de>
parents: 6484
diff changeset
  1043
    "
6440
eb9cdc352a7c Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6425
diff changeset
  1044
!
eb9cdc352a7c Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6425
diff changeset
  1045
6462
245e99c09df0 Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6459
diff changeset
  1046
finalizationLobby
245e99c09df0 Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6459
diff changeset
  1047
    "answer the registry used for finalization.
245e99c09df0 Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6459
diff changeset
  1048
     ExternalBytes have their own Registry"
245e99c09df0 Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6459
diff changeset
  1049
245e99c09df0 Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6459
diff changeset
  1050
    ^ Lobby
245e99c09df0 Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6459
diff changeset
  1051
!
245e99c09df0 Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6459
diff changeset
  1052
6440
eb9cdc352a7c Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6425
diff changeset
  1053
finalize
2779
e895876895d3 64bit changes
Claus Gittinger <cg@exept.de>
parents: 2769
diff changeset
  1054
    "some ExternalBytes object was finalized;
e895876895d3 64bit changes
Claus Gittinger <cg@exept.de>
parents: 2769
diff changeset
  1055
     free the associated heap memory with it"
e895876895d3 64bit changes
Claus Gittinger <cg@exept.de>
parents: 2769
diff changeset
  1056
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1057
%{  /* NOCONTEXT */
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1058
6457
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1059
    char *mem = (char *)(__INST(address_));
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1060
    if (mem && (OBJ)mem != nil) {
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1061
	__stx_free(mem);
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1062
    }
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  1063
    __INST(address_) = __INST(size) = nil;
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1064
%}
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1065
! !
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1066
6444
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1067
!ExternalBytes methodsFor:'freeing'!
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1068
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1069
free
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1070
    "free a previously allocated piece of memory - be very careful, there
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1071
     are no checks done here. All dangers you usually have with malloc/free
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1072
     are present here ..."
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1073
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1074
    "at least, we check for double freeing the same chunk"
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1075
    self address isNil ifTrue:[
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1076
	self error:'freeing memory twice'.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1077
	^ self
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1078
    ].
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1079
    Lobby unregister:self.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1080
    self finalize.  "/ does what we need here ..
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1081
    self unprotectFromGC
7184
1191a63dcd26 +register
penk
parents: 6503
diff changeset
  1082
!
1191a63dcd26 +register
penk
parents: 6503
diff changeset
  1083
1191a63dcd26 +register
penk
parents: 6503
diff changeset
  1084
register
1191a63dcd26 +register
penk
parents: 6503
diff changeset
  1085
    "register the receiver to be automatically finalized by the GC"
1191a63dcd26 +register
penk
parents: 6503
diff changeset
  1086
1191a63dcd26 +register
penk
parents: 6503
diff changeset
  1087
    Lobby register:self.
6444
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1088
! !
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1089
6443
84673f4549ce New method #from:to:
Stefan Vogel <sv@exept.de>
parents: 6440
diff changeset
  1090
!ExternalBytes methodsFor:'pointer arithmethic'!
84673f4549ce New method #from:to:
Stefan Vogel <sv@exept.de>
parents: 6440
diff changeset
  1091
6502
87f587d1542e rename #from:to to #referenceToBytesFrom:to
Stefan Vogel <sv@exept.de>
parents: 6491
diff changeset
  1092
referenceToBytesFrom:start to:stop
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1093
   "answer a new ExternalBytes referencing a range within the receiver.
6502
87f587d1542e rename #from:to to #referenceToBytesFrom:to
Stefan Vogel <sv@exept.de>
parents: 6491
diff changeset
  1094
    BE CAREFUL: after the receiver has been freed, the new ExternalBytes
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1095
    contents is undefined"
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1096
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1097
%{ /* NOCONTEXT */
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1098
6471
186b2bb08a0a compilable under bcc55
Claus Gittinger <cg@exept.de>
parents: 6462
diff changeset
  1099
    char *addr;
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1100
    int size;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1101
    int __start, __stop;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1102
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1103
    if (__bothSmallInteger(start, stop) && __INST(address_) != nil) {
6503
bb1899d47c7b Fix types.
Stefan Vogel <sv@exept.de>
parents: 6502
diff changeset
  1104
	__start = __smallIntegerVal(start);
bb1899d47c7b Fix types.
Stefan Vogel <sv@exept.de>
parents: 6502
diff changeset
  1105
	__stop = __smallIntegerVal(stop);
bb1899d47c7b Fix types.
Stefan Vogel <sv@exept.de>
parents: 6502
diff changeset
  1106
	if (__start > 0 && __start <= __stop && __stop <= __smallIntegerVal(__INST(size))) {
bb1899d47c7b Fix types.
Stefan Vogel <sv@exept.de>
parents: 6502
diff changeset
  1107
	    addr = (char *)(__INST(address_)) + (__start - 1);
bb1899d47c7b Fix types.
Stefan Vogel <sv@exept.de>
parents: 6502
diff changeset
  1108
	    size = __stop - __start + 1;
bb1899d47c7b Fix types.
Stefan Vogel <sv@exept.de>
parents: 6502
diff changeset
  1109
	    RETURN( __MKEXTERNALBYTES_N(addr, size) );
bb1899d47c7b Fix types.
Stefan Vogel <sv@exept.de>
parents: 6502
diff changeset
  1110
	}
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1111
    }
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1112
%}.
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1113
   ^ self primitiveFailed
6458
c89a6c9b041c checkin from browser
Stefan Vogel <sv@exept.de>
parents: 6457
diff changeset
  1114
! !
6443
84673f4549ce New method #from:to:
Stefan Vogel <sv@exept.de>
parents: 6440
diff changeset
  1115
6458
c89a6c9b041c checkin from browser
Stefan Vogel <sv@exept.de>
parents: 6457
diff changeset
  1116
!ExternalBytes methodsFor:'printing & storing'!
6443
84673f4549ce New method #from:to:
Stefan Vogel <sv@exept.de>
parents: 6440
diff changeset
  1117
13076
29b8a558bcf2 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 12864
diff changeset
  1118
displayOn:aGCOrStream
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1119
    "return a printed representation of the receiver for displaying"
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1120
13076
29b8a558bcf2 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 12864
diff changeset
  1121
    |addr|
6443
84673f4549ce New method #from:to:
Stefan Vogel <sv@exept.de>
parents: 6440
diff changeset
  1122
13076
29b8a558bcf2 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 12864
diff changeset
  1123
    "/ what a kludge - Dolphin and Squeak mean: printOn: a stream;
29b8a558bcf2 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 12864
diff changeset
  1124
    "/ ST/X (and some old ST80's) mean: draw-yourself on a GC.
16739
5e8800295759 displayOn: cleanup
Claus Gittinger <cg@exept.de>
parents: 16705
diff changeset
  1125
    (aGCOrStream isStream) ifFalse:[
5e8800295759 displayOn: cleanup
Claus Gittinger <cg@exept.de>
parents: 16705
diff changeset
  1126
        ^ super displayOn:aGCOrStream
13076
29b8a558bcf2 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 12864
diff changeset
  1127
    ].
29b8a558bcf2 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 12864
diff changeset
  1128
29b8a558bcf2 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 12864
diff changeset
  1129
    aGCOrStream nextPutAll:self className.
29b8a558bcf2 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 12864
diff changeset
  1130
    addr := self address.
29b8a558bcf2 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 12864
diff changeset
  1131
    addr isNil ifTrue:[
16739
5e8800295759 displayOn: cleanup
Claus Gittinger <cg@exept.de>
parents: 16705
diff changeset
  1132
        aGCOrStream nextPutAll:'[free]'.
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1133
    ] ifFalse:[
16739
5e8800295759 displayOn: cleanup
Claus Gittinger <cg@exept.de>
parents: 16705
diff changeset
  1134
        size notNil ifTrue:[
5e8800295759 displayOn: cleanup
Claus Gittinger <cg@exept.de>
parents: 16705
diff changeset
  1135
            aGCOrStream nextPutAll:'[sz:'.
5e8800295759 displayOn: cleanup
Claus Gittinger <cg@exept.de>
parents: 16705
diff changeset
  1136
            size printOn:aGCOrStream.
5e8800295759 displayOn: cleanup
Claus Gittinger <cg@exept.de>
parents: 16705
diff changeset
  1137
            aGCOrStream space.
5e8800295759 displayOn: cleanup
Claus Gittinger <cg@exept.de>
parents: 16705
diff changeset
  1138
        ] ifFalse:[
5e8800295759 displayOn: cleanup
Claus Gittinger <cg@exept.de>
parents: 16705
diff changeset
  1139
            aGCOrStream nextPut:$[.
5e8800295759 displayOn: cleanup
Claus Gittinger <cg@exept.de>
parents: 16705
diff changeset
  1140
        ].
5e8800295759 displayOn: cleanup
Claus Gittinger <cg@exept.de>
parents: 16705
diff changeset
  1141
        aGCOrStream nextPutAll:'at:'.
5e8800295759 displayOn: cleanup
Claus Gittinger <cg@exept.de>
parents: 16705
diff changeset
  1142
        addr printOn:aGCOrStream base:16.
5e8800295759 displayOn: cleanup
Claus Gittinger <cg@exept.de>
parents: 16705
diff changeset
  1143
        aGCOrStream nextPut:$].
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1144
    ].
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1145
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1146
    "Modified: / 24.2.2000 / 19:02:19 / cg"
6458
c89a6c9b041c checkin from browser
Stefan Vogel <sv@exept.de>
parents: 6457
diff changeset
  1147
! !
c89a6c9b041c checkin from browser
Stefan Vogel <sv@exept.de>
parents: 6457
diff changeset
  1148
7257
b9f0fb923c72 method category rename
Claus Gittinger <cg@exept.de>
parents: 7192
diff changeset
  1149
!ExternalBytes methodsFor:'private-accessing'!
6458
c89a6c9b041c checkin from browser
Stefan Vogel <sv@exept.de>
parents: 6457
diff changeset
  1150
9388
84f25350bb00 *** empty log message ***
ca
parents: 9345
diff changeset
  1151
invalidateReference
84f25350bb00 *** empty log message ***
ca
parents: 9345
diff changeset
  1152
    "clear the start address and size"
84f25350bb00 *** empty log message ***
ca
parents: 9345
diff changeset
  1153
84f25350bb00 *** empty log message ***
ca
parents: 9345
diff changeset
  1154
%{  /* NOCONTEXT */
84f25350bb00 *** empty log message ***
ca
parents: 9345
diff changeset
  1155
    __INST(address_) = nil;
84f25350bb00 *** empty log message ***
ca
parents: 9345
diff changeset
  1156
    __INST(size) = nil;
84f25350bb00 *** empty log message ***
ca
parents: 9345
diff changeset
  1157
%}
84f25350bb00 *** empty log message ***
ca
parents: 9345
diff changeset
  1158
!
84f25350bb00 *** empty log message ***
ca
parents: 9345
diff changeset
  1159
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1160
setAddress:aNumber size:sz
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1161
    "set the start address and size"
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1162
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1163
%{  /* NOCONTEXT */
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1164
    if (__INST(address_) == nil) {
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1165
	if (aNumber == nil) {
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1166
	    __INST(address_) = nil;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1167
	} else {
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1168
	    if (__isSmallInteger(aNumber)) {
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1169
		__INST(address_) = (OBJ) __intVal(aNumber);
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1170
	    } else if(__isInteger(aNumber)) {
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1171
		__INST(address_) = (OBJ) __unsignedLongIntVal(aNumber);
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1172
	    } else if(__isExternalAddress(aNumber)) {
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1173
		__INST(address_) = __externalAddressVal(aNumber);
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1174
	    }
6445
45d1c43350a1 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6444
diff changeset
  1175
	}
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1176
	__INST(size) = sz;
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1177
	RETURN (self);
6443
84673f4549ce New method #from:to:
Stefan Vogel <sv@exept.de>
parents: 6440
diff changeset
  1178
    }
84673f4549ce New method #from:to:
Stefan Vogel <sv@exept.de>
parents: 6440
diff changeset
  1179
%}.
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1180
    ^ self error:'cannot change address'
8288
0bc2cce47912 +setSize
werner
parents: 7855
diff changeset
  1181
!
0bc2cce47912 +setSize
werner
parents: 7855
diff changeset
  1182
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1183
setSize:sz
8288
0bc2cce47912 +setSize
werner
parents: 7855
diff changeset
  1184
    "set the size - warning: dangerous if wrong"
0bc2cce47912 +setSize
werner
parents: 7855
diff changeset
  1185
0bc2cce47912 +setSize
werner
parents: 7855
diff changeset
  1186
    size := sz
6443
84673f4549ce New method #from:to:
Stefan Vogel <sv@exept.de>
parents: 6440
diff changeset
  1187
! !
84673f4549ce New method #from:to:
Stefan Vogel <sv@exept.de>
parents: 6440
diff changeset
  1188
7257
b9f0fb923c72 method category rename
Claus Gittinger <cg@exept.de>
parents: 7192
diff changeset
  1189
!ExternalBytes methodsFor:'private-allocation'!
6444
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1190
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1191
allocateBytes:numberOfBytes
11854
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
  1192
    "allocate (malloc) numberOfBytes; if doClear is true, the allocated memory is cleared.
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
  1193
     Fail if already allocated.
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
  1194
     Raise MallocFailure if malloc fails to allocate enough memory"
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
  1195
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
  1196
    ^ self allocateBytes:numberOfBytes clear:true
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
  1197
!
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
  1198
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
  1199
allocateBytes:numberOfBytes clear:doClear
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
  1200
    "allocate (malloc) numberOfBytes; if doClear is true, the allocated memory is cleared.
6444
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1201
     Fail if already allocated.
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1202
     Raise MallocFailure if malloc fails to allocate enough memory"
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1203
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1204
    |mallocFailure|
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1205
6457
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1206
%{
6444
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1207
    char *space;
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1208
    unsigned int nBytes;
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1209
    char *__stx_malloc();
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1210
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1211
    /*
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1212
     * Fail if already allocated
6444
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1213
     */
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1214
    if (__INST(address_) == nil && __isSmallInteger(numberOfBytes)) {
6503
bb1899d47c7b Fix types.
Stefan Vogel <sv@exept.de>
parents: 6502
diff changeset
  1215
	nBytes = __smallIntegerVal(numberOfBytes);
bb1899d47c7b Fix types.
Stefan Vogel <sv@exept.de>
parents: 6502
diff changeset
  1216
	if (nBytes > 0) {
bb1899d47c7b Fix types.
Stefan Vogel <sv@exept.de>
parents: 6502
diff changeset
  1217
	    space = __stx_malloc(nBytes);
bb1899d47c7b Fix types.
Stefan Vogel <sv@exept.de>
parents: 6502
diff changeset
  1218
	    if (space) {
11854
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
  1219
		if (doClear == true) {
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
  1220
		    bzero(space, nBytes);
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
  1221
		}
6503
bb1899d47c7b Fix types.
Stefan Vogel <sv@exept.de>
parents: 6502
diff changeset
  1222
		__INST(address_) = (OBJ)space;
bb1899d47c7b Fix types.
Stefan Vogel <sv@exept.de>
parents: 6502
diff changeset
  1223
		__INST(size) = numberOfBytes;
bb1899d47c7b Fix types.
Stefan Vogel <sv@exept.de>
parents: 6502
diff changeset
  1224
		RETURN(self);
bb1899d47c7b Fix types.
Stefan Vogel <sv@exept.de>
parents: 6502
diff changeset
  1225
	    } else {
bb1899d47c7b Fix types.
Stefan Vogel <sv@exept.de>
parents: 6502
diff changeset
  1226
		mallocFailure = true;
bb1899d47c7b Fix types.
Stefan Vogel <sv@exept.de>
parents: 6502
diff changeset
  1227
	    }
bb1899d47c7b Fix types.
Stefan Vogel <sv@exept.de>
parents: 6502
diff changeset
  1228
	}
6444
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1229
    }
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1230
%}.
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1231
    mallocFailure == true ifTrue:[
6503
bb1899d47c7b Fix types.
Stefan Vogel <sv@exept.de>
parents: 6502
diff changeset
  1232
	^ MallocFailure raiseRequestWith:numberOfBytes.
6444
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1233
    ] ifFalse:[
6503
bb1899d47c7b Fix types.
Stefan Vogel <sv@exept.de>
parents: 6502
diff changeset
  1234
	self primitiveFailed.
6444
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1235
    ].
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1236
! !
04becccdbd70 Optimize instance creation
Stefan Vogel <sv@exept.de>
parents: 6443
diff changeset
  1237
5557
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5399
diff changeset
  1238
!ExternalBytes methodsFor:'queries'!
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5399
diff changeset
  1239
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1240
basicSize
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1241
    "we do not know how many bytes are valid"
5557
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5399
diff changeset
  1242
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1243
    size isNil ifTrue:[^ 0].
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1244
    ^ size
6443
84673f4549ce New method #from:to:
Stefan Vogel <sv@exept.de>
parents: 6440
diff changeset
  1245
!
84673f4549ce New method #from:to:
Stefan Vogel <sv@exept.de>
parents: 6440
diff changeset
  1246
9389
709a29f850a1 isValid
ca
parents: 9388
diff changeset
  1247
isValid
709a29f850a1 isValid
ca
parents: 9388
diff changeset
  1248
    "true if I gave an address"
709a29f850a1 isValid
ca
parents: 9388
diff changeset
  1249
709a29f850a1 isValid
ca
parents: 9388
diff changeset
  1250
%{  /* NOCONTEXT */
709a29f850a1 isValid
ca
parents: 9388
diff changeset
  1251
    RETURN ((__INST(address_) == nil) ? false : true );
709a29f850a1 isValid
ca
parents: 9388
diff changeset
  1252
%}
709a29f850a1 isValid
ca
parents: 9388
diff changeset
  1253
!
709a29f850a1 isValid
ca
parents: 9388
diff changeset
  1254
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1255
species
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1256
    "when copying, or concatenating, return instances of this class"
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1257
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1258
    ^ ByteArray
5557
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5399
diff changeset
  1259
! !
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5399
diff changeset
  1260
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1261
!ExternalBytes methodsFor:'registration'!
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1262
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1263
protectFromGC
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1264
    "enter a reference to the receiver into the AllocatedInstances
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1265
     class variable - this prevents it from ever being finalized by
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1266
     the garbage collector, thus protecting the underlying memory."
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1267
10137
7bfdc51fcb65 Avoid deadlock when free is called by finalization code (Stefan Vogel)
Michael Beyl <mb@exept.de>
parents: 9895
diff changeset
  1268
    |wasBlocked|
7bfdc51fcb65 Avoid deadlock when free is called by finalization code (Stefan Vogel)
Michael Beyl <mb@exept.de>
parents: 9895
diff changeset
  1269
7bfdc51fcb65 Avoid deadlock when free is called by finalization code (Stefan Vogel)
Michael Beyl <mb@exept.de>
parents: 9895
diff changeset
  1270
11854
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
  1271
    "using a Semaphore can cause a deadlock, since unprotectFromGC may be called by
10137
7bfdc51fcb65 Avoid deadlock when free is called by finalization code (Stefan Vogel)
Michael Beyl <mb@exept.de>
parents: 9895
diff changeset
  1272
     a finalization method"
7bfdc51fcb65 Avoid deadlock when free is called by finalization code (Stefan Vogel)
Michael Beyl <mb@exept.de>
parents: 9895
diff changeset
  1273
7bfdc51fcb65 Avoid deadlock when free is called by finalization code (Stefan Vogel)
Michael Beyl <mb@exept.de>
parents: 9895
diff changeset
  1274
    wasBlocked := OperatingSystem blockInterrupts.
7bfdc51fcb65 Avoid deadlock when free is called by finalization code (Stefan Vogel)
Michael Beyl <mb@exept.de>
parents: 9895
diff changeset
  1275
"/    AccessLock critical:[
11854
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
  1276
	AllocatedInstances isNil ifTrue:[
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
  1277
	    AllocatedInstances := IdentitySet new
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
  1278
	].
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
  1279
	AllocatedInstances add:self.
10137
7bfdc51fcb65 Avoid deadlock when free is called by finalization code (Stefan Vogel)
Michael Beyl <mb@exept.de>
parents: 9895
diff changeset
  1280
"/    ]
7bfdc51fcb65 Avoid deadlock when free is called by finalization code (Stefan Vogel)
Michael Beyl <mb@exept.de>
parents: 9895
diff changeset
  1281
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1282
!
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1283
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1284
unprotectFromGC
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1285
    "remove the receiver from the AllocatedInstances
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1286
     class variable - if there is no other reference to the receiver,
15398
4c73c49852d6 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15262
diff changeset
  1287
     and this was ever allocated by me (i.e. not by the outside world),
6459
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1288
     the next garbage collect will finalize the receiver and the underlying
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1289
     memory be freed."
e2ebcff99af2 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6458
diff changeset
  1290
10137
7bfdc51fcb65 Avoid deadlock when free is called by finalization code (Stefan Vogel)
Michael Beyl <mb@exept.de>
parents: 9895
diff changeset
  1291
    |wasBlocked|
7bfdc51fcb65 Avoid deadlock when free is called by finalization code (Stefan Vogel)
Michael Beyl <mb@exept.de>
parents: 9895
diff changeset
  1292
7bfdc51fcb65 Avoid deadlock when free is called by finalization code (Stefan Vogel)
Michael Beyl <mb@exept.de>
parents: 9895
diff changeset
  1293
    "using a Semaphore can cause a deadlock, since protectFromGC may be interrupted by me
7bfdc51fcb65 Avoid deadlock when free is called by finalization code (Stefan Vogel)
Michael Beyl <mb@exept.de>
parents: 9895
diff changeset
  1294
     being called by a finalization method"
7bfdc51fcb65 Avoid deadlock when free is called by finalization code (Stefan Vogel)
Michael Beyl <mb@exept.de>
parents: 9895
diff changeset
  1295
7bfdc51fcb65 Avoid deadlock when free is called by finalization code (Stefan Vogel)
Michael Beyl <mb@exept.de>
parents: 9895
diff changeset
  1296
    wasBlocked := OperatingSystem blockInterrupts.
7bfdc51fcb65 Avoid deadlock when free is called by finalization code (Stefan Vogel)
Michael Beyl <mb@exept.de>
parents: 9895
diff changeset
  1297
"/    AccessLock critical:[
11854
7fefd527563d *** empty log message ***
sr
parents: 11739
diff changeset
  1298
    AllocatedInstances notNil ifTrue:[
15398
4c73c49852d6 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15262
diff changeset
  1299
        AllocatedInstances remove:self ifAbsent:nil.
10138
87c242cb7475 Fix unprotectFromGC
Stefan Vogel <sv@exept.de>
parents: 10137
diff changeset
  1300
    ].
10137
7bfdc51fcb65 Avoid deadlock when free is called by finalization code (Stefan Vogel)
Michael Beyl <mb@exept.de>
parents: 9895
diff changeset
  1301
"/    ]
7bfdc51fcb65 Avoid deadlock when free is called by finalization code (Stefan Vogel)
Michael Beyl <mb@exept.de>
parents: 9895
diff changeset
  1302
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1303
! !
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1304
6457
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1305
!ExternalBytes methodsFor:'resizing'!
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1306
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1307
grow:numberOfBytes
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1308
    "reallocate (realloc) numberOfBytes.
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1309
     Raise MallocFailure if realloc fails to allocate enough memory"
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1310
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1311
    |mallocStatus|
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1312
16705
2f799eb4276d class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15398
diff changeset
  1313
    size == numberOfBytes ifTrue:[^ self].
2f799eb4276d class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15398
diff changeset
  1314
6457
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1315
%{
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1316
    char *space, *prevSpace;
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1317
    unsigned int nBytes;
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1318
    char *__stx_realloc();
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1319
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1320
    if (__isSmallInteger(numberOfBytes)) {
16705
2f799eb4276d class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15398
diff changeset
  1321
        nBytes = __smallIntegerVal(numberOfBytes);
2f799eb4276d class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15398
diff changeset
  1322
        if (nBytes > 0) {
2f799eb4276d class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15398
diff changeset
  1323
            prevSpace = (char *)__INST(address_);
2f799eb4276d class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15398
diff changeset
  1324
            if (prevSpace == (char *)nil)
2f799eb4276d class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15398
diff changeset
  1325
                prevSpace = 0;  /* allocate from scratch */
2f799eb4276d class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15398
diff changeset
  1326
            space = __stx_realloc(prevSpace, nBytes);
2f799eb4276d class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15398
diff changeset
  1327
            if (space) {
2f799eb4276d class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15398
diff changeset
  1328
                __INST(address_) = (OBJ)space;
2f799eb4276d class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15398
diff changeset
  1329
                __INST(size) = numberOfBytes;
2f799eb4276d class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15398
diff changeset
  1330
                if (space == prevSpace) {
2f799eb4276d class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15398
diff changeset
  1331
                    /* same address, no re-registration */
2f799eb4276d class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15398
diff changeset
  1332
                    RETURN(self);
2f799eb4276d class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15398
diff changeset
  1333
                }
2f799eb4276d class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15398
diff changeset
  1334
                mallocStatus = true;
2f799eb4276d class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15398
diff changeset
  1335
            } else {
2f799eb4276d class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15398
diff changeset
  1336
                mallocStatus = false;
2f799eb4276d class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15398
diff changeset
  1337
            }
2f799eb4276d class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15398
diff changeset
  1338
        }
6457
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1339
    }
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1340
%}.
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1341
    mallocStatus == true ifTrue:[
16705
2f799eb4276d class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15398
diff changeset
  1342
        Lobby registerChange:self.
6457
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1343
    ] ifFalse:[mallocStatus == false ifTrue:[
16705
2f799eb4276d class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15398
diff changeset
  1344
        ^ MallocFailure raiseRequestWith:numberOfBytes.
6457
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1345
    ] ifFalse:[
16705
2f799eb4276d class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 15398
diff changeset
  1346
        self primitiveFailed.
6457
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1347
    ]].
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1348
! !
123f5c82fcb7 Fix mallocTrace
Stefan Vogel <sv@exept.de>
parents: 6446
diff changeset
  1349
14080
051ed8e51d65 added: #isExternalBytes
Stefan Vogel <sv@exept.de>
parents: 14076
diff changeset
  1350
!ExternalBytes methodsFor:'testing'!
051ed8e51d65 added: #isExternalBytes
Stefan Vogel <sv@exept.de>
parents: 14076
diff changeset
  1351
051ed8e51d65 added: #isExternalBytes
Stefan Vogel <sv@exept.de>
parents: 14076
diff changeset
  1352
isExternalBytes
051ed8e51d65 added: #isExternalBytes
Stefan Vogel <sv@exept.de>
parents: 14076
diff changeset
  1353
    ^ true
051ed8e51d65 added: #isExternalBytes
Stefan Vogel <sv@exept.de>
parents: 14076
diff changeset
  1354
! !
051ed8e51d65 added: #isExternalBytes
Stefan Vogel <sv@exept.de>
parents: 14076
diff changeset
  1355
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1356
!ExternalBytes class methodsFor:'documentation'!
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1357
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1358
version
17627
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
  1359
    ^ '$Header: /cvs/stx/stx/libbasic/ExternalBytes.st,v 1.93 2015-03-18 18:17:52 cg Exp $'
12594
d7267a747c2f changed: #copyCStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 11854
diff changeset
  1360
!
d7267a747c2f changed: #copyCStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 11854
diff changeset
  1361
d7267a747c2f changed: #copyCStringFromHeap
Claus Gittinger <cg@exept.de>
parents: 11854
diff changeset
  1362
version_CVS
17627
adba1b4d01c9 class: ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 16739
diff changeset
  1363
    ^ '$Header: /cvs/stx/stx/libbasic/ExternalBytes.st,v 1.93 2015-03-18 18:17:52 cg Exp $'
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1364
! !
7184
1191a63dcd26 +register
penk
parents: 6503
diff changeset
  1365
14749
64fd0e91d2d7 class: ExternalBytes
Stefan Vogel <sv@exept.de>
parents: 14632
diff changeset
  1366
848
76a83f34c26a moved ExtBytes & ExtFunc from libbasic2
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1367
ExternalBytes initialize!