Coverage Report

Created: 2026-07-25 07:03

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
72.9M
#define LIBRAW_MSIZE 512
29
30
class DllDef libraw_memmgr
31
{
32
public:
33
37.6k
  libraw_memmgr(unsigned ee) : extra_bytes(ee)
34
37.6k
  {
35
37.6k
    size_t alloc_sz = LIBRAW_MSIZE * sizeof(void *);
36
37.6k
    mems = (void **)::malloc(alloc_sz);
37
37.6k
  if(mems)
38
37.6k
    memset(mems, 0, alloc_sz);
39
37.6k
  }
40
  ~libraw_memmgr()
41
37.6k
  {
42
37.6k
    cleanup();
43
37.6k
  if(mems)
44
37.6k
    ::free(mems);
45
37.6k
  }
46
  void *malloc(size_t sz)
47
6.84k
  {
48
#ifdef LIBRAW_USE_CALLOC_INSTEAD_OF_MALLOC
49
    void *ptr = ::calloc(sz + extra_bytes, 1);
50
#else
51
6.84k
    void *ptr = ::malloc(sz + extra_bytes);
52
6.84k
#endif
53
6.84k
    mem_ptr(ptr);
54
6.84k
    return ptr;
55
6.84k
  }
56
  void *calloc(size_t n, size_t sz)
57
380k
  {
58
380k
    void *ptr = ::calloc(n + (extra_bytes + sz - 1) / (sz ? sz : 1), sz);
59
380k
    mem_ptr(ptr);
60
380k
    return ptr;
61
380k
  }
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
343k
  {
71
343k
    forget_ptr(ptr);
72
343k
    ::free(ptr);
73
343k
  }
74
  void cleanup(void)
75
129k
  {
76
129k
  if (!mems) return;
77
66.4M
    for (int i = 0; i < LIBRAW_MSIZE; i++)
78
66.2M
      if (mems[i])
79
44.2k
      {
80
44.2k
        ::free(mems[i]);
81
44.2k
        mems[i] = NULL;
82
44.2k
      }
83
129k
  }
84
85
private:
86
  void **mems;
87
  unsigned extra_bytes;
88
  void mem_ptr(void *ptr)
89
387k
  {
90
387k
    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
387k
          if (ptr)
100
387k
          {
101
4.81M
              for (int i = 0; i < LIBRAW_MSIZE - 1; i++)
102
4.81M
                  if (!mems[i])
103
387k
                  {
104
387k
                      mems[i] = ptr;
105
#if defined(LIBRAW_USE_OPENMP)
106
          ok = true;
107
          break;
108
#else
109
387k
                      return;
110
387k
#endif
111
387k
                  }
112
10
#ifdef LIBRAW_MEMPOOL_CHECK
113
10
#if !defined(LIBRAW_USE_OPENMP)
114
              /* remember ptr in last mems item to be free'ed at cleanup */
115
10
              if (!mems[LIBRAW_MSIZE - 1])
116
10
                  mems[LIBRAW_MSIZE - 1] = ptr;
117
10
              throw LIBRAW_EXCEPTION_MEMPOOL;
118
387k
#endif
119
387k
#endif
120
387k
          }
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
387k
  }
131
  void forget_ptr(void *ptr)
132
343k
  {
133
343k
  if (!mems) return;
134
#if defined(LIBRAW_USE_OPENMP)
135
#pragma omp critical
136
    {
137
#endif
138
343k
     if (ptr)
139
1.71M
      for (int i = 0; i < LIBRAW_MSIZE; i++)
140
1.71M
        if (mems[i] == ptr)
141
343k
        {
142
343k
          mems[i] = NULL;
143
343k
          break;
144
343k
        }
145
#if defined(LIBRAW_USE_OPENMP)
146
    }
147
#endif
148
343k
  }
149
};
150
151
#endif /* C++ */
152
153
#endif