This file is indexed.

/usr/lib/bouml/xmi2/128386.bodies is in bouml-plugouts-src 4.21-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
class UmlState
!!!195842.cpp!!!	write(inout out : FileOut) : void
  anItemKind pkind = parent()->kind();
  bool mach = (pkind != aState) && (pkind != aRegion);
  const char * k;
  
  if (mach) {
    k = (_uml_20) ? "ownedMember" : "packagedElement";
    memo_incoming_trans();
  }
  else
    k = "subvertex";
  
  out.indent(); 
  out << "<" << k << " xmi:type=\"uml:"
    << ((mach || (stereotype() == "machine")) ? "StateMachine" : "State")
    << '"';
  out.id(this); 
  out << " name=\"";
  out.quote(name());
  out << '"';
  if (specification() != 0)
    out.ref(specification(), "specification");
  if (isActive())
    out << " isActive=\"true\"";
  out << ">\n";
  out.indent(+1); 
  
  write_description_properties(out); 
  
  QCString doentry;
  QCString doactivity;
  QCString doexit;
  
  switch (_lang) {
  case Uml:
    doentry = entryBehavior();
    doactivity = doActivity();
    doexit = exitBehavior();
    break;
  case Cpp:
    doentry = cppEntryBehavior();
    doactivity = cppDoActivity();
    doexit = cppExitBehavior();
    break;
  default: // Java
    doentry = javaEntryBehavior();
    doactivity = javaDoActivity();
    doexit = javaExitBehavior();
    break;
  }
  
  if (! doentry.isEmpty()) {
    out.indent();
    out << "<entry xmi:type=\"uml:Activity\"";
    out.id_prefix(this, "ENTRY_");
    out << ">\n";
    out.indent();
    out << "\t<body>";
    out.quote(doentry);
    out << "</body>\n";
    out.indent();
    out << "</entry>\n";
  }
  
  if (! doactivity.isEmpty()) {
    out.indent();
    out << "<doActivity xmi:type=\"uml:Activity\"";
    out.id_prefix(this, "DOACTIVITY_");
    out << ">\n";
    out.indent();
    out << "\t<body>";
    out.quote(doactivity);
    out << "</body>\n";
    out.indent();
    out << "</doActivity>\n";
  }
  
  if (! doexit.isEmpty()) {
    out.indent();
    out << "<exit xmi:type=\"uml:Activity\"";
    out.id_prefix(this, "EXIT_");
    out << ">\n";
    out.indent();
    out << "\t<body>";
    out.quote(doexit);
    out << "</body>\n";
    out.indent();
    out << "</exit>\n";
  }
     
  while (! _incoming_trans.isEmpty())
    _incoming_trans.take(0)->write_in(out);
  
  const QVector<UmlItem> ch = children(); 
  unsigned n = ch.size();
  unsigned i;
  bool need_region = FALSE;
     
  for (i = 0; i != n; i += 1) {
    if (ch[i]->kind() != aRegion) {
      need_region = TRUE;
      break;
    }
  }

  if (need_region) {
    out.indent();
    out << "<region xmi:type=\"uml:Region\"";
    out.id_prefix(this, "IMPLICIT_REGION_");
    out << " name=\"Bouml_Implicit_Region\">\n";
    out.indent(+1);
    
    for (i = 0; i != n; i += 1)
      if (ch[i]->kind() != aRegion)
	ch[i]->write(out);
    
#if 0
    // to bypass Eclipse's bug
    while (! _trans.isEmpty())
      _trans.take(0)->write_it(out);
#endif
    
    out.indent(-1);
    out.indent();
    out << "</region>\n";
  }

  for (i = 0; i != n; i += 1)
    if (ch[i]->kind() == aRegion)
      ch[i]->write(out);
       
#if 1
    // to bypass Eclipse's bug
    while (! _trans.isEmpty())
      _trans.take(0)->write_it(out);
#endif
    
  out.indent(-1); 
  out.indent(); 
  out << "</" << k << ">\n"; 
    
  unload(); 
!!!198658.cpp!!!	memo_incoming_trans() : void
  const QVector<UmlItem> ch = children(); 
  unsigned n = ch.size();
  unsigned i;
     
  for (i = 0; i != n; i += 1) {
    UmlStateItem * x = dynamic_cast<UmlStateItem *>(ch[i]);

    if (x != 0)
      x->memo_incoming_trans();
  }
!!!196482.cpp!!!	memo_trans(inout tr : UmlTransition) : void
  _trans.append(tr);
!!!196738.cpp!!!	add_incoming_trans(inout tr : UmlTransition) : void
  _incoming_trans.append(tr);
!!!209538.cpp!!!	find(in s : string) : UmlState
  QMap<QCString, UmlState *>::Iterator iter = _all.find(s);
  
  return (iter == _all.end()) ? 0 : *iter;