DSMCC Version 1.0
DTVKit DSMCC Documentation
 All Data Structures Files Functions Typedefs
clDsmMemMgrAPI.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
3  * Copyright © 2004 Ocean Blue Software Ltd
4  *
5  * This file is part of a DTVKit Software Component
6  * You are permitted to copy, modify or distribute this file subject to the terms
7  * of the DTVKit 1.0 Licence which can be found in licence.txt or at www.dtvkit.org
8  *
9  * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
10  * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES
11  * OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
12  *
13  * If you or your organisation is not a member of DTVKit then you have access
14  * to this source code outside of the terms of the licence agreement
15  * and you are expected to delete this and any associated files immediately.
16  * Further information on DTVKit, membership and terms can be found at www.dtvkit.org
17  *******************************************************************************/
24 #ifndef _CLDSMMEMMGRAPI_H_
25 #define _CLDSMMEMMGRAPI_H_
26 
27 
28 /*-------------------------------- Includes ----------------------------------*/
29 
30 #include "techtype.h"
31 
32 /*-------------------------------- Defines -----------------------------------*/
33 
34 /*
35 -- ERROR CODES
36 --
37 -- To reduce unneccessary overheads in the final code, most of the memory
38 -- manager API functions do not return error codes. It is expected that the
39 -- caller (if necessary) will check parameters for legality before making the
40 -- the memory manager API call. It is sensible to do error checking
41 -- (via asserts) inside the memory manager functions during DEBUG.
42 --
43 -- Error codes are only returned by functions that can generate valid run-time
44 -- errors (ie. not due to coding errors). These errors codes are returned via
45 -- the S32BIT return value of the API funcs.
46 */
47 
48 typedef enum {
49  MEM_NO_ERR,
50  MEM_ERR_CACHE_FULL,
51  MEM_ERR_ALLOC_FAILED,
52  MEM_ERR_SEQ_OPEN_LIMIT,
53  MEM_ERR_SEQ_END_OF_DATA,
54 } E_DsmMemErr;
55 
56 
57 /*
58 -- DEFAULT SIZE LIMITS
59 */
60 
61 #define MEM_BLOCK_SIZE_DFLT (256)
62 #define MEM_HEAP_SIZE_DFLT (512*1024)
63 #define MEM_SEQ_OPEN_DFLT (256) /* -- concurrently used MemSeqRef values */
64 
65 
66 #if defined(VGR_TRK_MEM) && !defined(USE_DSM_MEMCHK) && !defined(DBG_STORE_LINE)
67 #define DBG_STORE_LINE
68 #endif
69 
70 
71 /*-------------------------------- Types -------------------------------------*/
72 
73 /*
74 -- Generic MemHandle definition
75 --
76 -- If clDsm is supplied as a pre-built library for a particular platform it
77 -- will store a MemHandle as this type (ie. a standard pointer). This could
78 -- be cast to a different type in the memory manager if required.
79 --
80 -- If clDsm is being compiled from source then MemHandle can be (re)defined to
81 -- anything appropriate.
82 --
83 -- NOTE:
84 -- 1) Zero (Null) MUST NOT be a legal value for a MemHandle.
85 -- 2) If possible, avoid the use of void* (void*) since the compiler may
86 -- not detect differing levels of indirection (eg void** and void* are
87 -- treated the same).
88 */
89 typedef U32BIT * MemHandle;
90 
91 
92 /*
93 -- Generic MemSeqRef definition
94 --
95 -- If clDsm is supplied as a pre-built library for a particular platform it
96 -- will store a MemSeqRef as this type (ie. a pointer to a structure). This can
97 -- be cast to the appropriate (structure) type in the memory manager.
98 --
99 -- If clDsm is being compiled from source then MemSeqRef can be (re)defined to
100 -- anything appropriate.
101 --
102 */
103 /*typedef struct _MemSeqRef_struct *MemSeqRef; */
104 
105 typedef U8BIT *MemSeqRef;
106 
107 /*----------------------------- Exported Data --------------------------------*/
108 
109 /*------------------------------ Prototypes ----------------------------------*/
110 
111 #ifdef DSM_NO_MEM_CONTEXT
112  #define memStop( x ) memStop()
113  #ifdef DBG_STORE_LINE
114  #define memAlloc( x, i, a, b, l ) memAlloc( i, a, b, l )
115  #else
116  #define memAlloc( x, i, a, b, l ) memAlloc( i, a, b )
117  #endif
118  #define memRelease( x, i, a ) memRelease( i, a )
119  #define memOpen( x, a, b ) memOpen( a, b )
120  #define memClose( x, a ) memClose( a )
121  #define memSeqOpen( x, a, b, c, d, e ) memSeqOpen( a, b, c, d, e )
122  #define memNumOpen( x ) memNumOpen()
123  #define memSeqNumOpen( x ) memSeqNumOpen()
124 #else
125  #ifndef DBG_STORE_LINE
126  #define memAlloc( x, i, a, b, l ) memAlloc( x, i, a, b )
127  #endif
128 #endif
129 
130 /*
131 -- Start memory manager [SYNCHRONOUS]
132 --
133 -- Specifies minimum contiguous memory block size in bytes (mandatory).
134 -- Specifies minimum size of heap memory in bytes (mandatory).
135 -- Specifies minimum number of MemSeq areas that can be opened
136 -- simultaneously (mandatory).
137 -- Requests total size of heap memory in bytes (optional - set to memHeapSizeMin
138 -- value if not used).
139 -- Supplies reference for memSetup parameters (optional).
140 --
141 -- Returns pointer to this memory manager context (if implemented, otherewise
142 -- should be returned as Null), this will be supplied to any subsequent mem
143 -- function calls that require it.
144 --
145 -- If any problems encountered (eg. in block/heap sizes) abort start and return
146 -- error code: MEM_ERR_START_PROBLEM
147 --
148 */
149 E_DsmMemErr memStart(
150  /*I*/ U16BIT memBlockSizeMin, U32BIT memHeapSizeMin, U16BIT memSeqOpenMin,
151  void* memSetup,
152  /*O*/ void* *memContext );
153 
154 
155 /*
156 -- Stop (forcibly) the memory manager [SYNCHRONOUS]
157 --
158 -- If any problems noticed (eg. memory objects still open) still complete
159 -- stop (eg. free memory) but return error code: MEM_ERR_STOP_PROBLEM
160 --
161 */
162 E_DsmMemErr memStop( void* context );
163 
164 
165 /*
166 -- Allocate an area of managed (heap) memory [SYNCHRONOUS]
167 */
168 E_DsmMemErr memAlloc( void* context, pclDsmSetup_t setup,
169  U32BIT size, MemHandle *memArea, int line );
170 
171 /*
172 -- Release a previously allocated area of managed (heap) memory [SYNCHRONOUS]
173 */
174 U32BIT memRelease( void* context, pclDsmSetup_t setup, MemHandle memArea );
175 
176 
177 /*
178 -- Check if a MemHandle is valid [SYNCHRONOUS]
179 --
180 -- NB. This should be 100% reliable at determining if a MemHandle reperesents
181 -- a currently allocated (ie. not free) memory area in the memory heap.
182 --
183 */
184 BOOLEAN memValidate( void* memArea );
185 
186 
187 /*
188 -- Open/lock a memory area [SYNCHRONOUS]
189 --
190 -- Call before making any direct (via pointer) access to the start of a managed
191 -- (heap) memory area. Supplies a _real_ pointer to the start of the requested
192 -- memory area.
193 --
194 -- The memory manager must guarantee that memBlockSizeMin bytes after this
195 -- start pointer can be always be accessed as contiguous memory. It must also
196 -- guarantee that any memory item that is 'open' is 'locked' in memory and
197 -- cannot be re-located (eg. due to de-fragmentation) until it is closed.
198 --
199 -- NB. Unless memStart returned memContig as True, access to managed memory data
200 -- after memBlockSizeMin bytes must be done via the memCopy (etc) API calls.
201 --
202 -- memOpen calls on the same memory area can be nested to any depth but
203 -- MUST be matched by an equal number of memClose calls. This enables, eg. a
204 -- de-fragmenting memory manager to count open instances and only unlock an
205 -- object (for de-fragmenting) on memClose when the open count reaches zero.
206 --
207 */
208 void memOpen( void* context, MemHandle memArea, void* *memPtr );
209 
210 
211 /*
212 -- ************************************************************************
213 -- NB. FOR DEBUG ONLY [SYNCHRONOUS]:
214 -- Return a count of number of currently open (via memOpen) memory objects.
215 -- Can be used to help detect objects left open erroneously.
216 -- ************************************************************************
217 */
218 #ifndef NDEBUG
219 U32BIT memNumOpen( void* context );
220 #endif
221 
222 
223 /*
224 -- SEQUENTIAL ('FILE TYPE') MEMORY ACCESS FUNCTIONS:
225 --
226 -- NOTES:
227 -- memOpen does NOT NEED to be called before using these functions but
228 -- they may be nested between memOpen/Close calls if required.
229 --
230 -- Only memSeqOpen requires a context to be passed (if supported). Memory
231 -- managers that do support a context must store the context value via the
232 -- MemSeqRef pointer which is passed to all other memSeq*** functions (nb. this
233 -- is because asynchronous clients using these calls will not have access to
234 -- the context value)
235 --
236 -- It is legal for a memory sequence cursor to incremented or set to the
237 -- position _immediately_ after the last byte of the sequential memory
238 -- area (ie. an error should not be generated in this case). However, it
239 -- is illegal (should generate an error) if an attempt is made to read or
240 -- write at this cursor position.
241 --
242 */
243 
244 
245 /* -- SYNCHRONOUS ONLY FUNCTIONS */
246 
247 /*
248 -- Open all or part of a memory area for sequential ('file type') access
249 -- [SYNCHRONOUS]
250 --
251 -- Offset and length specify which part of the memory area is being
252 -- accessed sequentially. They must always be set appropriately even if access
253 -- to the whole area is required (note - this should make end of data (EOF)
254 -- detection easier to implement in the memory manager).
255 --
256 -- Different parts of a single memory area can be concurrently opened if
257 -- required (note - if they overlap, then behaviour if writing asynchronously
258 -- will be unpredictable !).
259 --
260 -- The asyncAccess flag indicates whether subsequent read/write access to this
261 -- area (via the memSeq* functions) will be asynchronous or synchronous. This
262 -- holds true until the subsequent memSeqClose for this memory area (or part).
263 --
264 -- If the number of memory areas (or parts) opened concurrently for sequential
265 -- access reaches the memory manager limit (minimum value memSeqOpenMin passed
266 -- in at memStart), return error code: MEM_ERR_SEQ_OPEN_LIMIT
267 --
268 */
269 E_DsmMemErr memSeqOpen( void* context,
270  MemHandle memArea, U32BIT offset, U32BIT length, BOOLEAN asyncAccess,
271  MemSeqRef *memAreaRef );
272 
273 
274 /*
275 -- Clone/copy an open sequential memory area reference (including current cursor
276 -- position) [SYNCHRONOUS]
277 --
278 -- Allocates, opens and returns another sequential memory area (MemSeqRef value)
279 --
280 -- NB. Context can be determined from memAreaRefOrig (if needed).
281 --
282 -- If the number of memory areas (or parts) opened concurrently for sequential
283 -- access reaches the memory manager limit (minimum value memSeqOpenMin passed
284 -- in at memStart), return error code: MEM_ERR_SEQ_OPEN_LIMIT
285 --
286 */
287 E_DsmMemErr memSeqOpenClone(
288  MemSeqRef memAreaRefOrig, MemSeqRef *memAreaRefClone );
289 
290 
291 /*
292 -- Close a memory area for sequential ('file type') access [SYNCHRONOUS]
293 --
294 -- NB. Context can be determined from memAreaRef (if needed).
295 --
296 */
297 void memSeqClose( MemSeqRef memAreaRef );
298 
299 
300 /*
301 -- Get a _real_ memory pointer for the current 'cursor' position and indicate
302 -- the number of contiguous bytes of memory directly accessible from this
303 -- pointer (within this memSeq area). Advance 'cursor' by numBytesContig
304 -- [SYNCHRONOUS]
305 --
306 -- Once called, the cursor should either end up pointing to the start of the
307 -- next block (in block based memory managers) or the end of the memSeq area
308 -- (in block based or contiguous memory managers). In either case the
309 -- function can then be called again to access the next block or determine
310 -- if the end of the memSeq area has been reached. If the 'cursor' is at the
311 -- end of the memSeq area when this function is called then memPtr is returned
312 -- as Null and numContigBytes set to 0.
313 --
314 -- NB. This must be used VERY CAREFULLY since directly accessing beyond the
315 -- supplied numContigBytes is likely to cause a fatal error (especially with
316 -- block based memory managers).
317 --
318 */
319 void memSeqAccessContig(
320  MemSeqRef memAreaRef, U8BIT* *memPtr, U32BIT *numContigBytes );
321 
322 void memSeqAccessCurrent(
323  MemSeqRef memAreaRef, U8BIT* *memPtr, U32BIT *numContigBytes );
324 
325 /*
326 -- ************************************************************************
327 -- NB. FOR DEBUG ONLY [SYNCHRONOUS]:
328 -- Return a count of number of currently open (via memSeqOpen or
329 -- meSeqOpenClone) memory sequences
330 -- Can be used to help detect MemSeqRef areas left open erroneously.
331 -- ************************************************************************
332 */
333 #ifndef NDEBUG
334 U32BIT memSeqNumOpen( void* context );
335 #endif
336 
337 
338 
339 /* -- SYNCHRONOUS/ASYNCHRONOUS FUNCTIONS */
340 
341 /*
342 -- Check if a MemSeqRef is valid [SYNCHRONOUS/ASYNCHRONOUS]
343 */
344 void memSeqValidate( MemSeqRef memAreaRef, BOOLEAN *valid );
345 
346 
347 /*
348 -- Get size of a sequential memory area [SYNCHRONOUS/ASYNCHRONOUS]
349 --
350 -- NB. The size returned should be the exact number of bytes supplied as the
351 -- length parameter at memSeqOpen.
352 --
353 */
354 void memSeqSize( MemSeqRef memAreaRef, U32BIT *size );
355 
356 
357 /*
358 -- Read single byte from current 'cursor' position in managed memory,
359 -- increment cursor [SYNCHRONOUS/ASYNCHRONOUS]
360 --
361 -- If call attempts to read past end of the sequential memory area,
362 -- return error code: MEM_ERR_SEQ_END_OF_DATA
363 --
364 */
365 E_DsmMemErr memSeqReadByte( MemSeqRef src, U8BIT *byte );
366 
367 
368 /*
369 -- Put single byte to current 'cursor' position in managed memory,
370 -- increment cursor [SYNCHRONOUS/ASYNCHRONOUS]
371 --
372 -- If call attempts to write past end of the sequential memory area,
373 -- return error code: MEM_ERR_SEQ_END_OF_DATA
374 --
375 */
376 E_DsmMemErr memSeqWriteByte( U8BIT byte, MemSeqRef dest );
377 
378 
379 /*
380 -- Read numBytes into contiguous memory (starting at current 'cursor' position
381 -- in managed memory), increment 'cursor' position by numBytes
382 -- [SYNCHRONOUS/ASYNCHRONOUS]
383 --
384 -- If call attempts to read past end of the sequential memory area,
385 -- read as many bytes as possible, store the number actually read in
386 -- numBytesActual and return error code: MEM_ERR_SEQ_END_OF_DATA
387 --
388 */
389 E_DsmMemErr memSeqRead(
390  MemSeqRef src, U8BIT *dest, U32BIT numBytes, U32BIT *numBytesActual );
391 
392 
393 /*
394 -- Write numBytes from contiguous memory into managed memory (starting at
395 -- current 'cursor' position in managed memory), increment 'cursor' position by
396 -- numBytes [SYNCHRONOUS/ASYNCHRONOUS]
397 --
398 -- If call attempts to write past end of the sequential memory area,
399 -- write as many bytes as possible, store the number actually written in
400 -- numBytesActual and return error code: MEM_ERR_SEQ_END_OF_DATA
401 --
402 */
403 E_DsmMemErr memSeqWrite(
404  U8BIT *src, MemSeqRef dest, U32BIT numBytes, U32BIT *numBytesActual );
405 
406 
407 /*
408 -- Copy numBytes from one managed memory area into another managed memory area
409 -- (starting at current 'cursor' positions in each), increment 'cursor'
410 -- positions in each by numBytes [SYNCHRONOUS/ASYNCHRONOUS]
411 --
412 -- If call attempts to write/read past the end of either of the sequential
413 -- memory areas, copy as many bytes as possible, store the number actually
414 -- copied in numBytesActual and return error code: MEM_ERR_SEQ_END_OF_DATA
415 --
416 */
417 E_DsmMemErr memSeqCopy(
418  MemSeqRef src, MemSeqRef dest, U32BIT numBytes, U32BIT *numBytesActual );
419 
420 
421 /*
422 -- Compare sequence of bytes (numBytes long) in contiguous memory with bytes
423 -- in managed memory (starting at current 'cursor' position), do not change
424 -- 'cursor' position [SYNCHRONOUS/ASYNCHRONOUS]
425 --
426 -- If call attempts to compare bytes past the end of the sequential
427 -- memory area, return error code: MEM_ERR_SEQ_END_OF_DATA
428 --
429 */
430 E_DsmMemErr memSeqCompContig(
431  U8BIT* contig, MemSeqRef memAreaRef, U32BIT numBytes, BOOLEAN *equal );
432 
433 
434 /*
435 -- Compare sequence of bytes (numBytes long) in one managed memory area with
436 -- bytes in another managed memory area (starting at current 'cursor' positions
437 -- in each), do not change 'cursor' positions for either memory area
438 -- [SYNCHRONOUS/ASYNCHRONOUS]
439 --
440 -- If call attempts to compare bytes past the end of either of the sequential
441 -- memory areas, return error code: MEM_ERR_SEQ_END_OF_DATA
442 --
443 */
444 E_DsmMemErr memSeqCompMgd(
445  MemSeqRef memAreaRef1, MemSeqRef memAreaRef2, U32BIT numBytes,
446  BOOLEAN *equal );
447 
448 
449 /*
450 -- Set sequential access 'cursor' position relative to current position
451 -- [SYNCHRONOUS/ASYNCHRONOUS]
452 --
453 -- If call attempts to set cursor past the end of the sequential memory area,
454 -- return error code: MEM_ERR_SEQ_END_OF_DATA
455 --
456 */
457 E_DsmMemErr memSeqSetPosRel( MemSeqRef memAreaRef, S32BIT position );
458 
459 
460 /*
461 -- Set absolute sequential access 'cursor' position [SYNCHRONOUS/ASYNCHRONOUS]
462 --
463 -- If call attempts to set cursor past the end of the sequential memory area,
464 -- return error code: MEM_ERR_SEQ_END_OF_DATA
465 --
466 */
467 E_DsmMemErr memSeqSetPosAbs( MemSeqRef memAreaRef, U32BIT position );
468 
469 
470 /*
471 -- Read sequential access 'cursor' position [SYNCHRONOUS/ASYNCHRONOUS]
472 --
473 -- Value returned in 'position' is the offset from the start of the memory area
474 -- to the next byte to be read. If the current position has passed the end of
475 -- the memory area, then the position returned is equal to the memory area size.
476 -- The value returned therefore ranges from 0 to (memory area size).
477 */
478 void memSeqReadPos( MemSeqRef memAreaRef, U32BIT *position );
479 
480 
481 /*----------------------------------------------------------------------------*/
482 #endif /* _CLDSMMEMMGRAPI_H_ */
483 
Definition: cldsmcc.h:681
System Wide Global Technical Data Type Definitions.