Coverage Report

Created: 2026-06-14 06:57

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