This file is indexed.

/usr/lib/bouml/xmi2/143234.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
class UmlActivityPin
!!!202626.cpp!!!	write(inout out : FileOut) : void
  QCString s = name();
  const char * k;
  const char * K;
  
  if (direction() == InputDirection) {
    switch (parent()->kind()) {
    case anOpaqueAction:
      k = "inputValue";
      break;
    case aSendObjectAction:
      k = ((s == "target") || (s == "request"))
	? ((const char *) s)
	: "argument";
      break;
    case anUnmarshallAction:
      k = (s == "object") ? "object" : "input";
      break;
    case aSendSignalAction:
    case aCallOperationAction:
      k = (s == "target") ? "target" : "argument";
      break;
    case aCallBehaviorAction:
      k = "argument";
      break;
    case anAddVariableValueAction:
      k = (s == "insertAt") ? "insertAt" : "value";
      break;
    case aRemoveVariableValueAction:
      k = (s == "removeAt") ? "removeAt" : "value";
      break;
    case aBroadcastSignalAction:
      k = "argument";
      break;
    case aWriteVariableValueAction:
      k = "value";
      break;
    case aDestroyObjectAction:
      k = "target";
      break;
    case aTestIdentityAction:
      k = (s == "first") ? "first" : "second";
      break;
    case aReplyAction:
      k = (s == "returnInformation") ? "returnInformation" : "replyValue";
      break;
    case aReduceAction:
      k = "collection";
      break;
    case aRaiseExceptionAction:
      k = "exception";
      break;
    default:
      k = "input"; // !
    }
    K = "Input";
  }
  else {
    switch (parent()->kind()) {
    case anOpaqueAction:
      k = "outputValue";
      break;
    case aValueSpecificationAction:
    case anUnmarshallAction:
    case anAcceptEventAction:
    case aCallOperationAction:
    case aCallBehaviorAction:
    case aReadVariableValueAction:
    case aCreateObjectAction:
    case aTestIdentityAction:
    case aReduceAction:
      k = "result";
      break;
    case anAcceptCallAction:
      k = (s == "returnInformation") ? "returnInformation" : "result";
      break;
    default:
      k = "output"; // !
    }
    K = "Output";
  }

  out.indent();
  out << '<' << k << " xmi:type=\"uml:" << K << "Pin\" name=\"";
  out.quote(name());
  out << '"';
  out.id(this);
  write_flags(out);
  if (isControlType())
    out << " isControlType=\"true\"";
  write_ordering(out);
  write_selection(out);
  write_in_state(out);
  out << ">\n";
  
  out.indent(+1);
  
  write_description_properties(out);
  write_multiplicity(out, multiplicity(), this);
  UmlItem::write_type(out, type());

  const QVector<UmlItem> ch = children();
  unsigned n = ch.size();
  
  for (unsigned i = 0; i != n; i += 1)
    ch[i]->write(out);
  
  write_incoming_flows(out);
  
  out.indent(-1);

  out.indent();
  out << "</" << k << ">\n";

  unload();