libDtSearch: Remove optional code for NO_DBN which is not used on CDE
[oweals/cde.git] / cde / programs / nsgmls / MessageEventHandler.C
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these libraries and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: MessageEventHandler.C /main/1 1996/07/29 16:57:23 cde-hp $ */
24 // Copyright (c) 1994 James Clark
25 // See the file COPYING for copying permission.
26
27 #include "splib.h"
28 #include "MessageEventHandler.h"
29 #include "SgmlParser.h"
30 #include "ParserOptions.h"
31 #ifdef __GNUG__
32 #include "Entity.h"
33 #endif
34
35 #ifdef SP_NAMESPACE
36 namespace SP_NAMESPACE {
37 #endif
38
39 MessageEventHandler::MessageEventHandler(Messenger *messenger,
40                                          const SgmlParser *parser)
41 : messenger_(messenger), parser_(parser)
42 {
43 }
44
45 void MessageEventHandler::subdocEntity(SubdocEntityEvent *event)
46 {
47   const SubdocEntity *entity = event->entity();
48   if (entity && parser_) {
49     SgmlParser::Params params;
50     params.subdocReferenced = 1;
51     params.subdocInheritActiveLinkTypes = 1;
52     params.origin = event->entityOrigin()->copy();
53     params.parent = parser_;
54     params.sysid = entity->externalId().effectiveSystemId();
55     params.entityType = SgmlParser::Params::subdoc;
56     SgmlParser parser(params);
57     const SgmlParser *oldParser = parser_;
58     parser_ = &parser;
59     parser.parseAll(*this);
60     parser_ = oldParser;
61   }
62   delete event;
63 }
64
65 void MessageEventHandler::message(MessageEvent *event)
66 {
67   messenger_->dispatchMessage(event->message());
68   ErrorCountEventHandler::message(event);
69 }
70
71 #ifdef SP_NAMESPACE
72 }
73 #endif