This file is indexed.

/usr/lib/bouml/deploy/7169.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
class UmlClass
!!!144642.cpp!!!	deploy(inout view : UmlDeploymentView) : void
int flags = deployable();

if (flags == 0)
  return;
    
UmlArtifact * a = associatedArtifact();

if (a == 0) {
  UmlCom::trace("Create <i>artifact</i> " + name());
  
  a = UmlArtifact::create(view, name());
    
  if (a == 0) {
    UmlCom::trace("cannot create <i>artifact</i> named " + name());
    throw 0;
  }

  a->set_Stereotype("source");
  a->addAssociatedClass(this);
  a->set_CppHeader("");
  a->set_CppSource("");
  a->set_JavaSource("");
  a->set_IdlSource("");
  a->set_PhpSource("");
  a->set_PythonSource("");
}

if ((flags & (1 << cppLanguage)) != 0) {
  a->set_CppHeader(CppSettings::headerContent());
  a->set_CppSource(CppSettings::sourceContent());
}

if ((flags & (1 << javaLanguage)) != 0)
  a->set_JavaSource(JavaSettings::sourceContent());

if ((flags & (1 << idlLanguage)) != 0)
  a->set_IdlSource(IdlSettings::sourceContent());

if ((flags & (1 << phpLanguage)) != 0)
  a->set_PhpSource(PhpSettings::sourceContent());

if ((flags & (1 << pythonLanguage)) != 0)
  a->set_PythonSource(PythonSettings::sourceContent());
!!!144642.java!!!	deploy(inout view : UmlDeploymentView) : void
int flags = deployable();

if (flags == 0)
  return;
    
UmlArtifact a = associatedArtifact();

if (a == null) {
  UmlCom.trace("Create <i>artifact</i> " + name());
  
  try {
    a = UmlArtifact.create(view, name());
  }
  catch (RuntimeException e) {
    UmlCom.trace("cannot create <i>artifact</i> named " + name());
    throw e;
  }
    
  a.set_Stereotype("source");
  a.addAssociatedClass(this);
  a.set_CppHeader("");
  a.set_CppSource("");
  a.set_JavaSource("");
  a.set_IdlSource("");
  a.set_PhpSource("");
  a.set_PythonSource("");
}

if ((flags & (1 << aLanguage.cppLanguage.value())) != 0) {
  a.set_CppHeader(CppSettings.headerContent());
  a.set_CppSource(CppSettings.sourceContent());
}

if ((flags & (1 << aLanguage.javaLanguage.value())) != 0)
  a.set_JavaSource(JavaSettings.sourceContent());

if ((flags & (1 << aLanguage.idlLanguage.value())) != 0)
  a.set_IdlSource(IdlSettings.sourceContent());

if ((flags & (1 << aLanguage.phpLanguage.value())) != 0)
  a.set_PhpSource(PhpSettings.sourceContent());

if ((flags & (1 << aLanguage.pythonLanguage.value())) != 0)
  a.set_PythonSource(PythonSettings.sourceContent());
!!!128131.cpp!!!	deployable() : int
QCString st = stereotype();

if ((st == "metaclass") || (st == "stereotype"))
  return 0;

int r = 0;

if (!isCppExternal() && !cppDecl().isEmpty())
  r += (1 << cppLanguage);

if (!isJavaExternal() && !javaDecl().isEmpty())
  r += (1 << javaLanguage);

if (!isIdlExternal() && !idlDecl().isEmpty())
  r += (1 << idlLanguage);

if (!isPhpExternal() && !phpDecl().isEmpty())
  r += (1 << phpLanguage);

if (!isPythonExternal() && !pythonDecl().isEmpty())
  r += (1 << pythonLanguage);

return r;
!!!128131.java!!!	deployable() : int
String st = stereotype();

if ((st == "metaclass") || (st == "stereotype"))
  return 0;

int r = 0;

if (!isCppExternal() && (cppDecl() != ""))
  r += (1 << aLanguage.cppLanguage.value());

if (!isJavaExternal() && (javaDecl() != ""))
  r += (1 << aLanguage.javaLanguage.value());

if (!isIdlExternal() && (idlDecl() != ""))
  r += (1 << aLanguage.idlLanguage.value());

if (!isPhpExternal() && (phpDecl() != ""))
  r += (1 << aLanguage.phpLanguage.value());

if (!isPythonExternal() && (pythonDecl() != ""))
  r += (1 << aLanguage.pythonLanguage.value());

return r;