1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir #include <precomp.h> 29*cdf0e10cSrcweir #include "hfi_doc.hxx" 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir 32*cdf0e10cSrcweir // NOT FULLY DEFINED SERVICES 33*cdf0e10cSrcweir #include <ary/idl/i_ce.hxx> 34*cdf0e10cSrcweir #include <ary/doc/d_oldidldocu.hxx> 35*cdf0e10cSrcweir #include <ary_i/d_token.hxx> 36*cdf0e10cSrcweir #include <toolkit/hf_docentry.hxx> 37*cdf0e10cSrcweir #include "hfi_tag.hxx" 38*cdf0e10cSrcweir #include "hi_ary.hxx" 39*cdf0e10cSrcweir 40*cdf0e10cSrcweir 41*cdf0e10cSrcweir 42*cdf0e10cSrcweir 43*cdf0e10cSrcweir HF_IdlDocu::HF_IdlDocu( Environment & io_rEnv, 44*cdf0e10cSrcweir HF_DocEntryList & o_rOut ) 45*cdf0e10cSrcweir : HtmlFactory_Idl( io_rEnv, &o_rOut.CurOut() ), 46*cdf0e10cSrcweir rOut(o_rOut) 47*cdf0e10cSrcweir { 48*cdf0e10cSrcweir } 49*cdf0e10cSrcweir 50*cdf0e10cSrcweir HF_IdlDocu::~HF_IdlDocu() 51*cdf0e10cSrcweir { 52*cdf0e10cSrcweir } 53*cdf0e10cSrcweir 54*cdf0e10cSrcweir void 55*cdf0e10cSrcweir HF_IdlDocu::Produce_fromCodeEntity( const client & i_ce ) const 56*cdf0e10cSrcweir { 57*cdf0e10cSrcweir const ce_info * 58*cdf0e10cSrcweir i_pDocu = Get_IdlDocu(i_ce.Docu()); 59*cdf0e10cSrcweir if (i_pDocu != 0) 60*cdf0e10cSrcweir Produce_byDocuAndScope(*i_pDocu, &i_ce, i_ce); 61*cdf0e10cSrcweir } 62*cdf0e10cSrcweir 63*cdf0e10cSrcweir void 64*cdf0e10cSrcweir HF_IdlDocu::Produce_fromReference( const ce_info & i_rDocuForReference, 65*cdf0e10cSrcweir const client & i_rScopeGivingCe ) const 66*cdf0e10cSrcweir { 67*cdf0e10cSrcweir Produce_byDocuAndScope(i_rDocuForReference, 0, i_rScopeGivingCe ); 68*cdf0e10cSrcweir } 69*cdf0e10cSrcweir 70*cdf0e10cSrcweir void 71*cdf0e10cSrcweir HF_IdlDocu::Produce_byDocuAndScope( const ce_info & i_rDocu, 72*cdf0e10cSrcweir const client * i_pClient, 73*cdf0e10cSrcweir const client & i_rScopeGivingCe ) const 74*cdf0e10cSrcweir { 75*cdf0e10cSrcweir bool bShort = NOT i_rDocu.Short().IsEmpty(); 76*cdf0e10cSrcweir bool bDescr = NOT i_rDocu.Description().IsEmpty(); 77*cdf0e10cSrcweir 78*cdf0e10cSrcweir if ( i_rDocu.IsDeprecated() 79*cdf0e10cSrcweir OR ( 80*cdf0e10cSrcweir (i_pClient != 0 ? i_pClient->SightLevel() == ary::idl::sl_File : false) 81*cdf0e10cSrcweir AND NOT i_rDocu.IsPublished() 82*cdf0e10cSrcweir ) 83*cdf0e10cSrcweir OR i_rDocu.IsOptional() ) 84*cdf0e10cSrcweir { // any usage restriction 85*cdf0e10cSrcweir rOut.Produce_Term("Usage Restrictions"); 86*cdf0e10cSrcweir 87*cdf0e10cSrcweir if ( i_rDocu.IsDeprecated() ) 88*cdf0e10cSrcweir rOut.Produce_Definition() >> *new Html::Italic << "deprecated"; 89*cdf0e10cSrcweir if ( (i_pClient != 0 ? i_pClient->SightLevel() == ary::idl::sl_File : false) 90*cdf0e10cSrcweir AND NOT i_rDocu.IsPublished() ) 91*cdf0e10cSrcweir rOut.Produce_Definition() >> *new Html::Italic << "not published"; 92*cdf0e10cSrcweir if ( i_rDocu.IsOptional() ) 93*cdf0e10cSrcweir rOut.Produce_Definition() >> *new Html::Italic << "optional"; 94*cdf0e10cSrcweir 95*cdf0e10cSrcweir if ( i_rDocu.IsDeprecated() AND 96*cdf0e10cSrcweir // KORR_FUTURE 97*cdf0e10cSrcweir // Workaround, because DocuTex2::IsEmpty() does not 98*cdf0e10cSrcweir // calculate whitespace tokens only as empty. 99*cdf0e10cSrcweir i_rDocu.DeprecatedText().Tokens().size() > 1 ) 100*cdf0e10cSrcweir { 101*cdf0e10cSrcweir rOut.Produce_Term("Deprecation Info"); 102*cdf0e10cSrcweir 103*cdf0e10cSrcweir HF_IdlDocuTextDisplay 104*cdf0e10cSrcweir aDescription( Env(), 0, i_rScopeGivingCe); 105*cdf0e10cSrcweir aDescription.Out().Enter( rOut.Produce_Definition() ); 106*cdf0e10cSrcweir i_rDocu.DeprecatedText().DisplayAt( aDescription ); 107*cdf0e10cSrcweir aDescription.Out().Leave(); 108*cdf0e10cSrcweir } 109*cdf0e10cSrcweir } // end if (<any usage restriction>) 110*cdf0e10cSrcweir 111*cdf0e10cSrcweir if ( bShort OR bDescr ) 112*cdf0e10cSrcweir { 113*cdf0e10cSrcweir rOut.Produce_Term("Description"); 114*cdf0e10cSrcweir HF_IdlDocuTextDisplay 115*cdf0e10cSrcweir aDescription( Env(), 0, i_rScopeGivingCe); 116*cdf0e10cSrcweir if (bShort) 117*cdf0e10cSrcweir { 118*cdf0e10cSrcweir aDescription.Out().Enter( rOut.Produce_Definition() ); 119*cdf0e10cSrcweir i_rDocu.Short().DisplayAt( aDescription ); 120*cdf0e10cSrcweir aDescription.Out().Leave(); 121*cdf0e10cSrcweir } 122*cdf0e10cSrcweir if (bDescr) 123*cdf0e10cSrcweir { 124*cdf0e10cSrcweir aDescription.Out().Enter( rOut.Produce_Definition() ); 125*cdf0e10cSrcweir i_rDocu.Description().DisplayAt( aDescription ); 126*cdf0e10cSrcweir aDescription.Out().Leave(); 127*cdf0e10cSrcweir } 128*cdf0e10cSrcweir } 129*cdf0e10cSrcweir 130*cdf0e10cSrcweir std::vector< csi::dsapi::DT_SeeAlsoAtTag* > 131*cdf0e10cSrcweir aSeeAlsosWithoutText; 132*cdf0e10cSrcweir std::vector< csi::dsapi::DT_SeeAlsoAtTag* > 133*cdf0e10cSrcweir aSeeAlsosWithText; 134*cdf0e10cSrcweir 135*cdf0e10cSrcweir for ( std::vector< ary::inf::AtTag2* >::const_iterator 136*cdf0e10cSrcweir iter = i_rDocu.Tags().begin(); 137*cdf0e10cSrcweir iter != i_rDocu.Tags().end(); 138*cdf0e10cSrcweir ++iter ) 139*cdf0e10cSrcweir { 140*cdf0e10cSrcweir csi::dsapi::DT_SeeAlsoAtTag* 141*cdf0e10cSrcweir pSeeAlso = dynamic_cast< csi::dsapi::DT_SeeAlsoAtTag * >(*iter); 142*cdf0e10cSrcweir if (pSeeAlso != 0 ) 143*cdf0e10cSrcweir { 144*cdf0e10cSrcweir if ( pSeeAlso->Text().IsEmpty() ) 145*cdf0e10cSrcweir { 146*cdf0e10cSrcweir aSeeAlsosWithoutText.push_back(pSeeAlso); 147*cdf0e10cSrcweir } 148*cdf0e10cSrcweir else 149*cdf0e10cSrcweir { 150*cdf0e10cSrcweir aSeeAlsosWithText.push_back(pSeeAlso); 151*cdf0e10cSrcweir } 152*cdf0e10cSrcweir continue; 153*cdf0e10cSrcweir } 154*cdf0e10cSrcweir 155*cdf0e10cSrcweir if ( strlen( (*iter)->Title() ) > 0 ) 156*cdf0e10cSrcweir { 157*cdf0e10cSrcweir HF_IdlTag 158*cdf0e10cSrcweir aTag(Env(), i_rScopeGivingCe); 159*cdf0e10cSrcweir Xml::Element & 160*cdf0e10cSrcweir rTerm = rOut.Produce_Term(); 161*cdf0e10cSrcweir aTag.Produce_byData( rTerm, 162*cdf0e10cSrcweir rOut.Produce_Definition(), 163*cdf0e10cSrcweir *(*iter) ); 164*cdf0e10cSrcweir } 165*cdf0e10cSrcweir } // end for 166*cdf0e10cSrcweir 167*cdf0e10cSrcweir if (aSeeAlsosWithoutText.size() > 0) 168*cdf0e10cSrcweir { 169*cdf0e10cSrcweir HF_IdlTag 170*cdf0e10cSrcweir aSeeAlsoTag(Env(), i_rScopeGivingCe); 171*cdf0e10cSrcweir Xml::Element & 172*cdf0e10cSrcweir rTerm = rOut.Produce_Term(); 173*cdf0e10cSrcweir aSeeAlsoTag.Produce_byData( rTerm, 174*cdf0e10cSrcweir rOut.Produce_Definition(), 175*cdf0e10cSrcweir aSeeAlsosWithoutText ); 176*cdf0e10cSrcweir } 177*cdf0e10cSrcweir 178*cdf0e10cSrcweir for ( std::vector< csi::dsapi::DT_SeeAlsoAtTag* >::const_iterator 179*cdf0e10cSrcweir itSee2 = aSeeAlsosWithText.begin(); 180*cdf0e10cSrcweir itSee2 != aSeeAlsosWithText.end(); 181*cdf0e10cSrcweir ++itSee2 ) 182*cdf0e10cSrcweir { 183*cdf0e10cSrcweir HF_IdlTag 184*cdf0e10cSrcweir aTag(Env(), i_rScopeGivingCe); 185*cdf0e10cSrcweir Xml::Element & 186*cdf0e10cSrcweir rTerm = rOut.Produce_Term(); 187*cdf0e10cSrcweir aTag.Produce_byData( rTerm, 188*cdf0e10cSrcweir rOut.Produce_Definition(), 189*cdf0e10cSrcweir *(*itSee2) ); 190*cdf0e10cSrcweir } // end for 191*cdf0e10cSrcweir } 192