This file is indexed.

/usr/include/GNUstep/SaxObjC/SaxMethodCallHandler.h is in libsope-dev 2.2.17-1build2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
/*
  Copyright (C) 2000-2005 SKYRIX Software AG

  This file is part of SOPE.

  SOPE is free software; you can redistribute it and/or modify it under
  the terms of the GNU Lesser General Public License as published by the
  Free Software Foundation; either version 2, or (at your option) any
  later version.

  SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
  WARRANTY; without even the implied warranty of MERCHANTABILITY or
  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  License for more details.

  You should have received a copy of the GNU Lesser General Public
  License along with SOPE; see the file COPYING.  If not, write to the
  Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
  02111-1307, USA.
*/

#ifndef __SaxMethodCallHandler_H__
#define __SaxMethodCallHandler_H__

#include <SaxObjC/SaxDefaultHandler.h>
#import <Foundation/NSMapTable.h>

@class NSString, NSMutableArray, NSMutableDictionary;

/*
  [also take a look at SaxObjectDecoder]
  
  This handler calls a method on a delegate for each tag. The selector is
  constructed this way:
  
    [start|end] + nskey + tagname + ':'

  If no method could be found for the tag, it is first checked whether the
  delegate responds to

    [start|end] + nskey + 'unknownTag:attributes:'

  and it this couldn't be found, it is checked for

    [start|end] + 'tag:_tagName namespace:_ns attributes:'

  If no key could be found for a namespace, it is first checked whether the
  delegate responds to

    [start|end] + 'any_' + tagname + ':'

  if this fails it is checked for this selector

    [start|end] + 'tag:_tagName namespace:_ns attributes:'

  if neither exists, the tag is ignored.
  
  Eg:

    nskey='xhtml' startKey='start_' endKey='end_'
    - (void)start_xhtml_br:(id<SaxAttributes>)_attrs;
    - (void)end_xhtml_br;
*/

@interface SaxMethodCallHandler : SaxDefaultHandler
{
  id                  delegate; // non-retained: default=self (for subclasses)
  NSMutableDictionary *namespaceToKey;
  NSMutableArray      *tagStack;
  NSString            *startKey;            // default: 'start_'
  NSString            *endKey;              // default: 'end_'
  NSString            *unknownNamespaceKey; // default: 'any_'
  int                 ignoreLevel;
  
  /* processing */
  NSMapTable      *fqNameToStartSel;
  NSMutableString *selName; /* reused for each construction */
}

/* namespaces */

- (void)registerNamespace:(NSString *)_namespace withKey:(NSString *)_key;

/* keys */

- (void)setStartKey:(NSString *)_s;
- (NSString *)startKey;
- (void)setEndKey:(NSString *)_s;
- (NSString *)endKey;
- (void)setUnknownNamespaceKey:(NSString *)_s;
- (NSString *)unknownNamespaceKey;

/* tag stack */

- (NSArray *)tagStack;
- (unsigned)depth;

- (void)ignoreChildren;
- (BOOL)doesIgnoreChildren;

/* delegate */

- (void)setDelegate:(id)_delegate;
- (id)delegate;

@end

#endif /* __SaxMethodCallHandler_H__ */