office-gobmx/autodoc/source/display/html/cre_link.cxx
Sebastian Spaeth e9a59da46a Add vim/emacs modelines to all source files
Fixes #fdo30794
Based on bin/add-modelines script (originally posted in mail
1286706307.1871.1399280959@webmail.messagingengine.com)

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
2010-10-13 10:58:04 +02:00

272 lines
7.5 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org 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 Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#include <precomp.h>
#include "cre_link.hxx"
// NOT FULLY DEFINED SERVICES
#include <ary/cpp/c_class.hxx>
#include <ary/cpp/c_define.hxx>
#include <ary/cpp/c_enum.hxx>
#include <ary/cpp/c_enuval.hxx>
#include <ary/cpp/c_funct.hxx>
#include <ary/cpp/c_gate.hxx>
#include <ary/cpp/c_macro.hxx>
#include <ary/cpp/c_namesp.hxx>
#include <ary/cpp/c_tydef.hxx>
#include <ary/cpp/c_vari.hxx>
#include <ary/cpp/cp_ce.hxx>
#include <ary/loc/loc_file.hxx>
#include <ary/loc/locp_le.hxx>
#include "hdimpl.hxx"
#include "opageenv.hxx"
#include "strconst.hxx"
LinkCreator::LinkCreator( char * o_rOutput,
uintt i_nOutputSize )
: pOut(o_rOutput),
nOutMaxSize(i_nOutputSize),
pEnv(0)
{
}
LinkCreator::~LinkCreator()
{
}
void
LinkCreator::do_Process( const ary::cpp::Namespace & i_rData )
{
Create_PrePath( i_rData );
strcat( pOut, "index.html" ); // KORR_FUTURE // SAFE STRCAT (#100211# - checked)
}
void
LinkCreator::do_Process( const ary::cpp::Class & i_rData )
{
Create_PrePath( i_rData );
strcat( pOut, ClassFileName(i_rData.LocalName().c_str()) ); // SAFE STRCAT (#100211# - checked)
}
void
LinkCreator::do_Process( const ary::cpp::Enum & i_rData )
{
Create_PrePath( i_rData );
strcat( pOut, EnumFileName(i_rData.LocalName().c_str()) ); // SAFE STRCAT (#100211# - checked)
}
void
LinkCreator::do_Process( const ary::cpp::Typedef & i_rData )
{
Create_PrePath( i_rData );
strcat( pOut, TypedefFileName(i_rData.LocalName().c_str()) ); // SAFE STRCAT (#100211# - checked)
}
void
LinkCreator::do_Process( const ary::cpp::Function & i_rData )
{
Create_PrePath( i_rData );
if ( i_rData.Protection() != ary::cpp::PROTECT_global )
{
strcat( pOut, "o.html" ); // SAFE STRCAT (#100211# - checked)
}
else
{
csv_assert(i_rData.Location().IsValid());
const ary::loc::File &
rFile = pEnv->Gate().Locations().Find_File(i_rData.Location());
strcat( pOut, HtmlFileName("o-", rFile.LocalName().c_str()) ); // SAFE STRCAT (#100211# - checked)
}
csv_assert(pEnv != 0);
strcat( pOut, OperationLink(pEnv->Gate(), i_rData.LocalName(), i_rData.CeId()) ); // SAFE STRCAT (#100211# - checked)
}
void
LinkCreator::do_Process( const ary::cpp::Variable & i_rData )
{
Create_PrePath( i_rData );
if ( i_rData.Protection() != ary::cpp::PROTECT_global )
{
strcat( pOut, "d.html" ); // SAFE STRCAT (#100211# - checked)
}
else
{
csv_assert(i_rData.Location().IsValid());
const ary::loc::File &
rFile = pEnv->Gate().Locations().Find_File(i_rData.Location());
strcat( pOut, HtmlFileName("d-", rFile.LocalName().c_str()) ); // SAFE STRCAT (#100211# - checked)
}
strcat( pOut, DataLink(i_rData.LocalName()) ); // SAFE STRCAT (#100211# - checked)
}
void
LinkCreator::do_Process( const ary::cpp::EnumValue & i_rData )
{
const ary::cpp::CodeEntity *
pEnum = pEnv->Gate().Ces().Search_Ce(i_rData.Owner());
if (pEnum == 0)
return;
pEnum->Accept(*this);
strcat(pOut, "#"); // SAFE STRCAT (#100211# - checked)
strcat(pOut, i_rData.LocalName().c_str()); // SAFE STRCAT (#100211# - checked)
}
void
LinkCreator::do_Process( const ary::cpp::Define & i_rData )
{
// KORR_FUTURE
// Only valid from Index:
*pOut = '\0';
strcat(pOut, "../def-all.html#"); // SAFE STRCAT (#100211# - checked)
strcat(pOut, i_rData.LocalName().c_str()); // SAFE STRCAT (#100211# - checked)
}
void
LinkCreator::do_Process( const ary::cpp::Macro & i_rData )
{
// KORR_FUTURE
// Only valid from Index:
*pOut = '\0';
strcat(pOut, "../def-all.html#"); // SAFE STRCAT (#100211# - checked)
strcat(pOut, i_rData.LocalName().c_str()); // SAFE STRCAT (#100211# - checked)
}
namespace
{
class NameScope_const_iterator
{
public:
NameScope_const_iterator(
ary::cpp::Ce_id i_nId,
const ary::cpp::Gate &
i_rGate );
operator bool() const { return pCe != 0; }
const String & operator*() const;
void go_up();
private:
const ary::cpp::CodeEntity *
pCe;
const ary::cpp::Gate *
pGate;
};
NameScope_const_iterator::NameScope_const_iterator(
ary::cpp::Ce_id i_nId,
const ary::cpp::Gate & i_rGate )
: pCe(i_rGate.Ces().Search_Ce(i_nId)),
pGate(&i_rGate)
{
}
const String &
NameScope_const_iterator::operator*() const
{
return pCe ? pCe->LocalName()
: String::Null_();
}
void
NameScope_const_iterator::go_up()
{
if (pCe == 0)
return;
pCe = pGate->Ces().Search_Ce(pCe->Owner());
}
void Recursive_CreatePath(
char * o_pOut,
const NameScope_const_iterator &
i_it );
void
Recursive_CreatePath( char * o_pOut,
const NameScope_const_iterator & i_it )
{
if (NOT i_it)
return;
NameScope_const_iterator it( i_it );
it.go_up();
if (NOT it)
return; // Global Namespace
Recursive_CreatePath( o_pOut, it );
strcat( o_pOut, (*i_it).c_str() ); // SAFE STRCAT (#100211# - checked)
strcat( o_pOut, "/" ); // SAFE STRCAT (#100211# - checked)
}
} // anonymous namespace
void
LinkCreator::Create_PrePath( const ary::cpp::CodeEntity & i_rData )
{
*pOut = NULCH;
if ( pEnv->CurNamespace() != 0 )
{
if ( pEnv->CurClass()
? pEnv->CurClass()->CeId() == i_rData.Owner()
: pEnv->CurNamespace()->CeId() == i_rData.Owner() )
return;
strcat( pOut, PathUp(pEnv->Depth() - 1) ); // SAFE STRCAT (#100211# - checked)
}
else
{ // Within Index
strcat( pOut, "../names/" ); // SAFE STRCAT (#100211# - checked)
}
NameScope_const_iterator it( i_rData.Owner(), pEnv->Gate() );
Recursive_CreatePath( pOut, it );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */