~s-cecilio/lenmus/v5.3

« back to all changes in this revision

Viewing changes to src/html/BookData.cpp

  • Committer: cecilios
  • Date: 2007-05-19 11:39:03 UTC
  • Revision ID: svn-v4:2587a929-2f0e-0410-ae78-fe6f687d5efe:trunk:236

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//--------------------------------------------------------------------------------------
 
2
//    LenMus Phonascus: The teacher of music
 
3
//    Copyright (c) 2002-2007 Cecilio Salmeron
 
4
//
 
5
//    This file was initially is based on file helpdata.h from wxWidgets 2.6.3 project
 
6
//    although now it must be something totally different!!
 
7
//    wxWidgets licence is compatible with GNU GPL.
 
8
//    Author:      Harm van der Heijden and Vaclav Slavik
 
9
//    Copyright (c) Harm van der Heijden and Vaclav Slavik
 
10
// 
 
11
//    Modified by:
 
12
//        Cecilio Salmeron
 
13
//
 
14
//    This program is free software; you can redistribute it and/or modify it under the 
 
15
//    terms of the GNU General Public License as published by the Free Software Foundation;
 
16
//    either version 2 of the License, or (at your option) any later version.
 
17
//
 
18
//    This program is distributed in the hope that it will be useful, but WITHOUT ANY 
 
19
//    WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
 
20
//    PARTICULAR PURPOSE.  See the GNU General Public License for more details.
 
21
//
 
22
//    You should have received a copy of the GNU General Public License along with this 
 
23
//    program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, 
 
24
//    Fifth Floor, Boston, MA  02110-1301, USA.
 
25
//
 
26
//    For any comment, suggestion or feature request, please contact the manager of 
 
27
//    the project at cecilios@users.sourceforge.net
 
28
//
 
29
//-------------------------------------------------------------------------------------
 
30
 
 
31
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 
32
#pragma implementation "BookData.h"
 
33
#endif
 
34
 
 
35
// For compilers that support precompilation, includes "wx.h".
 
36
#include "wx/wxprec.h"
 
37
 
 
38
#ifdef __BORLANDC__
 
39
#pragma hdrstop
 
40
#endif
 
41
 
 
42
#include "wx/defs.h"
 
43
#include "wx/zipstrm.h"
 
44
 
 
45
#include "BookData.h"
 
46
 
 
47
// access to paths. Needed only for ByPass code
 
48
#include "../globals/Paths.h"
 
49
extern lmPaths* g_pPaths;
 
50
 
 
51
#ifdef _MBCS
 
52
    //in Win95/98/Me release we need to change from utf-8 to local encoding
 
53
    // include TheApp to have access to locale info
 
54
    #include "..\app\TheApp.h"
 
55
#endif
 
56
 
 
57
 
 
58
// BookData object stores and manages all book indexes.
 
59
// Html pages are not processed. When a page display is requested, the page is
 
60
// directtly loaded by the wxHtmlWindowd, LoadPage() method.
 
61
 
 
62
 
 
63
 
 
64
 
 
65
static int wxHtmlHelpIndexCompareFunc(lmBookIndexItem **a, lmBookIndexItem **b)
 
66
{
 
67
    lmBookIndexItem *ia = *a;
 
68
    lmBookIndexItem *ib = *b;
 
69
 
 
70
    if (ia == NULL)
 
71
        return -1;
 
72
    if (ib == NULL)
 
73
        return 1;
 
74
 
 
75
    if (ia->parent == ib->parent)
 
76
    {
 
77
        return ia->title.CmpNoCase(ib->title);
 
78
    }
 
79
    else if (ia->level == ib->level)
 
80
    {
 
81
        return wxHtmlHelpIndexCompareFunc(&ia->parent, &ib->parent);
 
82
    }
 
83
    else
 
84
    {
 
85
        lmBookIndexItem *ia2 = ia;
 
86
        lmBookIndexItem *ib2 = ib;
 
87
 
 
88
        while (ia2->level > ib2->level)
 
89
        {
 
90
            ia2 = ia2->parent;
 
91
        }
 
92
        while (ib2->level > ia2->level)
 
93
        {
 
94
            ib2 = ib2->parent;
 
95
        }
 
96
 
 
97
        wxASSERT(ia2);
 
98
        wxASSERT(ib2);
 
99
        int res = wxHtmlHelpIndexCompareFunc(&ia2, &ib2);
 
100
        if (res != 0)
 
101
            return res;
 
102
        else if (ia->level > ib->level)
 
103
            return 1;
 
104
        else
 
105
            return -1;
 
106
    }
 
107
}
 
108
 
 
109
 
 
110
//-----------------------------------------------------------------------------
 
111
// lmBookRecord
 
112
//-----------------------------------------------------------------------------
 
113
 
 
114
lmBookRecord::lmBookRecord(const wxString& bookfile, const wxString& basepath,
 
115
                     const wxString& title, const wxString& start)
 
116
{
 
117
    m_sBookFile = bookfile;
 
118
    m_sBasePath = basepath;
 
119
    m_sTitle = title;
 
120
    m_sCoverPage = start;
 
121
    // for debugging, give the contents index obvious default values
 
122
    m_ContentsStart = m_ContentsEnd = -1;
 
123
}
 
124
 
 
125
lmBookRecord::~lmBookRecord()
 
126
{
 
127
}
 
128
 
 
129
wxString lmBookRecord::GetFullPath(const wxString &page) const
 
130
{
 
131
    // returns full filename of page (which is part of the book),
 
132
    // i.e. with book's basePath prepended. If page is already absolute
 
133
    // path, basePath is _not_ prepended.
 
134
 
 
135
    if (wxIsAbsolutePath(page))
 
136
        return page;
 
137
    else
 
138
        return m_sBasePath + page;
 
139
}
 
140
 
 
141
//-----------------------------------------------------------------------------
 
142
// lmBookIndexItem
 
143
//-----------------------------------------------------------------------------
 
144
 
 
145
wxString lmBookIndexItem::GetIndentedName() const
 
146
{
 
147
    wxString s;
 
148
    for (int i = 1; i < level; i++)
 
149
        s << _T("   ");
 
150
    s << title;
 
151
    return s;
 
152
}
 
153
 
 
154
 
 
155
//-----------------------------------------------------------------------------
 
156
// lmBookData
 
157
//-----------------------------------------------------------------------------
 
158
 
 
159
IMPLEMENT_DYNAMIC_CLASS(lmBookData, wxObject)
 
160
 
 
161
lmBookData::lmBookData()
 
162
{
 
163
    m_pParser = new lmXmlParser();
 
164
}
 
165
 
 
166
lmBookData::~lmBookData()
 
167
{
 
168
    delete m_pParser;
 
169
    int i;
 
170
    for(i = m_bookRecords.GetCount(); i > 0; i--) {
 
171
        delete m_bookRecords[i-1];
 
172
        m_bookRecords.RemoveAt(i-1);
 
173
    }
 
174
    for (i = m_index.GetCount(); i > 0; i--) {
 
175
        delete m_index[i-1];
 
176
        m_index.RemoveAt(i-1);
 
177
    }
 
178
    for(i = m_contents.GetCount(); i > 0; i--) {
 
179
        delete m_contents[i-1];
 
180
        m_contents.RemoveAt(i-1);
 
181
    }
 
182
    for(i = m_pagelist.GetCount(); i > 0; i--) {
 
183
        delete m_pagelist[i-1];
 
184
        m_pagelist.RemoveAt(i-1);
 
185
    }
 
186
 
 
187
}
 
188
 
 
189
void lmBookData::SetTempDir(const wxString& path)
 
190
{
 
191
    if (path.empty())
 
192
        m_tempPath = path;
 
193
    else
 
194
    {
 
195
        if (wxIsAbsolutePath(path)) m_tempPath = path;
 
196
        else m_tempPath = wxGetCwd() + _T("/") + path;
 
197
 
 
198
        if (m_tempPath[m_tempPath.Length() - 1] != _T('/'))
 
199
            m_tempPath << _T('/');
 
200
    }
 
201
}
 
202
 
 
203
bool lmBookData::AddBook(const wxFileName& oFilename)
 
204
{
 
205
    //Reads a book (either a .lmb or .toc file) and loads its content
 
206
    //Returns true if success.
 
207
 
 
208
   if (oFilename.GetExt() == _T("lmb")) {
 
209
        //add html page names to the pagelist table
 
210
        AddBookPagesToList(oFilename);
 
211
    }
 
212
 
 
213
    // Process the TOC file (.toc)
 
214
    lmBookRecord* pBookr = ProcessTOCFile(oFilename);
 
215
    if (!pBookr) {
 
216
        return false;       //error
 
217
    }
 
218
 
 
219
    // process an optional index file
 
220
    wxFileName* pFN = new wxFileName(oFilename);
 
221
    pFN->SetExt(_T("idx"));
 
222
    bool fSuccess = true;
 
223
    if (pFN->FileExists())
 
224
        fSuccess = ProcessIndexFile(*pFN, pBookr);
 
225
 
 
226
    delete pFN;
 
227
    return fSuccess;
 
228
}
 
229
 
 
230
bool lmBookData::AddBookPagesToList(const wxFileName& oFilename)
 
231
{
 
232
    // Returns true if error.
 
233
 
 
234
    // open the zip file
 
235
    wxString sBookPath = oFilename.GetFullPath();
 
236
    wxFFileInputStream in(sBookPath);
 
237
    wxZipInputStream zip(in);
 
238
    if (!zip.IsOk()) {
 
239
        wxLogMessage(_T("Loading eBook. Error: can not open file '%s'."), sBookPath);
 
240
        return true;   //error
 
241
    }
 
242
 
 
243
    // loop to get all files
 
244
    wxZipEntry* pEntry = zip.GetNextEntry();
 
245
    while (pEntry) 
 
246
    {
 
247
        //get its name
 
248
        wxString sPageName = pEntry->GetName();
 
249
        if (sPageName.Find(_T(".htm")) != wxNOT_FOUND) {
 
250
            //add entry to pagelist
 
251
            //wxLogMessage(_T("[lmBookData::AddBookPagesToList] Adding page '%s'"), sPageName);
 
252
            lmPageIndexItem *pItem = new lmPageIndexItem();
 
253
            pItem->page = sPageName;
 
254
            pItem->book = sBookPath;
 
255
            m_pagelist.Add(pItem);
 
256
        }
 
257
        delete pEntry;      //we have ownership of entry object
 
258
        pEntry = zip.GetNextEntry();
 
259
    }
 
260
 
 
261
    return false;   //no error
 
262
 
 
263
}
 
264
 
 
265
bool lmBookData::ProcessIndexFile(const wxFileName& oFilename, lmBookRecord* pBookr)
 
266
{
 
267
    // Returns true if success.
 
268
 
 
269
 
 
270
    wxLogMessage(_T("[lmBookData::ProcessIndexFile] Processing file %s"),
 
271
            oFilename.GetFullPath() );
 
272
 
 
273
    wxString sTitle = wxEmptyString,
 
274
             sDefaultPage = wxEmptyString,
 
275
             sContentsFile = wxEmptyString,
 
276
             sIndexFile = wxEmptyString;
 
277
 
 
278
    // load the XML file as tree of nodes
 
279
    wxXmlDocument xdoc;
 
280
    if (!xdoc.Load(oFilename.GetFullPath()) ) {
 
281
        wxLogMessage(_T("Loading eBook. Error parsing index file %s"),
 
282
            oFilename.GetFullPath() );
 
283
        return false;   //error
 
284
    }
 
285
 
 
286
    //Verify type of document. Must be <lmBookIndex>
 
287
    wxXmlNode *pNode = xdoc.GetRoot();
 
288
    wxString sTag = _T("lmBookIndex");
 
289
    wxString sElement = pNode->GetName();
 
290
    if (sElement != sTag) {
 
291
        wxLogMessage(_T("Loading eBook. Error: First tag is not <%s> but <%s>"),
 
292
            sTag, sElement);
 
293
        return false;   //error
 
294
    }
 
295
    
 
296
    //process children nodes: <entry>
 
297
    pNode = m_pParser->GetFirstChild(pNode);
 
298
    wxXmlNode* pElement = pNode;
 
299
    sElement = pElement->GetName();
 
300
    sTag = _T("entry");
 
301
    if (sElement != sTag) {
 
302
        wxLogMessage(_T("Loading eBook. Error: Expected tag <%s> but found <%s>"),
 
303
            sTag, sElement);
 
304
        return false;   //error
 
305
    }
 
306
    ProcessIndexEntries(pElement, pBookr);
 
307
 
 
308
    // Sort index table
 
309
    if (!m_index.empty()) {
 
310
        m_index.Sort(wxHtmlHelpIndexCompareFunc);
 
311
    }
 
312
 
 
313
    return true;
 
314
}
 
315
 
 
316
 
 
317
void lmBookData::ProcessIndexEntries(wxXmlNode* pNode, lmBookRecord *pBookr)
 
318
{
 
319
    // Parse the index entries and adds its data to the m_index array
 
320
    // pNode points to <entry> node
 
321
 
 
322
    //get first index entry
 
323
    wxXmlNode* pElement = pNode;
 
324
    wxString sTag = _T("entry");
 
325
    while (pElement) {
 
326
        if (sTag == pElement->GetName()) {
 
327
            lmBookIndexItem *pItem = new lmBookIndexItem();
 
328
            pItem->parent = NULL;
 
329
            pItem->level = 1;               //todo
 
330
            pItem->id = m_pParser->GetAttribute(pElement, _T("id"));
 
331
            pItem->page = m_pParser->GetAttribute(pElement, _T("page"));
 
332
            pItem->title = m_pParser->GetText(pElement);
 
333
            pItem->titlenum = wxEmptyString;
 
334
            pItem->image = wxEmptyString;
 
335
            pItem->pBookRecord = pBookr;
 
336
            m_index.Add(pItem);
 
337
        }
 
338
 
 
339
        // Find next entry
 
340
        pNode = m_pParser->GetNextSibling(pNode);
 
341
        pElement = pNode;
 
342
    }
 
343
 
 
344
}
 
345
 
 
346
lmBookRecord* lmBookData::ProcessTOCFile(const wxFileName& oFilename)
 
347
{
 
348
    // Returns ptr to created book record if success, NULL if failure
 
349
 
 
350
    //wxLogMessage(_T("[lmBookData::ProcessTOCFile] Processing file %s"),
 
351
    //             oFilename.GetFullPath());
 
352
 
 
353
    wxString sTitle = wxEmptyString,
 
354
             sPage = wxEmptyString,
 
355
             sContents = wxEmptyString,
 
356
             sIndex = wxEmptyString;
 
357
 
 
358
 
 
359
    // wxXmlDocument::Load(filename) uses a wxTextStreamFile and it doesn't support
 
360
    // virtual files. So, when using LMB files we have to allocate
 
361
    // a wxZipTextStream and pass it to wxXmlDocument::Load(stream)
 
362
    wxXmlDocument xdoc;
 
363
    bool fOK;
 
364
    wxString sFullName, sFileName, sPath, sNameExt;
 
365
    bool fLmbFile = false;
 
366
    if (oFilename.GetExt() == _T("toc"))
 
367
    {
 
368
        sFullName = oFilename.GetFullPath();
 
369
        sFileName = oFilename.GetName();
 
370
        sPath = oFilename.GetPath(wxPATH_GET_VOLUME | wxPATH_GET_SEPARATOR , wxPATH_NATIVE);
 
371
        fOK = xdoc.Load(sFullName);
 
372
    }
 
373
    else if (oFilename.GetExt() == _T("lmb"))
 
374
    {
 
375
        //lenmus compressed book (zip file)
 
376
        sFileName = oFilename.GetName();
 
377
        sPath = oFilename.GetFullPath() + _T("#zip:");
 
378
        sNameExt = sFileName + _T(".toc");
 
379
        sFullName = sPath + sNameExt;
 
380
 
 
381
        // convert the local name we are looking for into the zip internal format
 
382
        wxString sInternalName = wxZipEntry::GetInternalName( sNameExt );
 
383
 
 
384
        // open the zip
 
385
        wxFFileInputStream in( oFilename.GetFullPath() );
 
386
        wxZipInputStream zip(in);
 
387
        if (!zip.IsOk()) {
 
388
            wxLogMessage(_T("Loading eBook. Error: TOC file '%s' not found."), oFilename.GetFullPath());
 
389
            return (lmBookRecord*) NULL;   //error
 
390
        }
 
391
 
 
392
        // call GetNextEntry() until the required internal name is found
 
393
        wxZipEntry* pEntry = (wxZipEntry*)NULL;
 
394
        do {
 
395
            if (pEntry) delete pEntry;      //delete previous entry
 
396
            pEntry = zip.GetNextEntry();    //now we have ownership of object *pEntry
 
397
        }
 
398
        while (pEntry && pEntry->GetInternalName() != sInternalName);
 
399
 
 
400
        if (!pEntry) {
 
401
            wxLogMessage(_T("Loading eBook. Error: TOC file '%s' not found."), sFullName);
 
402
            return (lmBookRecord*) NULL;   //error
 
403
        }
 
404
        zip.OpenEntry(*pEntry);
 
405
        fLmbFile = true;
 
406
        fOK = xdoc.Load(zip);    //asumes utf-8
 
407
        zip.CloseEntry();
 
408
        delete pEntry;
 
409
    }
 
410
    else {
 
411
        wxLogMessage(_T("Loading eBook. Error in TOC file '%s'. Extension is neither LMB nor TOC."), oFilename.GetFullPath());
 
412
        return (lmBookRecord*) NULL;   //error
 
413
    }
 
414
 
 
415
    // load the XML file as tree of nodes
 
416
    if (!fOK)   
 
417
    {
 
418
        wxLogMessage(_T("Loading eBook. Error parsing TOC file ") + sFullName);
 
419
        return (lmBookRecord*) NULL;   //error
 
420
    }
 
421
 
 
422
    //Verify type of document. Must be <lmBookTOC>
 
423
    wxXmlNode *pNode = xdoc.GetRoot();
 
424
    wxString sTag = _T("lmBookTOC");
 
425
    wxString sElement = pNode->GetName();
 
426
    if (sElement != sTag) {
 
427
        wxLogMessage(_T("Loading eBook. Error: First tag is not <%s> but <%s>"),
 
428
            sTag, sElement);
 
429
        return (lmBookRecord*) NULL;   //error
 
430
    }
 
431
    
 
432
    // firts node: title
 
433
    pNode = m_pParser->GetFirstChild(pNode);
 
434
    wxXmlNode* pElement = pNode;
 
435
    sElement = pElement->GetName();
 
436
    sTag = _T("title");
 
437
    if (sElement != sTag) {
 
438
        wxLogMessage(_T("Loading eBook. Error: Expected tag <%s> but found <%s>"),
 
439
            sTag, sElement);
 
440
        return (lmBookRecord*) NULL;   //error
 
441
    }
 
442
    sTitle = m_pParser->GetText(pNode);
 
443
 
 
444
    //change encoding from utf-8 to local encoding if Win95/98/Me release
 
445
    #ifdef _MBCS
 
446
        wxString sLang = wxGetApp().GetLanguageCanonicalName();
 
447
        wxString sCharset;
 
448
        if (sLang == _T("en")) {
 
449
            sCharset = _T("iso-8859-1");
 
450
        }
 
451
        else if (sLang == _T("es")) {
 
452
            sCharset = _T("iso-8859-1");
 
453
        }
 
454
        else if (sLang == _T("fr")) {
 
455
            sCharset = _T("iso-8859-1");
 
456
        }
 
457
        else if (sLang == _T("tr")) {
 
458
            sCharset = _T("iso-8859-9");        //cp-1254
 
459
        }
 
460
        else {
 
461
            wxASSERT(false);
 
462
        }
 
463
        wxCSConv convLocal(sCharset); 
 
464
        wxCSConv conv(_T("utf-8")); 
 
465
        sTitle = wxString(sTitle.wc_str(conv), convLocal);
 
466
    #endif
 
467
 
 
468
    // next node: coverpage
 
469
    pNode = m_pParser->GetNextSibling(pNode);
 
470
    pElement = pNode;
 
471
    sElement = pElement->GetName();
 
472
    sTag = _T("coverpage");
 
473
    if (sElement != sTag) {
 
474
        wxLogMessage(_T("Loading eBook. Error: Expected tag <%s> but found <%s>"),
 
475
            sTag, sElement);
 
476
        return (lmBookRecord*) NULL;   //error
 
477
    }
 
478
    sPage = m_pParser->GetText(pNode);
 
479
 
 
480
    //Create the book record object
 
481
    lmBookRecord *pBookr;
 
482
    pBookr = new lmBookRecord(sFileName, sPath, sTitle, sPage);
 
483
 
 
484
    // creates the book entry in the contents table
 
485
    int nContentStart = m_contents.size();          // save the contents index for later
 
486
    lmBookIndexItem *bookitem = new lmBookIndexItem;
 
487
    bookitem->level = 0;
 
488
    bookitem->id = wxEmptyString;
 
489
    bookitem->page = sPage;
 
490
    bookitem->title = sTitle;
 
491
    bookitem->titlenum = wxEmptyString;
 
492
    bookitem->image = wxEmptyString;
 
493
    bookitem->pBookRecord = pBookr;
 
494
    m_contents.Add(bookitem);
 
495
 
 
496
    //process other children nodes: <entry>
 
497
    pNode = m_pParser->GetNextSibling(pNode);
 
498
    pElement = pNode;
 
499
    sTag = _T("entry");
 
500
    while (pElement) {
 
501
        sElement = pElement->GetName();
 
502
        if (sElement != sTag) {
 
503
            wxLogMessage(_T("Loading eBook. Error: Expected tag <%s> but found <%s>"),
 
504
                sTag, sElement);
 
505
            delete pBookr;
 
506
            return (lmBookRecord*) NULL;   //error
 
507
        }
 
508
        if (!ProcessTOCEntry(pElement, pBookr, 1)) return false;     //error
 
509
 
 
510
        // get next entry
 
511
        pNode = m_pParser->GetNextSibling(pNode);
 
512
        pElement = pNode;
 
513
    }
 
514
 
 
515
    // store the contents range in the book record
 
516
    pBookr->SetContentsRange(nContentStart, m_contents.size());
 
517
 
 
518
    // Add the new book record to the table
 
519
    m_bookRecords.Add(pBookr);
 
520
 
 
521
    return pBookr;        // no error
 
522
 
 
523
}
 
524
 
 
525
bool lmBookData::ProcessTOCEntry(wxXmlNode* pNode, lmBookRecord *pBookr, int nLevel)
 
526
{
 
527
    // Parse one entry. Recursive for sub-entries
 
528
    // Add entry data to the m_contents array
 
529
 
 
530
        //process children nodes
 
531
 
 
532
    wxString sTitle = wxEmptyString,
 
533
             sPage = wxEmptyString,
 
534
             sName = wxEmptyString,
 
535
             sImage = wxEmptyString,
 
536
             sTitlenum = wxEmptyString,
 
537
             sId = wxEmptyString;
 
538
 
 
539
    // Get entry id
 
540
    sId = m_pParser->GetAttribute(pNode, _T("id"));
 
541
 
 
542
 
 
543
    #ifdef _MBCS
 
544
        //in Win95/98/Me release we need to chnage from utf-8 to local encoding
 
545
        wxString sLang = wxGetApp().GetLanguageCanonicalName();
 
546
        wxString sCharset;
 
547
        if (sLang == _T("en")) {
 
548
            sCharset = _T("iso-8859-1");
 
549
        }
 
550
        else if (sLang == _T("es")) {
 
551
            sCharset = _T("iso-8859-1");
 
552
        }
 
553
        else if (sLang == _T("fr")) {
 
554
            sCharset = _T("iso-8859-1");
 
555
        }
 
556
        else if (sLang == _T("tr")) {
 
557
            sCharset = _T("iso-8859-9");        //cp-1254
 
558
        }
 
559
        else {
 
560
            wxASSERT(false);
 
561
        }
 
562
        wxCSConv convLocal(sCharset); 
 
563
    #endif
 
564
 
 
565
 
 
566
    // process children
 
567
    pNode = m_pParser->GetFirstChild(pNode);
 
568
    wxXmlNode* pElement = pNode;
 
569
    bool fTitleImage = false;        //to control that title or image exists
 
570
    wxString sElement;
 
571
    while (pElement)
 
572
    {
 
573
        sElement = pElement->GetName();
 
574
        if (sElement == _T("image")) {
 
575
            sImage = m_pParser->GetText(pElement);
 
576
            fTitleImage = true;
 
577
        }
 
578
        else if (sElement == _T("title")) {
 
579
            sTitle = m_pParser->GetText(pElement);
 
580
            fTitleImage = true;
 
581
            #ifdef _MBCS    //if Win95/98/Me release
 
582
                //change encoding from utf-8 to local encoding 
 
583
                wxCSConv conv(_T("utf-8")); 
 
584
                sTitle = wxString(sTitle.wc_str(conv), convLocal);     //wxConvLocal);
 
585
            #endif
 
586
        }
 
587
        else if (sElement == _T("page")) {
 
588
            sPage = m_pParser->GetText(pElement);
 
589
        }
 
590
        else if (sElement == _T("titlenum")) {
 
591
            sTitlenum = m_pParser->GetText(pElement);
 
592
        }
 
593
        else {
 
594
            break;
 
595
        }
 
596
        pNode = m_pParser->GetNextSibling(pNode);
 
597
        pElement = pNode;
 
598
    }
 
599
    if (!fTitleImage) {
 
600
        wxLogMessage(_T("Loading eBook. Error: Expected tag <title>/<Image> but none of them found."));
 
601
        return false;   //error
 
602
    }
 
603
 
 
604
    // create the entry in the contents table
 
605
    lmBookIndexItem *bookitem = new lmBookIndexItem;
 
606
    bookitem->level = nLevel;
 
607
    bookitem->id = sId;
 
608
    bookitem->page = sPage;
 
609
    bookitem->title = sTitle;
 
610
    bookitem->titlenum = sTitlenum;
 
611
    bookitem->image = sImage;
 
612
    bookitem->pBookRecord = pBookr;
 
613
    m_contents.Add(bookitem);
 
614
 
 
615
    //process sub-entries, if exist
 
616
    nLevel++;
 
617
    wxString sTag = _T("entry");
 
618
    while (pElement)
 
619
    {
 
620
        sElement = pElement->GetName();
 
621
        if (sElement != sTag) {
 
622
            wxLogMessage(_T("Loading eBook. Error: Expected tag <%s> but found <%s>"),
 
623
                sTag, sElement);
 
624
            return false;   //error
 
625
        }
 
626
        if (!ProcessTOCEntry(pElement, pBookr, nLevel)) return false;     //error
 
627
 
 
628
        // get next
 
629
        pNode = m_pParser->GetNextSibling(pNode);
 
630
        pElement = pNode;
 
631
    }
 
632
 
 
633
    return true;        // no error
 
634
 
 
635
}
 
636
 
 
637
 
 
638
wxString lmBookData::FindPageByName(const wxString& x)
 
639
{
 
640
    // Find a page:
 
641
    // - By book filename: i.e. 'SingleExercises.lmb' (returns the cover page)
 
642
    // - By page filename: i.e. 'SingleExercises_ch0.htm'
 
643
    // - By page title: i.e. 'Exercises for aural training'
 
644
    // - By index enty: 
 
645
    //
 
646
    // Returns the url to the page (the full path)
 
647
    //    i.e. 'c:\lenmus\books\en\SingleExercises.lmb#zip:SingleExercises_ch0.htm'
 
648
 
 
649
    int i;
 
650
    wxFileSystem fsys;
 
651
    wxFSFile* pFile;
 
652
 
 
653
    // 1. try to interpret x as a file name (i.e. 'SingleExercises.lmb')
 
654
    if (x.Right(4) == _T(".lmb")) {
 
655
        // Try to open it
 
656
        int nNumBooks = m_bookRecords.GetCount();
 
657
        for (i = 0; i < nNumBooks; i++)
 
658
        {
 
659
            pFile = fsys.OpenFile(m_bookRecords[i]->GetFullPath(x));
 
660
            if (pFile) {
 
661
                wxString url = m_bookRecords[i]->GetFullPath(m_bookRecords[i]->GetCoverPage());
 
662
                delete pFile;
 
663
                return url;
 
664
            }
 
665
        }
 
666
    }
 
667
 
 
668
    // 2. Try to interpret x as the filename of a book page (i.e. 'SingleExercises_0.htm')
 
669
    if (x.Right(4) == _T(".htm")) {
 
670
        // Try to find the book page
 
671
        int nNumEntries = m_pagelist.size();
 
672
        for (i = 0; i < nNumEntries; i++)
 
673
        {
 
674
            if (m_pagelist[i]->page == x)
 
675
                return m_pagelist[i]->GetFullPath();
 
676
        }
 
677
    }
 
678
 
 
679
    // 3. Try to interpret it as a title, and so try find in toc (i.e. 'Exercises for
 
680
    //    aural training'). This is the less secure method as titles can be repeated
 
681
    //    in different books. In these cases this will retutn the first one found
 
682
    int nNumEntries = m_contents.size();
 
683
    for (i = 0; i < nNumEntries; i++)
 
684
    {
 
685
        if (m_contents[i]->title == x)
 
686
            return m_contents[i]->GetFullPath();
 
687
    }
 
688
 
 
689
    // 4. try to find it in index
 
690
    nNumEntries = m_index.size();
 
691
    for (i = 0; i < nNumEntries; i++)
 
692
    {
 
693
        if (m_index[i]->title == x)
 
694
            return m_index[i]->GetFullPath();
 
695
    }
 
696
 
 
697
    wxLogMessage(_T("[lmBookData::FindPageByName] Page '%s' not found."), x);
 
698
    return wxEmptyString;
 
699
}
 
700
 
 
701
wxString lmBookData::FindPageById(int id)
 
702
{
 
703
    //size_t cnt = m_contents.size();
 
704
    //for (size_t i = 0; i < cnt; i++)
 
705
    //{
 
706
    //    if (m_contents[i].id == id)
 
707
    //    {
 
708
    //        return m_contents[i].GetFullPath();
 
709
    //    }
 
710
    //}
 
711
 
 
712
    return wxEmptyString;
 
713
}
 
714
 
 
715
 
 
716
//----------------------------------------------------------------------------------
 
717
// lmSearchStatus functions
 
718
//----------------------------------------------------------------------------------
 
719
 
 
720
lmSearchStatus::lmSearchStatus(lmBookData* data, const wxString& keyword,
 
721
                                       bool case_sensitive, bool whole_words_only,
 
722
                                       const wxString& book)
 
723
{
 
724
    m_Data = data;
 
725
    m_Keyword = keyword;
 
726
    lmBookRecord* bookr = NULL;
 
727
    if (book != wxEmptyString)
 
728
    {
 
729
        // we have to search in a specific book. Find it first
 
730
        int i, cnt = data->m_bookRecords.GetCount();
 
731
        for (i = 0; i < cnt; i++)
 
732
            if (data->m_bookRecords[i]->GetTitle() == book)
 
733
            {
 
734
                bookr = data->m_bookRecords[i];
 
735
                m_CurIndex = bookr->GetContentsStart();
 
736
                m_MaxIndex = bookr->GetContentsEnd();
 
737
                break;
 
738
            }
 
739
        // check; we won't crash if the book doesn't exist, but it's Bad Anyway.
 
740
        wxASSERT(bookr);
 
741
    }
 
742
    if (! bookr)
 
743
    {
 
744
        // no book specified; search all books
 
745
        m_CurIndex = 0;
 
746
        m_MaxIndex = m_Data->m_contents.size();
 
747
    }
 
748
    m_Engine.LookFor(keyword, case_sensitive, whole_words_only);
 
749
    m_Active = (m_CurIndex < m_MaxIndex);
 
750
}
 
751
 
 
752
bool lmSearchStatus::Search()
 
753
{
 
754
    //wxFSFile *file;
 
755
    //int i = m_CurIndex;  // shortcut
 
756
    //bool found = false;
 
757
    //wxString thepage;
 
758
 
 
759
    //if (!m_Active)
 
760
    //{
 
761
    //    // sanity check. Illegal use, but we'll try to prevent a crash anyway
 
762
    //    wxASSERT(m_Active);
 
763
    //    return false;
 
764
    //}
 
765
 
 
766
    //m_Name = wxEmptyString;
 
767
    //m_CurItem = NULL;
 
768
    //thepage = m_Data->m_contents[i].page;
 
769
 
 
770
    //m_Active = (++m_CurIndex < m_MaxIndex);
 
771
    //// check if it is same page with different anchor:
 
772
    //if (!m_LastPage.empty())
 
773
    //{
 
774
    //    const wxChar *p1, *p2;
 
775
    //    for (p1 = thepage.c_str(), p2 = m_LastPage.c_str();
 
776
    //         *p1 != 0 && *p1 != _T('#') && *p1 == *p2; p1++, p2++) {}
 
777
 
 
778
    //    m_LastPage = thepage;
 
779
 
 
780
    //    if (*p1 == 0 || *p1 == _T('#'))
 
781
    //        return false;
 
782
    //}
 
783
    //else m_LastPage = thepage;
 
784
 
 
785
    //wxFileSystem fsys;
 
786
    //file = fsys.OpenFile(m_Data->m_contents[i].pBookRecord->GetFullPath(thepage));
 
787
    //if (file)
 
788
    //{
 
789
    //    if (m_Engine.Scan(*file))
 
790
    //    {
 
791
    //        m_Name = m_Data->m_contents[i].title;
 
792
    //        m_CurItem = &m_Data->m_contents[i];
 
793
    //        found = true;
 
794
    //    }
 
795
    //    delete file;
 
796
    //}
 
797
    //return found;
 
798
    return false;
 
799
}
 
800
 
 
801
 
 
802
 
 
803
 
 
804
 
 
805
 
 
806
 
 
807
 
 
808
//--------------------------------------------------------------------------------
 
809
// lmBookSearchEngine
 
810
//--------------------------------------------------------------------------------
 
811
 
 
812
void lmBookSearchEngine::LookFor(const wxString& keyword, bool case_sensitive, bool whole_words_only)
 
813
{
 
814
    m_CaseSensitive = case_sensitive;
 
815
    m_WholeWords = whole_words_only;
 
816
    m_Keyword = keyword;
 
817
 
 
818
    if (!m_CaseSensitive)
 
819
        m_Keyword.LowerCase();
 
820
}
 
821
 
 
822
 
 
823
static inline bool WHITESPACE(wxChar c)
 
824
{
 
825
    return c == _T(' ') || c == _T('\n') || c == _T('\r') || c == _T('\t');
 
826
}
 
827
 
 
828
bool lmBookSearchEngine::Scan(const wxFSFile& file)
 
829
{
 
830
    //wxASSERT_MSG(!m_Keyword.empty(), wxT("lmBookSearchEngine::LookFor must be called before scanning!"));
 
831
 
 
832
    //int i, j;
 
833
    //int wrd = m_Keyword.Length();
 
834
    //bool found = false;
 
835
    //wxHtmlFilterHTML filter;
 
836
    //wxString tmp = filter.ReadFile(file);
 
837
    //int lng = tmp.length();
 
838
    //const wxChar *buf = tmp.c_str();
 
839
 
 
840
    //if (!m_CaseSensitive)
 
841
    //    tmp.LowerCase();
 
842
 
 
843
    //const wxChar *kwd = m_Keyword.c_str();
 
844
 
 
845
    //if (m_WholeWords)
 
846
    //{
 
847
    //    for (i = 0; i < lng - wrd; i++)
 
848
    //    {
 
849
    //        if (WHITESPACE(buf[i])) continue;
 
850
    //        j = 0;
 
851
    //        while ((j < wrd) && (buf[i + j] == kwd[j])) j++;
 
852
    //        if (j == wrd && WHITESPACE(buf[i + j])) { found = true; break; }
 
853
    //    }
 
854
    //}
 
855
 
 
856
    //else
 
857
    //{
 
858
    //    for (i = 0; i < lng - wrd; i++)
 
859
    //    {
 
860
    //        j = 0;
 
861
    //        while ((j < wrd) && (buf[i + j] == kwd[j])) j++;
 
862
    //        if (j == wrd) { found = true; break; }
 
863
    //    }
 
864
    //}
 
865
 
 
866
    //return found;
 
867
    return false;
 
868
}
 
869