This file is indexed.

/usr/include/PajeType.h is in libpaje-dev 1.1+git20140604.1d5509f042-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
/*
    This file is part of PajeNG

    PajeNG is free software: you can redistribute it and/or modify
    it under the terms of the GNU Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    PajeNG 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 Public License for more details.

    You should have received a copy of the GNU Public License
    along with PajeNG. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __PAJETYPE_H__
#define __PAJETYPE_H__
#include <map>
#include <sstream>
#include <string>
#include <iostream>
#include <fstream>
#include <string>
#include "PajeObject.h"
#include "PajeColor.h"
#include "PajeProtocols.h"
#include "PajeValue.h"

class PajeValue;

typedef enum {
  PAJE_ContainerType,
  PAJE_VariableType,
  PAJE_StateType,
  PAJE_EventType,
  PAJE_LinkType,
  PAJE_UndefinedType} PajeTypeNature;

class PajeType : public PajeObject {
protected:
  std::string _name;
  std::string _alias;
  PajeType *_parent;
  int _depth;

public:
  PajeType (std::string name, std::string alias, PajeType *parent);
  std::string name (void) const;
  std::string alias (void) const;
  int depth (void) const;
  PajeType *parent (void) const;
  std::string identifier (void) const;
  std::string kind (void) const;
  virtual bool isCategorizedType (void) const;
  virtual PajeValue *addValue (std::string alias, std::string value, PajeColor *color);
  virtual PajeValue *valueForIdentifier (std::string identifier);
  virtual bool hasValueForIdentifier (std::string identifier);
  virtual PajeColor *colorForIdentifier (std::string identifier);
  virtual PajeColor *color (void);
  virtual PajeDrawingType drawingType (void) = 0;
  virtual PajeTypeNature nature (void) const = 0;
  virtual PajeType *startType (void);
  virtual PajeType *endType (void);
  virtual PajeType *addContainerType (std::string name, std::string alias);
  virtual PajeType *addVariableType (std::string name, std::string alias, PajeColor *color);
  virtual PajeType *addStateType (std::string name, std::string alias);
  virtual PajeType *addEventType (std::string name, std::string alias);
  virtual PajeType *addLinkType (std::string name, std::string alias, PajeType *starttype, PajeType *endtype);
  virtual std::map<std::string,PajeType*> children (void);
};

class PajeCategorizedType : public PajeType {
public:
  PajeCategorizedType (std::string name, std::string alias, PajeType *parent);
  std::map<std::string,PajeValue*> values;
  std::map<std::string,PajeColor*> colors;

  bool isCategorizedType (void) const;
  PajeValue *addValue (std::string alias, std::string value, PajeColor *color);
  PajeValue *valueForIdentifier (std::string identifier);
  bool hasValueForIdentifier (std::string identifier);
  PajeColor *colorForIdentifier (std::string identifier);
};

class PajeVariableType : public PajeType {
protected:
  PajeColor *_color;
public:
  PajeVariableType (std::string name, std::string alias, PajeType *parent);
  PajeVariableType (std::string name, std::string alias, PajeType *parent, PajeColor *color);
  PajeDrawingType drawingType (void);
  PajeTypeNature nature (void) const;
  PajeColor *color (void);
};

class PajeStateType : public PajeCategorizedType {
public:
  PajeStateType (std::string name, std::string alias, PajeType *parent);
  PajeDrawingType drawingType (void);
  PajeTypeNature nature (void) const;
};

class PajeEventType : public PajeCategorizedType {
public:
  PajeEventType (std::string name, std::string alias, PajeType *parent);
  PajeDrawingType drawingType (void);
  PajeTypeNature nature (void) const;
};

class PajeLinkType : public PajeCategorizedType {
private:
  PajeType *starttype;
  PajeType *endtype;

public:
  PajeLinkType (std::string name, std::string alias, PajeType *start, PajeType *end, PajeType *parent);
  PajeDrawingType drawingType (void);
  PajeTypeNature nature (void) const;
  PajeType *startType (void);
  PajeType *endType (void);
};

class PajeContainerType : public PajeType {
private:
  std::map<std::string,PajeType*> _children;

public:
  PajeContainerType (std::string name, std::string alias, PajeType *parent);
  ~PajeContainerType (void);
  PajeType *getRootType (void);

  PajeType *addContainerType (std::string name, std::string alias);
  PajeType *addVariableType (std::string name, std::string alias, PajeColor *color);
  PajeType *addStateType (std::string name, std::string alias);
  PajeType *addEventType (std::string name, std::string alias);
  PajeType *addLinkType (std::string name, std::string alias, PajeType *starttype, PajeType *endtype);
  std::map<std::string,PajeType*> children (void);
  PajeDrawingType drawingType (void);
  PajeTypeNature nature (void) const;
};

std::ostream &operator<< (std::ostream &output, const PajeType &type);
bool operator!= (const PajeType& t1, const PajeType& t2);
bool operator== (const PajeType& t1, const PajeType& t2);

class PajeAggregatedType {
private:
  PajeValue *aggregatedValue;
  PajeType *aggregatedType;

public:
  PajeAggregatedType (PajeType *type, PajeValue *value);
  PajeAggregatedType (PajeType *type);
  PajeColor *color (void) const;
  PajeType *type (void) const;
  PajeValue *value (void) const;
  std::string name (void) const;
};

struct PajeAggregatedTypeCompare {
  bool operator () (const PajeAggregatedType *t1, const PajeAggregatedType *t2) const {
    return t1->name() < t2->name();
  };
};

typedef std::pair<PajeAggregatedType*, double> PajeAggregatedDictEntry;
typedef std::map<PajeAggregatedType*, double, PajeAggregatedTypeCompare> PajeAggregatedDict;

#endif