/usr/include/pstoedit/miscutil.h is in libpstoedit-dev 3.62-2+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 | #ifndef miscutil_h
#define miscutil_h
/*
miscutil.h : This file is part of pstoedit
header declaring misc utility functions
Copyright (C) 1998 - 2013 Wolfgang Glunz, wglunz35_AT_pstoedit.net
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef cppcomp_h
#include "cppcomp.h"
#endif
#include I_iostream
#include I_ostream
#include I_istream
#include I_fstream
#include I_string_h
//lint -efile(451,math.h)
#include <math.h>
USESTD
#ifndef assert
#include <assert.h>
#endif
// used to eliminate compiler warnings about unused parameters
inline void unused(const void * const) { }
//lint -esym(522,unused)
#if defined(_WIN32) || defined(__OS2__)
const char directoryDelimiter = '\\';
#else
const char directoryDelimiter = '/';
#endif
// NOTE: The following two dup functions are made inline to solve the problem
// of allocation and deallocation in different .dlls.
// a strdup which uses new instead of malloc
inline char * cppstrndup(const char * const src, const size_t length, const size_t addon = 0 )
{
const size_t lp1 = length+1;
char * const ret = new char[lp1 + addon];
for (unsigned int i = 0 ; i < lp1; i++)
{
ret[i] = src[i];
}
return ret;
}
inline char *cppstrdup(const char * const src, const size_t addon = 0)
{
return cppstrndup(src,strlen(src),addon);
}
// DLLEXPORT char * cppstrdup(const char * src, unsigned int addon = 0);
// DLLEXPORT char * cppstrndup(const char * src, unsigned int length, unsigned int addon = 0);
DLLEXPORT unsigned short hextoint(const char hexchar) ;
// A temporary file, that is automatically removed after usage
class TempFile {
public:
DLLEXPORT TempFile() ;
DLLEXPORT ~TempFile() ;
DLLEXPORT ofstream & asOutput();
DLLEXPORT ifstream & asInput();
private:
void close() ;
char * tempFileName;
ofstream outFileStream;
ifstream inFileStream;
NOCOPYANDASSIGN(TempFile)
};
#ifdef HAVEAUTOPTR
#include <memory>
#else
template <class T>
class auto_ptr {
public:
// something that can be attached to a normal pointer
// but which deletes the object when the Deleter goes
// out of scope. Sort of very simple std::auto_ptr
//
auto_ptr(T* ptr,bool isArray = false) : m_ptr(ptr), m_isArray(isArray) {}
~auto_ptr() { if (m_isArray) delete [] m_ptr; else delete m_ptr; m_ptr=0;}
T* operator->() const { return m_ptr; }
private:
T* m_ptr; //lint !e1725
bool m_isArray;
NOCOPYANDASSIGN(auto_ptr<T>)
// auto_ptr(const auto_ptr<T> &); // no copy ctor please
// const auto_ptr<T>& operator =(const auto_ptr<T> &); // no assignment please
};
#endif
// a very very simple resizing string
// since STL is not yet available on all systems / compilers
class DLLEXPORT RSString {
public:
RSString(const char * arg = 0);
RSString(const char arg );
RSString(const char * arg , const size_t len);
RSString(const RSString & s);
virtual ~RSString();
const char * value() const { return content; }
size_t length() const { return stringlength; }
void copy(const char *src,const size_t len) ;
void copy(const char *src);
bool contains(const RSString & s) const;
const RSString & operator = (const RSString & rs) {
if (&rs != this) {
copy(rs.value(),rs.length());
}
return *this;
}
const RSString & operator = (const char * rs) {
copy(rs,strlen(rs));
return *this;
}
RSString& operator+= (const RSString &rs);
RSString& operator+= (const char * rs);
friend bool operator==(const RSString & ls,const RSString & rs);
friend bool operator!=(const RSString & ls,const RSString & rs);
// bool operator<(const RSString & rs) const
// { return strncmp(content,rs.content) < 0; }
char operator[](const size_t i) const
{ return content[i]; }
friend ostream & operator<<(ostream & out,const RSString &outstring)
{ if (outstring.content) out << outstring.content; return out; }
private:
//
// we need to make the memory allocation/deallocation
// virtual in order to force that these are executed
// always in the same context (either main EXE or the
// loaded DLL)
// Since the plugins are not and MFC extension DLL memory
// allocation and deallocation cannot be mixed across the EXE
// and the DLL. It must be done in a symmetric way - if the memory
// is allocated by the DLL, it must be destroyed there as well.
//
virtual void clearContent();
// tell Flexelint: clearContent does cleanup
//lint -sem(RSString::clearContent,cleanup)
virtual char * newContent(size_t size);
char * content;
size_t allocatedLength;
size_t stringlength; // needed for storing binary strings including \0
};
inline RSString operator+ (const RSString & ls,const RSString &rs)
{ RSString result(ls); result += rs; return result; }
inline bool operator==(const RSString & ls,const RSString & rs)
{ return ( (rs.stringlength == ls.stringlength ) && (strncmp(ls.content,rs.content,ls.stringlength) == 0) ); }
inline bool operator!=(const RSString & ls,const RSString & rs)
{ return !(ls==rs); }
class Argv {
enum { maxargs=1000 };
public:
unsigned int argc;
// #define USE_RSSTRING 1
#ifdef USE_RSSTRING
RSString argv[maxargs];
#else
char * argv[maxargs];
#endif
Argv() : argc(0) { for (unsigned int i = 0; i< (unsigned) maxargs; i++) { argv[i] = 0; } }
~Argv() { clear(); }
void addarg(const char * const arg) {
assert(argc<maxargs); //lint !e1776
if (argc < maxargs) {
#ifdef USE_RSSTRING
argv[argc] = RSString(arg);
#else
argv[argc] = cppstrdup(arg);
#endif
argc++;
}
}
void addarg(const RSString & arg) {
assert(argc<maxargs); //lint !e1776
if (argc < maxargs) {
#ifdef USE_RSSTRING
argv[argc] = arg;
#else
argv[argc] = cppstrdup(arg.value());
#endif
argc++;
}
}
unsigned int parseFromString(const char * const argstring);
void clear() {
#ifdef USE_RSSTRING
#else
for (unsigned int i = 0; i< (unsigned) argc && i< (unsigned) maxargs ; i++) {
delete [] argv[i] ; argv[i]= 0;
}
#endif
argc = 0;
}
NOCOPYANDASSIGN(Argv)
};
DLLEXPORT ostream & operator <<(ostream & out, const Argv & a);
DLLEXPORT bool fileExists (const char * filename);
DLLEXPORT RSString full_qualified_tempnam(const char * pref);
DLLEXPORT void convertBackSlashes(char* string);
//#define BUGGYGPP
#ifndef BUGGYGPP
template <class T>
#else /* BUGGYGPP */
template <class T,class K_Type,class V_Type>
#endif /* BUGGYGPP */
class DLLEXPORT Mapper {
public:
Mapper() : firstEntry(0) {};
virtual ~Mapper() {
while (firstEntry != 0) {
T * nextEntry = firstEntry->nextEntry;
delete firstEntry;
firstEntry=nextEntry;
}
}
public:
#ifndef BUGGYGPP
// define BUGGYGPP if your compiler complains about syntax error here.
// see above
void insert(const typename T::K_Type & key, const typename T::V_Type& value) {
#else /* BUGGYGPP */
void insert(const K_Type & key, const V_Type & value) {
#endif /* BUGGYGPP */
firstEntry = new T(key,value,firstEntry);
}
#ifndef BUGGYGPP
const typename T::V_Type* getValue(const typename T::K_Type & key) {
#else /* BUGGYGPP */
const V_Type* getValue(const K_Type & key) {
#endif /* BUGGYGPP */
T * curEntry = firstEntry;
while (curEntry != 0) {
if (curEntry->key() == key ) {
return &curEntry->value();
}
curEntry=curEntry->nextEntry;
}
return 0;
}
T * firstEntry;
private:
#ifndef BUGGYGPP
NOCOPYANDASSIGN(Mapper<T>)
#else /* BUGGYGPP */
#define COMMA ,
NOCOPYANDASSIGN(Mapper<T COMMA K_Type COMMA V_Type>)
#undef COMMA
#endif /* BUGGYGPP */
};
//lint -esym(1712,KeyValuePair) // no default ctor
template <class K, class V>
class DLLEXPORT KeyValuePair
{
public:
typedef K K_Type;
typedef V V_Type;
KeyValuePair(const K_Type & k,const V_Type & v, KeyValuePair<K,V> * nextE = 0):
key_(k), value_(v), nextEntry(nextE) {}
const K_Type & key() const { return key_;}
const V_Type & value() const { return value_;}
private:
K_Type key_;
V_Type value_;
public:
KeyValuePair<K,V> * nextEntry;
private:
#define COMMA ,
NOCOPYANDASSIGN(KeyValuePair<K COMMA V>)
#undef COMMA
};
typedef KeyValuePair<RSString,RSString> FontMapping ;
#if defined (_MSC_VER)
#pragma warning(disable: 4275)
// non dll-interface class 'Mapper<class KeyValuePair<class RSString,class RSString> >' used as base for dll-interface class 'FontMapper'
// miscutil.h(259) : see declaration of 'FontMapper'
#endif
//lint -esym(1790,Mapper*)
#ifndef BUGGYGPP
class DLLEXPORT FontMapper: public Mapper<FontMapping>
#else /* BUGGYGPP */
class DLLEXPORT FontMapper: public Mapper<FontMapping,RSString,RSString>
#endif /* BUGGYGPP */
{
public:
void readMappingTable(ostream & errstream,const char * filename);
const char * mapFont(const RSString & fontname);
};
#if defined (_MSC_VER)
#pragma warning(default: 4275)
#endif
DLLEXPORT RSString getRegistryValue(ostream& errstream, const char * typekey, const char * key);
DLLEXPORT unsigned long P_GetPathToMyself(const char *name, char * returnbuffer, unsigned long buflen);
DLLEXPORT size_t searchinpath(const char* EnvPath,const char* name, char *returnbuffer,unsigned long buflen);
DLLEXPORT void errorMessage(const char * text); // display an error message (cerr or msgbox)
DLLEXPORT void copy_file(istream& infile,ostream& outfile) ;
DLLEXPORT RSString getOutputFileNameFromPageNumber(const char * const outputFileTemplate, const RSString & pagenumberformatOption, unsigned int pagenumber);
inline float pythagoras(const float x, const float y) { return sqrt( x*x + y*y); }
#endif
|