Coverage Report

Created: 2026-03-31 07:04

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