Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/smesh.git] / src / StdMeshersGUI / StdMeshersGUI_DistrPreview.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 //
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License.
8 //
9 // This library is distributed in the hope that it will be useful
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20
21 using namespace std;
22
23 #include "StdMeshersGUI_DistrPreview.h"
24
25 #include <Expr_NamedUnknown.hxx>
26 #include <Expr_GeneralExpression.hxx>
27
28 #if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
29 #define NO_CAS_CATCH
30 #endif
31
32 #include <Standard_Failure.hxx>
33
34 #ifdef NO_CAS_CATCH
35 #include <Standard_ErrorHandler.hxx>
36 #endif
37
38 StdMeshersGUI_DistrPreview::StdMeshersGUI_DistrPreview( QWidget* p, StdMeshers::StdMeshers_NumberOfSegments_ptr h )
39 : QwtPlot( p ),
40   myPoints( 50 ),
41   myIsTable( false ),
42   myVars( 1, 1 ),
43   myValues( 1, 1 ),
44   myConv( CUT_NEGATIVE ),
45   myIsDone( true ),
46   myNbSeg( 1 )
47 {
48   myHypo = StdMeshers::StdMeshers_NumberOfSegments::_duplicate( h );
49   myVars.ChangeValue( 1 ) = new Expr_NamedUnknown( "t" );
50   myDensity = insertCurve( QString() );
51   myDistr = insertCurve( QString() );
52   myMsg = insertMarker( new QwtPlotMarker( this ) );
53   setMarkerPos( myMsg, 0.5, 0.5 );
54   setMarkerLabelPen( myMsg, QPen( Qt::red, 1 ) );
55   QFont f = markerFont( myMsg );
56   f.setPointSize( 14 );
57   f.setBold( true );
58   setMarkerFont( myMsg, f );
59   setCurvePen( myDensity, QPen( Qt::red, 1 ) );
60
61   QColor dc = Qt::blue;
62   setCurvePen( myDistr, QPen( dc, 1 ) );
63   setCurveSymbol( myDistr, QwtSymbol( QwtSymbol::XCross, QBrush( dc ), QPen( dc ), QSize( 5, 5 ) ) );
64   setAutoLegend( true );
65   enableLegend( true );
66   setLegendPos( Qwt::Bottom );
67   setCurveTitle( myDensity, tr( "SMESH_DENSITY_FUNC" ) );
68   setCurveTitle( myDistr, tr( "SMESH_DISTR" ) );
69 }
70
71 StdMeshersGUI_DistrPreview::~StdMeshersGUI_DistrPreview()
72 {
73 }
74
75 bool StdMeshersGUI_DistrPreview::isTableFunc() const
76 {
77   return myIsTable;
78 }
79
80 void StdMeshersGUI_DistrPreview::tableFunc( SMESH::double_array& f ) const
81 {
82   f = myTableFunc;
83 }
84
85 QString StdMeshersGUI_DistrPreview::function() const
86 {
87   return myFunction;
88 }
89
90 int StdMeshersGUI_DistrPreview::nbSeg() const
91 {
92   return myNbSeg;
93 }
94
95 int StdMeshersGUI_DistrPreview::pointsCount() const
96 {
97   return myPoints;
98 }
99
100 void StdMeshersGUI_DistrPreview::setConversion( Conversion conv, const bool upd )
101 {
102   myConv = conv;
103   if( upd )
104     update();
105 }
106
107 bool StdMeshersGUI_DistrPreview::setParams( const QString& func, const int nbSeg, const int points, const bool upd )
108 {
109   myIsTable = false;
110   myTableFunc = SMESH::double_array();
111   myFunction = func.isEmpty() ? "0" : func;
112   myPoints = points>0 ? points : 2;
113   myNbSeg = nbSeg>0 ? nbSeg : 1;
114   bool res = init( func );
115   if( upd )
116     update();
117   return res;
118 }
119
120 bool StdMeshersGUI_DistrPreview::setParams( const SMESH::double_array& f, const int nbSeg, const bool upd )
121 {
122   myIsTable = true;
123   myTableFunc = f;
124   if( myTableFunc.length()%2==1 )
125     myTableFunc.length( myTableFunc.length()-1 );
126
127   myFunction = "0";
128   myPoints = myTableFunc.length()/2;
129   myNbSeg = nbSeg>0 ? nbSeg : 1;
130
131   if( upd )
132     update();
133
134   return myTableFunc.length()>0;
135 }
136
137 bool StdMeshersGUI_DistrPreview::createTable( SMESH::double_array& func )
138 {
139   if( myExpr.IsNull() )
140   {
141     func.length( 0 );
142     return false;
143   }
144
145   const double xmin = 0.0, xmax = 1.0;
146
147   double d = (xmax-xmin)/double(myPoints-1);
148   func.length( 2*myPoints );
149   int err = 0;
150   for( int i=0, j=0; i<myPoints; j++ )
151   {
152     bool ok;
153     double t = xmin + d*j, f = funcValue( t, ok );
154     if( ok )
155     {
156       func[2*i] = t;
157       func[2*i+1] = f;
158       i++;
159     }
160     else
161       err++;
162   }
163   func.length( func.length()-2*err );
164   return err==0;
165 }
166
167 void StdMeshersGUI_DistrPreview::update()
168 {
169   SMESH::double_array graph, distr;
170   if( isTableFunc() )
171   {
172     myIsDone = true;
173     graph = myTableFunc;
174   }
175   else
176     myIsDone = createTable( graph );
177
178   if( graph.length()>=2 )
179   {
180     StdMeshers::StdMeshers_NumberOfSegments_var h = 
181       StdMeshers::StdMeshers_NumberOfSegments::_narrow( myHypo );
182
183     if( !CORBA::is_nil( h.in() ) )
184     {
185       SMESH::double_array* arr = 0;
186       if( isTableFunc() )
187         arr = h->BuildDistributionTab( myTableFunc, myNbSeg, ( int )myConv );
188       else
189         arr = h->BuildDistributionExpr( myFunction.latin1(), myNbSeg, ( int )myConv );
190       if( arr )
191       {
192         distr = *arr;
193         delete arr;
194       }
195     }
196   }
197
198   bool correct = graph.length()>=2 && distr.length()>=2;
199   if( !correct )
200   {
201     showError();
202     return;
203   }
204   else
205     setMarkerLabel( myMsg, QString() );
206
207   int size = graph.length()/2;
208   double* x = new double[size], *y = new double[size];
209   double min_x, max_x, min_y, max_y;
210   for( int i=0; i<size; i++ )
211   {
212     x[i] = graph[2*i];
213     y[i] = graph[2*i+1];
214     if( !convert( y[i] ) )
215     {
216       min_x = 0.0; max_x = 1.0; min_y = 0.0; max_y = 1.0;
217       delete[] x; delete[] y;
218       x = y = 0;
219       showError();
220       return;
221     }
222     if( i==0 || y[i]<min_y )
223       min_y = y[i];
224     if( i==0 || y[i]>max_y )
225       max_y = y[i];
226     if( i==0 || x[i]<min_x )
227       min_x = x[i];
228     if( i==0 || x[i]>max_x )
229       max_x = x[i];
230   }
231
232   setAxisScale( curveXAxis( myDensity ), min_x, max_x );
233   setAxisScale( curveYAxis( myDensity ), min( 0.0, min_y ), max( 0.0, max_y ) );
234   setCurveData( myDensity, x, y, size );
235   if( x )
236     delete[] x;
237   if( y )
238     delete[] y;
239   x = y = 0;
240
241   size = distr.length();
242   x = new double[size];
243   y = new double[size];
244   for( int i=0; i<size; i++ )
245   {
246     x[i] = distr[i];
247     y[i] = 0;
248   }
249   setCurveData( myDistr, x, y, size );
250   delete[] x;
251   delete[] y;
252   x = y = 0;
253
254   try {   
255 #ifdef NO_CAS_CATCH
256     OCC_CATCH_SIGNALS;
257 #endif
258     replot();
259   } catch(Standard_Failure) {
260     Handle(Standard_Failure) aFail = Standard_Failure::Caught();
261   }
262 }
263
264 void StdMeshersGUI_DistrPreview::showError()
265 {
266   setAxisScale( curveXAxis( myDensity ), 0.0, 1.0 );
267   setAxisScale( curveYAxis( myDensity ), 0.0, 1.0 );
268   setCurveData( myDensity, 0, 0, 0 );
269   setCurveData( myDistr, 0, 0, 0 );
270   setMarkerLabel( myMsg, tr( "SMESH_INVALID_FUNCTION" ) );
271   replot();
272 }
273
274 bool isCorrectArg( const Handle( Expr_GeneralExpression )& expr )
275 {
276   Handle( Expr_NamedUnknown ) sub = Handle( Expr_NamedUnknown )::DownCast( expr );
277   if( !sub.IsNull() )
278     return sub->GetName()=="t";
279
280   bool res = true;
281   for( int i=1, n=expr->NbSubExpressions(); i<=n && res; i++ )
282   {
283     Handle( Expr_GeneralExpression ) sub = expr->SubExpression( i );
284     Handle( Expr_NamedUnknown ) name = Handle( Expr_NamedUnknown )::DownCast( sub );
285     if( !name.IsNull() )
286     {
287       if( name->GetName()!="t" )
288         res = false;
289     }
290     else
291       res = isCorrectArg( sub );
292   }
293   return res;
294 }
295
296 bool StdMeshersGUI_DistrPreview::init( const QString& str )
297 {
298   bool parsed_ok = true;
299   try {
300 #ifdef NO_CAS_CATCH
301     OCC_CATCH_SIGNALS;
302 #endif
303     myExpr = ExprIntrp_GenExp::Create();
304     myExpr->Process( ( Standard_CString ) str.latin1() );
305   } catch(Standard_Failure) {
306     Handle(Standard_Failure) aFail = Standard_Failure::Caught();
307     parsed_ok = false;
308   }
309
310   bool syntax = false, args = false;
311   if( parsed_ok && myExpr->IsDone() )
312   {
313     syntax = true;
314     args = isCorrectArg( myExpr->Expression() );
315   }
316
317   bool res = parsed_ok && syntax && args;
318   if( !res )
319     myExpr.Nullify();
320   return res;
321 }
322
323 double StdMeshersGUI_DistrPreview::funcValue( const double t, bool& ok )
324 {
325   if( myExpr.IsNull() )
326     return 0;
327
328   myValues.ChangeValue( 1 ) = t;
329
330   ok = true;
331   double res = calc( ok );
332
333   return res;
334 }
335
336 double StdMeshersGUI_DistrPreview::calc( bool& ok )
337 {
338   double res = 0.0;
339
340   ok = true;
341   try {   
342 #ifdef NO_CAS_CATCH
343     OCC_CATCH_SIGNALS;
344 #endif
345     res = myExpr->Expression()->Evaluate( myVars, myValues );
346   } catch(Standard_Failure) {
347     Handle(Standard_Failure) aFail = Standard_Failure::Caught();
348     ok = false;
349     res = 0.0;
350   }
351
352   return res;
353 }
354
355 bool StdMeshersGUI_DistrPreview::isDone() const
356 {
357   return myIsDone;
358 }
359
360 bool StdMeshersGUI_DistrPreview::convert( double& v ) const
361 {
362   bool ok = true;
363   switch( myConv )
364   {
365   case EXPONENT:
366     {
367       try { 
368 #ifdef NO_CAS_CATCH
369         OCC_CATCH_SIGNALS;
370 #endif
371         // in StdMeshers_NumberOfSegments.cc
372         // const double PRECISION = 1e-7;
373         //
374         if(v < -7) v = -7.0;
375         v = pow( 10.0, v );
376       } catch(Standard_Failure) {
377         Handle(Standard_Failure) aFail = Standard_Failure::Caught();
378         v = 0.0;
379         ok = false;
380       }
381     }
382     break;
383
384   case CUT_NEGATIVE:
385     if( v<0 )
386       v = 0;
387     break;
388   }
389
390   return ok;
391 }