This file is indexed.

/usr/lib/bouml/xmi2/147586.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
163
164
165
166
167
168
169
170
171
172
173
class UmlFragmentCompartment
!!!147460.cpp!!!	write(inout out : FileOut, in diagram : UmlItem, inout msgs : UmlSequenceMessage) : void
  UmlFragment * fr = fragment();
  
  while (fr->container() != 0)
    fr = fr->container()->fragment();
  
  fr->write(out, diagram, msgs);
!!!150916.cpp!!!	write(inout out : FileOut, in diagram : UmlItem, inout msgs : UmlSequenceMessage, in oper : string) : void
  QListIterator<UmlSequenceMessage> it(msgs);
  UmlSequenceMessage * m;
  
  if (!oper.isEmpty()) {
    static int rank = 0;
    
    out.indent();
    out << "<operand xmi:type=\"uml:InteractionOperand\"";
    out.id_prefix(diagram, "OPERAND", ++rank);
    out << ">\n";
    
    out.indent(+1);
    
    if (! texts().isEmpty()) {
      out.indent();
      out << "<guard xmi:type=\"uml:InteractionConstraint\"";
      out.id_prefix(diagram, "GUARD", rank);
      out << ">\n";

      QCString txt = texts()[0];
      
      txt.stripWhiteSpace();
      if ((txt.at(0) == '[') && (txt.at(txt.length() - 1) == ']'))
	txt = txt.mid(1, txt.length() - 2);
      
      if (oper == "loop") {
	int index;
	QCString min;
	QCString max;
	
	if ((index = txt.find(',')) != -1) {
	  min = txt.left(index);
	  max = txt.mid(index + 1);
	}
	else if ((index = txt.find("..")) != -1) {
	  min = txt.left(index);
	  max = txt.mid(index + 2);
	}
	else
	  min = txt;
	  
	if (! min.isEmpty()) {
	  out.indent();
	  out << "\t<minint xmi:type=\"uml:LiteralInteger\"";
	  out.id_prefix(diagram, "MIN", rank);
	  out << " value=\"";
	  out.quote(min);
	  out << "\"/>\n";
	}

	if (! max.isEmpty()) {
	  out.indent();
	  out << "\t<maxint xmi:type=\"uml:LiteralInteger\"";
	  out.id_prefix(diagram, "MAX", rank);
	  out << " value=\"";
	  out.quote(max);
	  out << "\"/>\n";
	}
      }
      else {
	out.indent();
	out << "\t<specification xmi:type=\"uml:OpaqueExpression\"";
	out.id_prefix(diagram, "GUARD_EXPR", rank);
	out << ">\n";
	out.indent();
	out << "\t\t<body>";
	out.quote(txt);
	out << "</body>\n";
	out.indent();
	out << "\t</specification>\n";
      }
      out.indent();
      out << "</guard>\n";
    }
  }
  
  static int continuation_rank = 0;
  
  if (!startContinuation().isEmpty()) {
    out.indent();
    out << "<fragment xmi:type=\"uml:Continuation\"";
    out.id_prefix(diagram, "CONTINUATION", ++continuation_rank);
    out << " name=\"";
    out.quote(startContinuation());
    out << "\" setting=\"false\"/>\n";
  }
  
  while ((m = it.current()) != 0) {
    UmlFragmentCompartment * fc = m->fragment();
    
    if (fc == 0)
      // out of fragment
      ++it;
    else {
      // message inside compartment ?
      if (fc != this) {
	do {
	  UmlFragmentCompartment * pfc = fc->fragment()->container();
	  
	  if (pfc == this)
	    // fc is a fragment compartment of a fragment inside this
	    break;
	  
	  fc = pfc;
	} while (fc != 0);
      }
      
      if (fc == 0)
	// not included in compartment or under
	++it;
      else if (m->fragment() == this)
	// directly in this compartment      
	m->write_fragment(out, diagram, msgs);
      else
	// in sub fragment
	fc->fragment()->write(out, diagram, msgs);
    }
  }
  
  if (!endContinuation().isEmpty()) {
    out.indent();
    out << "<fragment xmi:type=\"uml:Continuation\"";
    out.id_prefix(diagram, "CONTINUATION", ++continuation_rank);
    out << " name=\"";
    out.quote(endContinuation());
    out << "\" setting=\"true\"/>\n";
  }
  
  if (!oper.isEmpty()) {
    out.indent(-1);
    out.indent();
    out << "</operand>\n";
  }
!!!231170.cpp!!!	bypass(inout msgs : UmlSequenceMessage) : void
  QListIterator<UmlSequenceMessage> it(msgs);
  UmlSequenceMessage * m;
  
  while ((m = it.current()) != 0) {
    UmlFragmentCompartment * fc = m->fragment();
    
    if (fc == 0)
      // out of fragment
      ++it;
    else {
      // message inside compartment ?
      if (fc != this) {
	do {
	  UmlFragmentCompartment * pfc = fc->fragment()->container();
	  
	  if (pfc == this)
	    // fc is a fragment compartment of a fragment inside this
	    break;
	  
	  fc = pfc;
	} while (fc != 0);
      }
      
      if (fc == 0)
	// not included in compartment or under
	++it;
      else
	msgs.removeRef(m);
    }
  }