Files
libreoffice/autodoc/source/parser/cpp/c_dealer.cxx
Oliver Bolte 29179887b5 INTEGRATION: CWS pchfix02 (1.4.30); FILE MERGED
2006/09/01 17:15:41 kaib 1.4.30.1: #i68856# Added header markers and pch files
2006-09-16 15:58:07 +00:00

180 lines
4.5 KiB
C++

/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: c_dealer.cxx,v $
*
* $Revision: 1.5 $
*
* last change: $Author: obo $ $Date: 2006-09-16 16:58:07 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* 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.
*
* This library 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 for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_autodoc.hxx"
#include <precomp.h>
#include "c_dealer.hxx"
// NOT FULLY DECLARED SERVICES
#include <ary/cpp/c_rwgate.hxx>
#include <ary/cpp/crwg_grp.hxx>
#include <ary/cpp/cg_proj.hxx>
#include <ary/loc/l_rwgate.hxx>
#include <ary/loc/loc_root.hxx>
#include <ary/loc/loc_file.hxx>
#include <ary/docu.hxx>
#include <adoc/a_rdocu.hxx>
#include "all_toks.hxx"
#include "c_rcode.hxx"
namespace ary
{
namespace cpp
{
class ProjectGroup;
}
namespace loc
{
class LocationRoot;
}
class Documentation;
}
namespace cpp
{
Distributor::Distributor( ary::cpp::RwGate & io_rAryGate )
: // aCppPreProcessor,
aCodeExplorer(io_rAryGate),
// aDocuExplorer,
pGate(&io_rAryGate),
pFileEventHandler(0),
pDocuDistributor(0)
{
pFileEventHandler = & aCodeExplorer.FileEventHandler();
pDocuDistributor = & aCodeExplorer.DocuDistributor();
}
void
Distributor::AssignPartners( CharacterSource & io_rSourceText,
const MacroMap & i_rValidMacros )
{
aCppPreProcessor.AssignPartners(aCodeExplorer, io_rSourceText, i_rValidMacros);
}
Distributor::~Distributor()
{
}
void
Distributor::StartNewProject( const udmstri & i_sProjectName,
const csv::ploc::Path & i_rProjectRootDirectory )
{
ary::loc::LocationRoot & rRoot
= pGate->Locations().CheckIn_Root( i_rProjectRootDirectory );
ary::cpp::ProjectGroup & rProject
= pGate->Groups().CheckIn_ProjectGroup( i_sProjectName, rRoot.Id() );
pFileEventHandler->SetCurProject(rProject);
}
void
Distributor::StartNewFile( const udmstri & i_sFileName,
const csv::ploc::DirectoryChain & i_rFileSubPath )
{
ary::loc::SourceCodeFile & rFile
= pGate->Locations().CheckIn_File(
i_sFileName,
i_rFileSubPath,
pFileEventHandler->CurProject().RootDir() );
ary::cpp::FileGroup & rCurFile
= pGate->Groups().CheckIn_FileGroup(
rFile.Id(),
pFileEventHandler->CurProject().Id_Group(),
i_sFileName );
pFileEventHandler->SetCurFile(rCurFile, i_sFileName);
aCodeExplorer.StartNewFile();
csv_assert( pDocuDistributor != 0 );
aDocuExplorer.StartNewFile(*pDocuDistributor);
}
void
Distributor::Deal_Eol()
{
pFileEventHandler->Event_IncrLineCount();
}
void
Distributor::Deal_Eof()
{
// Do nothing yet.
}
void
Distributor::Deal_Cpp_UnblockMacro( Tok_UnblockMacro & let_drToken )
{
aCppPreProcessor.UnblockMacro(let_drToken.Text());
delete &let_drToken;
}
void
Distributor::Deal_CppCode( cpp::Token & let_drToken )
{
aCppPreProcessor.Process_Token(let_drToken);
}
void
Distributor::Deal_AdcDocu( adoc::Token & let_drToken )
{
aDocuExplorer.Process_Token(let_drToken);
}
Distributor *
Distributor::AsDistributor()
{
return this;
}
} // namespace cpp