Coverage Report

Created: 2026-06-10 06:37

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