Coverage Report

Created: 2026-04-12 06:43

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/xpdf-4.06/splash/SplashFontFile.cc
Line
Count
Source
1
//========================================================================
2
//
3
// SplashFontFile.cc
4
//
5
// Copyright 2003-2013 Glyph & Cog, LLC
6
//
7
//========================================================================
8
9
#include <aconf.h>
10
11
#include <stdio.h>
12
#ifndef _WIN32
13
#  include <unistd.h>
14
#endif
15
#include "gmempp.h"
16
#include "GString.h"
17
#include "SplashFontFile.h"
18
#include "SplashFontFileID.h"
19
20
#ifdef VMS
21
#if (__VMS_VER < 70000000)
22
extern "C" int unlink(char *filename);
23
#endif
24
#endif
25
26
//------------------------------------------------------------------------
27
// SplashFontFile
28
//------------------------------------------------------------------------
29
30
SplashFontFile::SplashFontFile(SplashFontFileID *idA,
31
             SplashFontType fontTypeA,
32
#if LOAD_FONTS_FROM_MEM
33
             GString *fontBufA
34
#else
35
             char *fileNameA, GBool deleteFileA
36
#endif
37
5.33k
             ) {
38
5.33k
  id = idA;
39
5.33k
  fontType = fontTypeA;
40
#if LOAD_FONTS_FROM_MEM
41
  fontBuf = fontBufA;
42
#else
43
5.33k
  fileName = new GString(fileNameA);
44
5.33k
  deleteFile = deleteFileA;
45
5.33k
#endif
46
5.33k
  refCnt = 0;
47
5.33k
}
48
49
5.33k
SplashFontFile::~SplashFontFile() {
50
#if LOAD_FONTS_FROM_MEM
51
  delete fontBuf;
52
#else
53
5.33k
  if (deleteFile) {
54
5.33k
    unlink(fileName->getCString());
55
5.33k
  }
56
5.33k
  delete fileName;
57
5.33k
#endif
58
5.33k
  delete id;
59
5.33k
}
60
61
8.96k
void SplashFontFile::incRefCnt() {
62
8.96k
#if MULTITHREADED
63
8.96k
  gAtomicIncrement(&refCnt);
64
#else
65
  ++refCnt;
66
#endif
67
8.96k
}
68
69
8.96k
void SplashFontFile::decRefCnt() {
70
8.96k
  GBool done;
71
72
8.96k
#if MULTITHREADED
73
8.96k
  done = gAtomicDecrement(&refCnt) == 0;
74
#else
75
  done = --refCnt == 0;
76
#endif
77
8.96k
  if (done) {
78
5.33k
    delete this;
79
5.33k
  }
80
8.96k
}