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
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#ifndef _PO_INCLUDED
#define _PO_INCLUDED
#include <fstream>
#include <rtl/string.hxx>
#include <boost/noncopyable.hpp>
class PoOfstream;
class PoIfstream;
class GenPoEntry;
/** Interface to use po entries in localization
PoEntry based on GenPoEntry class which stores attributes
of general po entry(see po.cxx). It makes easy to get/set
all information needed to localize one english(US) string.
It contains some basic checkings and some string
transformations between po string and string used by
localization tools.
*/
class PoEntry
{
private:
GenPoEntry* m_pGenPo;
bool m_bIsInitialized;
public:
friend class PoOfstream;
friend class PoIfstream;
enum TYPE { TTEXT, TQUICKHELPTEXT, TTITLE };
enum Exception { NOSOURCFILE, NORESTYPE, NOGROUPID, NOSTRING, WRONGHELPTEXT };
PoEntry();
PoEntry( const OString& rSourceFile, const OString& rResType, const OString& rGroupId,
const OString& rLocalId, const OString& rHelpText, const OString& rText,
const TYPE eType = TTEXT );
~PoEntry();
PoEntry( const PoEntry& rPo );
PoEntry& operator=( const PoEntry& rPo );
OString getSourceFile() const;
OString getGroupId() const;
OString getLocalId() const;
OString getResourceType() const;
TYPE getType() const;
OString getMsgId() const;
OString getMsgStr() const;
bool isFuzzy() const;
OString getKeyId() const;
void setMsgId(const OString& rMsgId);
void setMsgStr(const OString& rMsgStr);
void setFuzzy(const bool bFuzzy);
static bool IsInSameComp(const PoEntry& rPo1,const PoEntry& rPo2);
};
/** Interface to work with header of po/pot files
This class stores information which is in header of
a po file. It's main function to generate header to
template po files(pot).
*/
class PoHeader: private boost::noncopyable
{
private:
GenPoEntry* m_pGenPo;
bool m_bIsInitialized;
public:
friend class PoOfstream;
friend class PoIfstream;
PoHeader( const OString& rExtSrc );
~PoHeader();
};
/// Interface to write po entry to files as output streams
class PoOfstream: private boost::noncopyable
{
private:
std::ofstream m_aOutPut;
bool m_bIsAfterHeader;
public:
enum OpenMode { TRUNC, APP };
PoOfstream();
PoOfstream(const OString& rFileName, OpenMode aMode = TRUNC );
~PoOfstream();
bool isOpen() const { return m_aOutPut.is_open(); }
void open(const OString& rFileName, OpenMode aMode = TRUNC );
void close();
void writeHeader(const PoHeader& rHeader);
void writeEntry(const PoEntry& rPo);
};
/// Interface to read po entry from files as input streams
class PoIfstream: private boost::noncopyable
{
private:
std::ifstream m_aInPut;
bool m_bEof;
public:
enum Exception { INVALIDENTRY };
PoIfstream();
PoIfstream( const OString& rFileName );
~PoIfstream();
bool isOpen() const { return m_aInPut.is_open(); }
bool eof() const { return m_bEof; }
void open(const OString& rFileName);
void close();
void readEntry(PoEntry& rPo);
};
#endif // _PO_INCLUDED
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|