Coverage Report

Created: 2026-02-04 06:14

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
2.50k
             ) {
38
2.50k
  id = idA;
39
2.50k
  fontType = fontTypeA;
40
#if LOAD_FONTS_FROM_MEM
41
  fontBuf = fontBufA;
42
#else
43
2.50k
  fileName = new GString(fileNameA);
44
2.50k
  deleteFile = deleteFileA;
45
2.50k
#endif
46
2.50k
  refCnt = 0;
47
2.50k
}
48
49
2.50k
SplashFontFile::~SplashFontFile() {
50
#if LOAD_FONTS_FROM_MEM
51
  delete fontBuf;
52
#else
53
2.50k
  if (deleteFile) {
54
2.50k
    unlink(fileName->getCString());
55
2.50k
  }
56
2.50k
  delete fileName;
57
2.50k
#endif
58
2.50k
  delete id;
59
2.50k
}
60
61
2.57k
void SplashFontFile::incRefCnt() {
62
2.57k
#if MULTITHREADED
63
2.57k
  gAtomicIncrement(&refCnt);
64
#else
65
  ++refCnt;
66
#endif
67
2.57k
}
68
69
2.57k
void SplashFontFile::decRefCnt() {
70
2.57k
  GBool done;
71
72
2.57k
#if MULTITHREADED
73
2.57k
  done = gAtomicDecrement(&refCnt) == 0;
74
#else
75
  done = --refCnt == 0;
76
#endif
77
2.57k
  if (done) {
78
2.50k
    delete this;
79
2.50k
  }
80
2.57k
}