Coverage Report

Created: 2026-06-07 07:20

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libraw/libraw/libraw_alloc.h
Line
Count
Source
1
/* -*- C++ -*-
2
 * File: libraw_alloc.h
3
 * Copyright 2008-2025 LibRaw LLC (info@libraw.org)
4
 * Created: Sat Mar  22, 2008
5
 *
6
 * LibRaw C++ interface
7
 *
8
LibRaw is free software; you can redistribute it and/or modify
9
it under the terms of the one of two licenses as you choose:
10
11
1. GNU LESSER GENERAL PUBLIC LICENSE version 2.1
12
   (See file LICENSE.LGPL provided in LibRaw distribution archive for details).
13
14
2. COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
15
   (See file LICENSE.CDDL provided in LibRaw distribution archive for details).
16
17
 */
18
19
#ifndef __LIBRAW_ALLOC_H
20
#define __LIBRAW_ALLOC_H
21
22
#include <stdlib.h>
23
#include <string.h>
24
#include "libraw_const.h"
25
26
#ifdef __cplusplus
27
28
57.8M
#define LIBRAW_MSIZE 512
29
30
class DllDef libraw_memmgr
31
{
32
public:
33
29.9k
  libraw_memmgr(unsigned ee) : extra_bytes(ee)
34
29.9k
  {
35
29.9k
    size_t alloc_sz = LIBRAW_MSIZE * sizeof(void *);
36
29.9k
    mems = (void **)::malloc(alloc_sz);
37
29.9k
  if(mems)
38
29.9k
    memset(mems, 0, alloc_sz);
39
29.9k
  }
40
  ~libraw_memmgr()
41
29.9k
  {
42
29.9k
    cleanup();
43
29.9k
  if(mems)
44
29.9k
    ::free(mems);
45
29.9k
  }
46
  void *malloc(size_t sz)
47
6.04k
  {
48
6.04k
#ifdef LIBRAW_USE_CALLOC_INSTEAD_OF_MALLOC
49
6.04k
    void *ptr = ::calloc(sz + extra_bytes, 1);
50
#else
51
    void *ptr = ::malloc(sz + extra_bytes);
52
#endif
53
6.04k
    mem_ptr(ptr);
54
6.04k
    return ptr;
55
6.04k
  }
56
  void *calloc(size_t n, size_t sz)
57
207k
  {
58
207k
    void *ptr = ::calloc(n + (extra_bytes + sz - 1) / (sz ? sz : 1), sz);
59
207k
    mem_ptr(ptr);
60
207k
    return ptr;
61
207k
  }
62
  void *realloc(void *ptr, size_t newsz)
63
0
  {
64
0
    void *ret = ::realloc(ptr, newsz + extra_bytes);
65
0
    forget_ptr(ptr);
66
0
    mem_ptr(ret);
67
0
    return ret;
68
0
  }
69
  void free(void *ptr)
70
179k
  {
71
179k
    forget_ptr(ptr);
72
179k
    ::free(ptr);
73
179k
  }
74
  void cleanup(void)
75
103k
  {
76
103k
  if (!mems) return;
77
53.3M
    for (int i = 0; i < LIBRAW_MSIZE; i++)
78
53.2M
      if (mems[i])
79
34.0k
      {
80
34.0k
        ::free(mems[i]);
81
34.0k
        mems[i] = NULL;
82
34.0k
      }
83
103k
  }
84
85
private:
86
  void **mems;
87
  unsigned extra_bytes;
88
  void mem_ptr(void *ptr)
89
213k
  {
90
213k
    if (!mems) return;
91
#if defined(LIBRAW_USE_OPENMP)
92
      bool ok = false; /* do not return from critical section */
93
#endif
94
95
#if defined(LIBRAW_USE_OPENMP)
96
#pragma omp critical
97
      {
98
#endif
99
213k
          if (ptr)
100
213k
          {
101
3.26M
              for (int i = 0; i < LIBRAW_MSIZE - 1; i++)
102
3.26M
                  if (!mems[i])
103
213k
                  {
104
213k
                      mems[i] = ptr;
105
#if defined(LIBRAW_USE_OPENMP)
106
          ok = true;
107
          break;
108
#else
109
213k
                      return;
110
213k
#endif
111
213k
                  }
112
3
#ifdef LIBRAW_MEMPOOL_CHECK
113
3
#if !defined(LIBRAW_USE_OPENMP)
114
              /* remember ptr in last mems item to be free'ed at cleanup */
115
3
              if (!mems[LIBRAW_MSIZE - 1])
116
3
                  mems[LIBRAW_MSIZE - 1] = ptr;
117
3
              throw LIBRAW_EXCEPTION_MEMPOOL;
118
213k
#endif
119
213k
#endif
120
213k
          }
121
#if defined(LIBRAW_USE_OPENMP)
122
      }
123
      if(!ok)
124
      {
125
          if (!mems[LIBRAW_MSIZE - 1])
126
              mems[LIBRAW_MSIZE - 1] = ptr;
127
          throw LIBRAW_EXCEPTION_MEMPOOL;
128
      }
129
#endif
130
213k
  }
131
  void forget_ptr(void *ptr)
132
179k
  {
133
179k
  if (!mems) return;
134
#if defined(LIBRAW_USE_OPENMP)
135
#pragma omp critical
136
    {
137
#endif
138
179k
     if (ptr)
139
1.16M
      for (int i = 0; i < LIBRAW_MSIZE; i++)
140
1.16M
        if (mems[i] == ptr)
141
179k
        {
142
179k
          mems[i] = NULL;
143
179k
          break;
144
179k
        }
145
#if defined(LIBRAW_USE_OPENMP)
146
    }
147
#endif
148
179k
  }
149
};
150
151
#endif /* C++ */
152
153
#endif