1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-05 17:48:38 +00:00
pdf2htmlEX/src/util.h

193 lines
4.3 KiB
C
Raw Normal View History

2012-08-10 13:30:41 +00:00
/*
* Misc functions
*
*
* by WangLu
* 2012.08.10
*/
#ifndef UTIL_H__
#define UTIL_H__
#include <algorithm>
2012-08-14 13:23:33 +00:00
#include <istream>
2012-08-10 13:30:41 +00:00
#include <ostream>
2012-08-14 13:23:33 +00:00
2012-08-14 18:28:19 +00:00
#include <GfxState.h>
#include <CharTypes.h>
2012-08-10 13:30:41 +00:00
#include <UTF8.h>
#include "Consts.h"
2012-08-14 13:23:33 +00:00
using std::istream;
using std::ostream;
2012-08-14 18:28:19 +00:00
using std::noskipws;
2012-08-15 04:27:41 +00:00
using std::endl;
using std::flush;
2012-08-14 13:23:33 +00:00
2012-08-14 15:35:53 +00:00
// mute gcc warning of unused function
2012-08-14 06:35:55 +00:00
namespace
{
template <class T>
2012-08-14 15:35:53 +00:00
void dummy(){ auto _ = &mapUCS2; }
2012-08-14 06:35:55 +00:00
}
2012-08-10 13:30:41 +00:00
static inline bool _equal(double x, double y) { return std::abs(x-y) < EPS; }
static inline bool _is_positive(double x) { return x > EPS; }
static inline bool _tm_equal(const double * tm1, const double * tm2, int size = 6)
{
for(int i = 0; i < size; ++i)
if(!_equal(tm1[i], tm2[i]))
return false;
return true;
}
/*
* http://en.wikipedia.org/wiki/HTML_decimal_character_rendering
*/
static inline bool isLegalUnicode(Unicode u)
{
/*
if((u == 9) || (u == 10) || (u == 13))
return true;
*/
if(u <= 31)
return false;
if((u >= 127) && (u <= 159))
return false;
if((u >= 0xd800) && (u <= 0xdfff))
return false;
return true;
}
2012-08-10 13:30:41 +00:00
static inline void outputUnicodes(std::ostream & out, const Unicode * u, int uLen)
{
for(int i = 0; i < uLen; ++i)
{
switch(u[i])
{
case '&':
out << "&amp;";
break;
case '\"':
out << "&quot;";
break;
case '\'':
out << "&apos;";
break;
case '<':
out << "&lt;";
break;
case '>':
out << "&gt;";
break;
default:
{
char buf[4];
auto n = mapUTF8(u[i], buf, 4);
out.write(buf, n);
}
}
}
}
2012-08-14 09:13:29 +00:00
static inline bool operator < (const GfxRGB & rgb1, const GfxRGB & rgb2)
{
if(rgb1.r < rgb2.r) return true;
if(rgb1.r > rgb2.r) return false;
if(rgb1.g < rgb2.g) return true;
if(rgb1.g > rgb2.g) return false;
return (rgb1.b < rgb2.b);
}
static inline bool operator == (const GfxRGB & rgb1, const GfxRGB & rgb2)
{
return ((rgb1.r == rgb2.r) && (rgb1.g == rgb2.g) && (rgb1.b == rgb1.b));
}
2012-08-10 13:30:41 +00:00
2012-08-14 09:24:54 +00:00
// we may need more info of a font in the future
class FontInfo
{
public:
long long fn_id;
};
// wrapper of the transform matrix double[6]
// Transform Matrix
class TM
{
public:
TM() {}
TM(const double * m) {memcpy(_, m, sizeof(_));}
bool operator < (const TM & m) const {
2012-08-16 06:30:12 +00:00
// Note that we only care about the first 4 elements
for(int i = 0; i < 4; ++i)
2012-08-14 09:24:54 +00:00
{
if(_[i] < m._[i] - EPS)
return true;
if(_[i] > m._[i] + EPS)
return false;
}
return false;
}
bool operator == (const TM & m) const {
2012-08-16 06:30:12 +00:00
return _tm_equal(_, m._, 4);
2012-08-14 09:24:54 +00:00
}
double _[6];
};
2012-08-15 03:15:33 +00:00
class base64stream
2012-08-14 13:23:33 +00:00
{
2012-08-14 18:28:19 +00:00
public:
2012-08-14 13:23:33 +00:00
base64stream(istream & in) : in(&in) { }
base64stream(istream && in) : in(&in) { }
2012-08-14 18:28:19 +00:00
ostream & dumpto(ostream & out)
2012-08-14 13:48:57 +00:00
{
2012-08-14 18:28:19 +00:00
unsigned char buf[3];
2012-08-15 03:15:33 +00:00
while(in->read((char*)buf, 3))
2012-08-14 18:28:19 +00:00
{
2012-08-15 03:15:33 +00:00
out << base64_encoding[(buf[0] & 0xfc)>>2]
<< base64_encoding[((buf[0] & 0x03)<<4) | ((buf[1] & 0xf0)>>4)]
<< base64_encoding[((buf[1] & 0x0f)<<2) | ((buf[2] & 0xc0)>>6)]
<< base64_encoding[(buf[2] & 0x3f)];
2012-08-14 18:28:19 +00:00
}
2012-08-15 03:15:33 +00:00
auto cnt = in->gcount();
2012-08-14 18:28:19 +00:00
if(cnt > 0)
{
for(int i = cnt; i < 3; ++i)
buf[i] = 0;
2012-08-15 03:15:33 +00:00
out << base64_encoding[(buf[0] & 0xfc)>>2]
<< base64_encoding[((buf[0] & 0x03)<<4) | ((buf[1] & 0xf0)>>4)];
2012-08-14 18:28:19 +00:00
if(cnt > 1)
{
out << base64_encoding[(buf[1] & 0x0f)<<2];
}
else
{
out << '=';
}
2012-08-14 13:48:57 +00:00
out << '=';
2012-08-14 18:28:19 +00:00
}
return out;
2012-08-14 13:48:57 +00:00
}
2012-08-14 18:28:19 +00:00
private:
static constexpr const char * base64_encoding = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
2012-08-15 03:15:33 +00:00
istream * in;
2012-08-14 18:28:19 +00:00
};
2012-08-15 03:15:33 +00:00
static inline ostream & operator << (ostream & out, base64stream & bf) { return bf.dumpto(out); }
static inline ostream & operator << (ostream & out, base64stream && bf) { return bf.dumpto(out); }
2012-08-10 13:30:41 +00:00
#endif //UTIL_H__