This file is indexed.

/usr/include/omniORB4/CORBA_Context.h is in libomniorb4-dev 4.1.6-1.

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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
// -*- Mode: C++; -*-
//                            Package   : omniORB
// CORBA_Context.h            Created on: 2001/08/17
//                            Author    : Duncan Grisby (dpg1)
//
//    Copyright (C) 2004 Apasphere Ltd
//    Copyright (C) 2001 AT&T Laboratories Cambridge
//
//    This file is part of the omniORB library
//
//    The omniORB library is free software; you can redistribute it and/or
//    modify it under the terms of the GNU Library General Public
//    License as published by the Free Software Foundation; either
//    version 2 of the License, or (at your option) any later version.
//
//    This library 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
//    Library General Public License for more details.
//
//    You should have received a copy of the GNU Library General Public
//    License along with this library; if not, write to the Free
//    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
//    02111-1307, USA
//
//
// Description:
//    CORBA::Context, ContextList
//

/*
  $Log$
  Revision 1.1.4.2  2004/07/23 10:29:56  dgrisby
  Completely new, much simpler Any implementation.

  Revision 1.1.4.1  2003/03/23 21:04:24  dgrisby
  Start of omniORB 4.1.x development branch.

  Revision 1.1.2.3  2001/11/27 14:35:07  dpg1
  Context, DII fixes.

  Revision 1.1.2.2  2001/11/06 15:41:34  dpg1
  Reimplement Context. Remove CORBA::Status. Tidying up.

  Revision 1.1.2.1  2001/08/17 13:39:44  dpg1
  Split CORBA.h into separate bits.

*/

#ifndef INSIDE_OMNIORB_CORBA_MODULE
#  error "Must only be #included by CORBA.h"
#endif

//////////////////////////////////////////////////////////////////////
/////////////////////////////// Context //////////////////////////////
//////////////////////////////////////////////////////////////////////

class Context;
typedef Context* Context_ptr;
typedef Context_ptr ContextRef;
typedef _CORBA_PseudoObj_Var<Context> Context_var;
typedef _CORBA_PseudoObj_Out<Context,Context_var> Context_out;

class Context {
public:
  typedef Context_ptr _ptr_type;
  typedef Context_var _var_type;

  virtual ~Context();

  virtual const char* context_name() const = 0;
  virtual CORBA::Context_ptr parent() const = 0;

  virtual void create_child(const char*, Context_out) = 0;
  virtual void set_one_value(const char*, const Any&) = 0;
  virtual void set_values(CORBA::NVList_ptr) = 0;
  virtual void delete_values(const char*) = 0;
  virtual void get_values(const char* start_scope,
			  CORBA::Flags op_flags,
			  const char* pattern,
			  CORBA::NVList_out values) = 0;
  // Throws BAD_CONTEXT if <start_scope> is not found.
  // Returns a nil NVList in <values> if no matches are found.

  virtual Boolean NP_is_nil() const = 0;
  virtual CORBA::Context_ptr NP_duplicate() = 0;

  static Context_ptr _duplicate(Context_ptr);
  static Context_ptr _nil();

  // omniORB specifics.
  static void marshalContext(Context_ptr ctxt, const char*const* which,
			     int whichlen, cdrStream& s);
  static Context_ptr unmarshalContext(cdrStream& s);

  static Context_ptr filterContext(Context_ptr ctxt,
				   const char*const* which,
				   int whichlen);
  // Filter a context according to the IDL declaration. Used for
  // colocated calls.

  static inline _CORBA_Boolean PR_is_valid(Context_ptr p ) {
    return ((p) ? (p->pd_magic == PR_magic) : 1);
  }

  static _dyn_attr const _CORBA_ULong PR_magic;

protected:
  Context() { pd_magic = PR_magic; }

private:
  _CORBA_ULong pd_magic;

  Context(const Context&);
  Context& operator=(const Context&);
};


//////////////////////////////////////////////////////////////////////
///////////////////////////// ContextList ////////////////////////////
//////////////////////////////////////////////////////////////////////

class ContextList;
typedef ContextList* ContextList_ptr;
typedef ContextList_ptr ContextListRef;
typedef _CORBA_PseudoObj_Var<ContextList> ContextList_var;
typedef _CORBA_PseudoObj_Out<ContextList,ContextList_var> ContextList_out;

class ContextList {
public:
  virtual ~ContextList();

  virtual ULong count() const = 0;
  virtual void add(const char* ctxt) = 0;
  virtual void add_consume(char* ctxt) = 0;
  // consumes ctxt

  virtual const char* item(ULong index) = 0;
  // retains ownership of return value

  virtual void remove(ULong index) = 0;

  virtual Boolean NP_is_nil() const = 0;
  virtual ContextList_ptr NP_duplicate() = 0;

  static ContextList_ptr _duplicate(ContextList_ptr);
  static ContextList_ptr _nil();

  // OMG Interface:

  OMNIORB_DECLARE_USER_EXCEPTION_IN_CORBA(Bounds, _dyn_attr)

  static inline _CORBA_Boolean PR_is_valid(ContextList_ptr p ) {
    return ((p) ? (p->pd_magic == PR_magic) : 1);
  }

  static _dyn_attr const _CORBA_ULong PR_magic;

protected:
  ContextList() { pd_magic = PR_magic; }

private:
  _CORBA_ULong pd_magic;

  ContextList(const ContextList&);
  ContextList& operator=(const ContextList&);
};