File: MessageModel_ItemAlert.cxx

package info (click to toggle)
opencascade 7.9.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 301,932 kB
  • sloc: cpp: 1,523,264; tcl: 10,159; cs: 5,173; java: 1,554; sh: 1,342; ansic: 827; xml: 699; makefile: 31; javascript: 22
file content (338 lines) | stat: -rw-r--r-- 11,348 bytes parent folder | download
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
// Created on: 2021-04-27
// Created by: Natalia ERMOLAEVA
// Copyright (c) 2021 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.

#include <inspector/MessageModel_ItemAlert.hxx>

#include <inspector/MessageModel_ItemRoot.hxx>
#include <inspector/MessageModel_ItemReport.hxx>
#include <inspector/MessageModel_TreeModel.hxx>

#include <inspector/Convert_TransientShape.hxx>
#include <inspector/TreeModel_ItemProperties.hxx>
#include <inspector/TreeModel_Tools.hxx>
#include <inspector/ViewControl_Tools.hxx>

#include <Message_AlertExtended.hxx>
#include <Message_AttributeMeter.hxx>
#include <Message_AttributeStream.hxx>
#include <Message_CompositeAlerts.hxx>
#include <Precision.hxx>
#include <TCollection_AsciiString.hxx>
#include <TopoDS_AlertAttribute.hxx>

#include <Standard_WarningsDisable.hxx>
#include <QColor>
#include <QIcon>
#include <Standard_WarningsRestore.hxx>

// =======================================================================
// function : initValue
// purpose :
// =======================================================================
QVariant MessageModel_ItemAlert::initValue(const int theRole) const
{
  QVariant aParentValue = MessageModel_ItemBase::initValue(theRole);
  if (aParentValue.isValid())
    return aParentValue;

  MessageModel_ItemReportPtr aReportItem = MessageModel_ItemReport::FindReportItem(Parent());
  if (!aReportItem)
    return QVariant();

  Handle(Message_Report) aReport = aReportItem->GetReport();
  if (aReport.IsNull())
    return QVariant();

  if (theRole == Qt::ForegroundRole)
  {
    if (!aReport->IsActiveInMessenger())
      return QColor(Qt::darkGray);

    return QVariant();
  }

  Handle(Message_Alert)         anAlert         = getAlert();
  Handle(Message_AlertExtended) anExtendedAlert = Handle(Message_AlertExtended)::DownCast(anAlert);

  // if the alert is composite, process the real alert
  if (theRole == Qt::DecorationRole && Column() == 0)
  {
    if (anExtendedAlert.IsNull())
      return QVariant();

    Handle(Message_Attribute) anAttribute = anExtendedAlert->Attribute();
    if (anAttribute.IsNull())
      return QVariant();

    if (anAttribute->IsKind(STANDARD_TYPE(TopoDS_AlertAttribute)))
      return QIcon(":/icons/item_shape.png");
    else if (!Handle(Message_AttributeStream)::DownCast(anAttribute).IsNull())
      return QIcon(":/icons/item_streamValues.png");
    else
      return QVariant();
  }

  if (theRole != Qt::DisplayRole && theRole != Qt::ToolTipRole)
    return QVariant();

  if (anAlert.IsNull())
    return QVariant();

  if (Column() == 0)
  {
    if (theRole == Qt::DisplayRole)
    {
      TCollection_AsciiString aMessageKey = anAlert->GetMessageKey();
      if (aMessageKey.IsEmpty() && !Properties().IsNull())
        aMessageKey = Properties()->Key();
      return aMessageKey.ToCString();
    }
    else
      return anAlert->DynamicType()->Name();
  }

  Message_MetricType aMetricType;
  int                aPosition;
  if (MessageModel_TreeModel::IsMetricColumn(Column(), aMetricType, aPosition))
  {
    if (anExtendedAlert.IsNull())
      return QVariant();

    Handle(Message_AttributeMeter) anAttribute =
      Handle(Message_AttributeMeter)::DownCast(anExtendedAlert->Attribute());
    if (anAttribute.IsNull() || !anAttribute->HasMetric(aMetricType))
      return QVariant();

    if (!anAttribute->IsMetricValid(aMetricType))
      return QVariant("in process");

    if (aMetricType == Message_MetricType_ProcessCPUUserTime
        || aMetricType == Message_MetricType_ProcessCPUSystemTime
        || aMetricType == Message_MetricType_WallClock)
    {
      Standard_Real aCumulativeMetric =
        anAttribute->StopValue(aMetricType) - anAttribute->StartValue(aMetricType);
      if (fabs(aCumulativeMetric) < Precision::Confusion())
        return QVariant();

      if (aPosition == 0)
        return aCumulativeMetric;
      else if (aPosition == 1)
      {
        Standard_Real aReportCumulativeMetric =
          MessageModel_ItemReport::CumulativeMetric(aReport, aMetricType);
        if (fabs(aReportCumulativeMetric) > Precision::Confusion())
          return 100. * aCumulativeMetric / aReportCumulativeMetric;
        else
          return QVariant();
      }
    }
    else
    {
      if (aPosition == 0)
        return anAttribute->StopValue(aMetricType);
      else if (aPosition == 1)
      {
        Standard_Real aCumulativeMetric =
          anAttribute->StopValue(aMetricType) - anAttribute->StartValue(aMetricType);
        if (fabs(aCumulativeMetric) < Precision::Confusion())
          return QVariant();
        else
          return aCumulativeMetric;
      }
    }
  }
  return QVariant();
}

// =======================================================================
// function : initRowCount
// purpose :
// =======================================================================
int MessageModel_ItemAlert::initRowCount() const
{
  const Handle(Message_Alert)& anAlert = getAlert();
  if (anAlert.IsNull())
    return 0;

  Handle(Message_AlertExtended) anExtendedAlert = Handle(Message_AlertExtended)::DownCast(anAlert);
  if (anExtendedAlert.IsNull())
    return 0;

  Handle(Message_CompositeAlerts) aCompositeAlert = anExtendedAlert->CompositeAlerts();
  if (aCompositeAlert.IsNull())
    return 0;

  MessageModel_ItemAlert* aCurrentItem = (MessageModel_ItemAlert*)this;
  for (int aGravityId = Message_Trace; aGravityId <= Message_Fail; aGravityId++)
  {
    const Message_ListOfAlert& anAlerts = aCompositeAlert->Alerts((Message_Gravity)aGravityId);
    {
      for (Message_ListOfAlert::Iterator anIt(anAlerts); anIt.More(); anIt.Next())
      {
        Message_ListOfAlert aCurAlerts;
        aCurAlerts.Append(anIt.Value());
        aCurrentItem->myChildAlerts.Bind(myChildAlerts.Size(), aCurAlerts);
      }
    }
  }
  return aCurrentItem->myChildAlerts.Size();
}

// =======================================================================
// function : initStream
// purpose :
// =======================================================================
void MessageModel_ItemAlert::initStream(Standard_OStream& theOStream) const
{
  Handle(Message_AlertExtended) anExtendedAlert =
    Handle(Message_AlertExtended)::DownCast(getAlert());
  if (anExtendedAlert.IsNull() || anExtendedAlert->Attribute().IsNull())
    return;

  Handle(Message_Attribute) anAttribute = anExtendedAlert->Attribute();
  if (anAttribute.IsNull())
    return;

  if (Handle(Message_AttributeStream)::DownCast(anAttribute).IsNull())
    return;

  Handle(Message_AttributeStream) anAttributeStream =
    Handle(Message_AttributeStream)::DownCast(anExtendedAlert->Attribute());
  theOStream << anAttributeStream->Stream().str();
}

// =======================================================================
// function : SetStream
// purpose :
// =======================================================================
bool MessageModel_ItemAlert::SetStream(const Standard_SStream& theSStream,
                                       Standard_Integer&       theStartPos,
                                       Standard_Integer&       theLastPos) const
{
  Handle(Message_AlertExtended) anExtendedAlert =
    Handle(Message_AlertExtended)::DownCast(getAlert());
  if (anExtendedAlert.IsNull() || anExtendedAlert->Attribute().IsNull())
    return false;

  Handle(Message_Attribute) anAttribute = anExtendedAlert->Attribute();
  if (anAttribute.IsNull())
    return false;

  if (Handle(Message_AttributeStream)::DownCast(anAttribute).IsNull())
    return false;

  Handle(Message_AttributeStream) anAttributeStream =
    Handle(Message_AttributeStream)::DownCast(anExtendedAlert->Attribute());
  TCollection_AsciiString aStreamValue = Standard_Dump::Text(anAttributeStream->Stream());

  TCollection_AsciiString aNewValue = Standard_Dump::Text(theSStream);

  Standard_SStream aStream;
  aStream << aStreamValue.SubString(1, theStartPos - 1);
  aStream << aNewValue;
  if (theLastPos + 1 <= aStreamValue.Length())
    aStream << aStreamValue.SubString(theLastPos + 1, aStreamValue.Length());

  anAttributeStream->SetStream(aStream);

  return true;
}

// =======================================================================
// function : createChild
// purpose :
// =======================================================================
TreeModel_ItemBasePtr MessageModel_ItemAlert::createChild(int theRow, int theColumn)
{
  return MessageModel_ItemAlert::CreateItem(currentItem(), theRow, theColumn);
}

// =======================================================================
// function : Init
// purpose :
// =======================================================================
void MessageModel_ItemAlert::Init()
{
  MessageModel_ItemReportPtr aReportItem = itemDynamicCast<MessageModel_ItemReport>(Parent());
  MessageModel_ItemAlertPtr  anAlertItem;
  Handle(Message_Alert)      anAlert;
  if (aReportItem)
  {
    Message_ListOfAlert anAlerts;
    if (aReportItem->GetChildAlerts(Row(), anAlerts))
    {
      myAlert = anAlerts.First();
    }
  }
  else
  {
    anAlertItem = itemDynamicCast<MessageModel_ItemAlert>(Parent());
    if (anAlertItem)
    {
      Message_ListOfAlert anAlerts;
      if (anAlertItem->GetChildAlerts(Row(), anAlerts))
      {
        myAlert = anAlerts.First();
      }
    }
  }

  Handle(Message_AlertExtended) anExtendedAlert = Handle(Message_AlertExtended)::DownCast(myAlert);
  if (!anExtendedAlert.IsNull() && !anExtendedAlert->Attribute().IsNull())
  {
    Handle(Message_Attribute) anAttribute = anExtendedAlert->Attribute();
    if (!anAttribute.IsNull())
    {
      if (anAttribute->IsKind(STANDARD_TYPE(TopoDS_AlertAttribute)))
        myPresentation = new Convert_TransientShape(
          Handle(TopoDS_AlertAttribute)::DownCast(anAttribute)->GetShape());
    }
  }
  MessageModel_ItemBase::Init();
}

// =======================================================================
// function : Reset
// purpose :
// =======================================================================
void MessageModel_ItemAlert::Reset()
{
  MessageModel_ItemBase::Reset();
  myAlert = Handle(Message_Alert)();
  myChildAlerts.Clear();
  myPresentation = NULL;
}

// =======================================================================
// function : initItem
// purpose :
// =======================================================================
void MessageModel_ItemAlert::initItem() const
{
  if (IsInitialized())
    return;
  const_cast<MessageModel_ItemAlert*>(this)->Init();
}

// =======================================================================
// function : getAlert
// purpose :
// =======================================================================
const Handle(Message_Alert)& MessageModel_ItemAlert::getAlert() const
{
  initItem();
  return myAlert;
}