]> err.no Git - sope/blob - sope-xml/libxmlSAXDriver/libxmlSAXLocator.m
lF fixes
[sope] / sope-xml / libxmlSAXDriver / libxmlSAXLocator.m
1 /*
2   Copyright (C) 2000-2005 SKYRIX Software AG
3
4   This file is part of SOPE.
5
6   SOPE is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with SOPE; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21
22 #import "libxmlSAXLocator.h"
23 #include "common.h"
24
25 @implementation libxmlSAXLocator
26
27 - (id)initWithSaxLocator:(xmlSAXLocatorPtr)_loc parser:(id)_parser {
28   if (_loc == NULL) {
29     [self release];
30     return nil;
31   }
32   self->parser = _parser;
33   self->getPublicId     = _loc->getPublicId;
34   self->getSystemId     = _loc->getSystemId;
35   self->getLineNumber   = _loc->getLineNumber;
36   self->getColumnNumber = _loc->getColumnNumber;
37   return self;
38 }
39
40 - (void)clear {
41   self->parser = nil;
42 }
43
44 /* accessors */
45
46 - (int)columnNumber {
47   //return -1;
48   NSAssert(self->ctx, @"missing locator ctx ..");
49   return self->getColumnNumber ? self->getColumnNumber(self->ctx) : -1;
50 }
51 - (int)lineNumber {
52   //return -1;
53   NSAssert(self->ctx, @"missing locator ctx ..");
54   return self->getLineNumber ? self->getLineNumber(self->ctx) : -1;
55 }
56
57 - (NSString *)publicId {
58   const xmlChar *s;
59   //return nil;
60   s = self->getPublicId ? self->getPublicId(self->ctx) : NULL;
61   return s ? [NSString stringWithCString:(const char *)s] : nil;
62 }
63
64 - (NSString *)systemId {
65   const xmlChar *s;
66   //return nil;
67   s = self->getSystemId ? self->getSystemId(self->ctx) : NULL;
68   return s ? [NSString stringWithCString:(const char *)s] : nil;
69 }
70
71 /* description */
72
73 - (NSString *)description {
74   return [NSString stringWithFormat:@"<0x%p[%@]: pub=%@ sys=%@ L%i C%i>",
75                      self, NSStringFromClass([self class]),
76                      [self publicId], [self systemId],
77                      [self lineNumber], [self columnNumber]];
78 }
79
80 @end /* libxmlSaxLocator */