ReactOS 0.4.15-dev-7918-g2a2556c
hhpcomp.cpp
Go to the documentation of this file.
1
2// This file is part of hhpcomp, a free HTML Help Project (*.hhp) compiler.
3// Copyright (C) 2015 Benedikt Freisen
4//
5// This library is free software; you can redistribute it and/or
6// modify it under the terms of the GNU Lesser General Public
7// License as published by the Free Software Foundation; either
8// version 2.1 of the License, or (at your option) any later version.
9//
10// This library is distributed in the hope that it will be useful,
11// but WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13// Lesser General Public License for more details.
14//
15// You should have received a copy of the GNU Lesser General Public
16// License along with this library; if not, write to the Free Software
17// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18
19
20#include <iostream>
21#include <string>
22#include <set>
23#include <stdexcept>
24
25#include <sys/stat.h>
26
27#include "hhp_reader.h"
28#include "utils.h"
29
30#if defined(_WIN32)
31 #include <direct.h>
32#else
33 #include <unistd.h>
34#endif
35
36extern "C" {
37#include "chmc/chmc.h"
38#include "chmc/err.h"
39}
40
41extern "C" struct chmcTreeNode *chmc_add_file(struct chmcFile *chm, const char *filename,
43 UInt64 len);
44
45
46using namespace std;
47
48int main(int argc, char** argv)
49{
50 if (argc != 2)
51 {
52 cerr << "Usage: hhpcomp <input.hhp>" << endl;
53 exit(0);
54 }
55
56 string absolute_name = replace_backslashes(real_path(argv[1]));
57 int prefixlen = absolute_name.find_last_of('/');
58 clog << prefixlen << endl;
59 if (chdir(absolute_name.substr(0, prefixlen).c_str()) == -1) // change to the project file's directory
60 {
61 cerr << "chdir: working directory couldn't be changed" << endl;
62 exit(0);
63 }
64 hhp_reader project_file(absolute_name);
65
66 struct chmcFile chm;
67 struct chmcConfig chm_config;
68
69 memset(&chm, 0, sizeof(struct chmcFile));
70 memset(&chm_config, 0, sizeof(struct chmcConfig));
71 chm_config.title = project_file.get_title_string().c_str();
72 chm_config.hhc = project_file.get_contents_file_string().c_str();
73 chm_config.hhk = project_file.get_index_file_string().c_str();
74 chm_config.deftopic = project_file.get_default_topic_string().c_str();
75 chm_config.language = project_file.get_language_code();
76 chm_config.tmpdir = ".";
77
78 int err;
79 err = chmc_init(&chm, replace_backslashes(project_file.get_compiled_file_string()).c_str(), &chm_config);
80 if (err)
81 {
82 cerr << "could not initialize chmc" << endl;
84 }
85
87 it != project_file.get_file_pathes_iterator_end(); ++it)
88 {
89 clog << "File: " << *it << endl;
90 struct stat buf;
91 stat(it->c_str(), &buf);
92 if ((chmc_add_file(&chm, it->c_str(), prefixlen, 1, NULL, buf.st_size)) ? chmcerr_code() : CHMC_NOERR)
93 {
94 cerr << "could not add file: " << *it << endl;
96 }
97 }
98
99 chmc_tree_done(&chm);
100 chmc_term(&chm);
101
102}
static int argc
Definition: ServiceArgs.c:12
basic_ostream< _CharT, _Traits > &_STLP_CALL endl(basic_ostream< _CharT, _Traits > &__os)
Definition: _ostream.h:357
USHORT UInt16
Definition: chm_lib.c:102
BYTE UChar
Definition: chm_lib.c:100
ULONGLONG UInt64
Definition: chm_lib.c:106
void chmc_term(struct chmcFile *chm)
Definition: chmc.c:461
int chmc_tree_done(struct chmcFile *chm)
Definition: chmc.c:728
int chmc_init(struct chmcFile *chm, const char *filename, struct chmcConfig *config)
Definition: chmc.c:133
_Self substr(size_type __pos=0, size_type __n=npos) const
Definition: _string.h:1022
const _CharT * c_str() const
Definition: _string.h:949
size_type find_last_of(const _Self &__s, size_type __pos=npos) const
Definition: _string.h:988
string get_contents_file_string()
Definition: hhp_reader.cpp:229
string get_default_topic_string()
Definition: hhp_reader.cpp:239
string get_compiled_file_string()
Definition: hhp_reader.cpp:249
set< string >::iterator get_file_pathes_iterator_end()
Definition: hhp_reader.cpp:259
set< string >::iterator get_file_pathes_iterator_begin()
Definition: hhp_reader.cpp:254
string get_index_file_string()
Definition: hhp_reader.cpp:234
string get_title_string()
Definition: hhp_reader.cpp:224
unsigned int get_language_code()
Definition: hhp_reader.cpp:244
_Rep_type::iterator iterator
Definition: _set.h:73
#define NULL
Definition: types.h:112
int main()
Definition: test.c:6
GLenum GLuint GLenum GLsizei const GLchar * buf
Definition: glext.h:7751
GLenum GLsizei len
Definition: glext.h:6722
struct chmcTreeNode * chmc_add_file(struct chmcFile *chm, const char *filename, UInt16 prefixlen, int sect_id, UChar *buf, UInt64 len)
Definition: chmc.c:598
const char * filename
Definition: ioapi.h:137
#define cerr
Definition: iostream.cpp:39
#define clog
Definition: iostream.cpp:40
#define EXIT_FAILURE
Definition: jerror.c:33
#define argv
Definition: mplay32.c:18
Definition: features.h:417
#define chdir
Definition: syshdrs.h:69
#define err(...)
#define exit(n)
Definition: config.h:202
#define memset(x, y, z)
Definition: compat.h:39
int chmcerr_code(void)
Definition: err.c:42
#define CHMC_NOERR
Definition: err.h:39
string real_path(const char *path)
Definition: utils.cpp:43
string replace_backslashes(string s)
Definition: utils.cpp:63
const char * hhc
Definition: chmc.h:186
UInt16 language
Definition: chmc.h:189
const char * title
Definition: chmc.h:184
const char * hhk
Definition: chmc.h:187
const char * deftopic
Definition: chmc.h:188
const char * tmpdir
Definition: chmc.h:185
Definition: chmc.h:192
UInt32 sect_id
Definition: chmc.h:169
UInt16 prefixlen
Definition: chmc.h:171
Definition: stat.h:55