#include #include #include #include #include #include static TCollection_AsciiString lastvalue; StepSelect_StepType::StepSelect_StepType () : IFSelect_Signature ("Step Type") { } void StepSelect_StepType::SetProtocol (const Handle(Interface_Protocol)& proto) { DeclareAndCast(StepData_Protocol,newproto,proto); if (newproto.IsNull()) Interface_InterfaceError::Raise("StepSelect_StepType"); theproto = newproto; thelib.Clear(); thelib.AddProtocol (theproto); thename.Clear(); thename.AssignCat ("Step Type (Schema "); thename.AssignCat (theproto->SchemaName()); thename.AssignCat (")"); } Standard_CString StepSelect_StepType::Value (const Handle(Standard_Transient)& ent, const Handle(Interface_InterfaceModel)& model) const { lastvalue.Clear(); Handle(StepData_ReadWriteModule) module; Standard_Integer CN; Standard_Boolean ok = thelib.Select (ent,module,CN); if (!ok) { lastvalue.AssignCat ("..NOT FROM SCHEMA "); lastvalue.AssignCat (theproto->SchemaName()); lastvalue.AssignCat (".."); } else { Standard_Boolean plex = module->IsComplex(CN); if (!plex) lastvalue = module->StepType(CN); else { lastvalue.AssignCat ("("); TColStd_SequenceOfAsciiString list; module->ComplexType (CN,list); Standard_Integer nb = list.Length(); if (nb == 0) lastvalue.AssignCat ("..COMPLEX TYPE.."); for (Standard_Integer i = 1; i <= nb; i ++) { if (i > 1) lastvalue.AssignCat (","); lastvalue.AssignCat (list.Value(i).ToCString()); } lastvalue.AssignCat (")"); } } if (lastvalue.Length() > 0) return lastvalue.ToCString(); DeclareAndCast(StepData_UndefinedEntity,und,ent); if (und.IsNull()) return lastvalue.ToCString(); if (und->IsComplex()) { lastvalue.AssignCat("("); while (!und.IsNull()) { lastvalue.AssignCat (und->StepType()); und = und->Next(); if (!und.IsNull()) lastvalue.AssignCat(","); } lastvalue.AssignCat(")"); } else return und->StepType(); return lastvalue.ToCString(); }