Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #ifndef HELPLINKER_HXX
21 : #define HELPLINKER_HXX
22 :
23 : #include <helpcompiler/dllapi.h>
24 : #include <libxslt/transform.h>
25 :
26 : #ifdef AIX
27 : # undef _THREAD_SAFE
28 : #endif
29 :
30 : class L10N_DLLPUBLIC IndexerPreProcessor
31 : {
32 : private:
33 : std::string m_aModuleName;
34 : fs::path m_fsIndexBaseDir;
35 : fs::path m_fsCaptionFilesDirName;
36 : fs::path m_fsContentFilesDirName;
37 :
38 : xsltStylesheetPtr m_xsltStylesheetPtrCaption;
39 : xsltStylesheetPtr m_xsltStylesheetPtrContent;
40 :
41 : public:
42 : IndexerPreProcessor( const std::string& aModuleName, const fs::path& fsIndexBaseDir,
43 : const fs::path& idxCaptionStylesheet, const fs::path& idxContentStylesheet );
44 : ~IndexerPreProcessor();
45 :
46 : void processDocument( xmlDocPtr doc, const std::string& EncodedDocPath );
47 : };
48 :
49 : class L10N_DLLPUBLIC HelpLinker
50 : {
51 : public:
52 : void main(std::vector<std::string> &args,
53 : std::string* pExtensionPath = NULL,
54 : std::string* pDestination = NULL,
55 : const OUString* pOfficeHelpPath = NULL )
56 : throw( HelpProcessingException );
57 :
58 0 : HelpLinker()
59 : : bExtensionMode(false)
60 : , m_pIndexerPreProcessor(NULL)
61 : , m_bUseLangRoot(true)
62 0 : , m_bCreateIndex(true)
63 0 : {}
64 0 : ~HelpLinker()
65 0 : {
66 0 : delete m_pIndexerPreProcessor;
67 0 : }
68 :
69 : private:
70 : Stringtable additionalFiles;
71 : HashSet helpFiles;
72 : fs::path sourceRoot;
73 : fs::path compactStylesheet;
74 : fs::path embeddStylesheet;
75 : fs::path idxCaptionStylesheet;
76 : fs::path idxContentStylesheet;
77 : fs::path zipdir;
78 : fs::path outputFile;
79 : std::string extsource;
80 : std::string extdestination;
81 : std::string module;
82 : std::string lang;
83 : std::string extensionPath;
84 : std::string extensionDestination;
85 : bool bExtensionMode;
86 : fs::path indexDirName;
87 : fs::path indexDirParentName;
88 : IndexerPreProcessor* m_pIndexerPreProcessor;
89 : bool m_bUseLangRoot;
90 : bool m_bCreateIndex;
91 : void initIndexerPreProcessor();
92 : void link() throw( HelpProcessingException );
93 : void addBookmark( FILE* pFile_DBHelp, std::string thishid,
94 : const std::string& fileB, const std::string& anchorB,
95 : const std::string& jarfileB, const std::string& titleB );
96 : };
97 :
98 : #endif
99 :
100 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|