summaryrefslogtreecommitdiff
path: root/autodoc/source/ary/loc/loca_le.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-01-19 00:02:54 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-01-19 08:26:52 +0100
commit8419668ea809036e734201770ff7a5a778509cce (patch)
tree36e13f9e3f9656faef0065f4c9205f37f432afc1 /autodoc/source/ary/loc/loca_le.cxx
parent18a7f72bc2814b0754d1a380182063438847e08d (diff)
Remove obsolete autodoc C++ functionality.
Diffstat (limited to 'autodoc/source/ary/loc/loca_le.cxx')
-rw-r--r--autodoc/source/ary/loc/loca_le.cxx184
1 files changed, 0 insertions, 184 deletions
diff --git a/autodoc/source/ary/loc/loca_le.cxx b/autodoc/source/ary/loc/loca_le.cxx
deleted file mode 100644
index 428ca5849ccb..000000000000
--- a/autodoc/source/ary/loc/loca_le.cxx
+++ /dev/null
@@ -1,184 +0,0 @@
-/* -*- 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 "loca_le.hxx"
-
-
-// NOT FULLY DEFINED SERVICES
-#include <ary/loc/loc_dir.hxx>
-#include <ary/loc/loc_file.hxx>
-#include <ary/loc/loc_root.hxx>
-#include <loc_internalgate.hxx>
-#include "locs_le.hxx"
-
-
-
-
-namespace ary
-{
-namespace loc
-{
-
-DYN LocationPilot &
-InternalGate::Create_Locations_()
-{
- return *new LocationAdmin;
-}
-
-
-
-
-inline Le_Storage &
-LocationAdmin::Storage() const
-{
- csv_assert(pStorage);
- return *pStorage.MutablePtr();
-}
-
-
-LocationAdmin::LocationAdmin()
- : pStorage(new Le_Storage)
-{
-}
-
-LocationAdmin::~LocationAdmin()
-{
-}
-
-Root &
-LocationAdmin::CheckIn_Root(const csv::ploc::Path & i_path)
-{
- Dyn<Root>
- p_new( new Root(i_path) );
-
- Le_id
- id = Storage().RootIndex().Search(p_new->LocalName());
- if ( id.IsValid() )
- {
- return ary_cast<Root>(Storage()[id]);
- }
-
- Root *
- ret = p_new.Ptr();
- Storage().Store_Entity(*p_new.Release());
- Storage().RootIndex().Add(ret->LeId());
-
- Directory *
- p_rootdir = new Directory(ret->LeId());
- Storage().Store_Entity(*p_rootdir);
- ret->Assign_Directory(p_rootdir->LeId());
-
- return *ret;
-}
-
-File &
-LocationAdmin::CheckIn_File( const String & i_name,
- const csv::ploc::DirectoryChain & i_subPath,
- Le_id i_root )
-{
- Root &
- root = Find_Root(i_root);
- Directory &
- parent_dir = CheckIn_Directories(
- Find_Directory(root.MyDir()),
- i_subPath.Begin(),
- i_subPath.End() );
- Le_id
- fid = parent_dir.Search_File(i_name);
- if (NOT fid.IsValid())
- {
- File *
- ret = new File(i_name, parent_dir.LeId());
- Storage().Store_Entity(*ret);
- parent_dir.Add_File(*ret);
- return *ret;
- }
- else
- {
- return Find_File(fid);
- }
-}
-
-Root &
-LocationAdmin::Find_Root(Le_id i_id) const
-{
- return ary_cast<Root>(Storage()[i_id]);
-}
-
-Directory &
-LocationAdmin::Find_Directory(Le_id i_id) const
-{
- return ary_cast<Directory>(Storage()[i_id]);
-}
-
-File &
-LocationAdmin::Find_File(Le_id i_id) const
-{
- return ary_cast<File>(Storage()[i_id]);
-}
-
-Directory &
-LocationAdmin::CheckIn_Directory( Directory & io_parent,
- const String & i_name )
-{
- Le_id
- did = io_parent.Search_Dir(i_name);
- if (NOT did.IsValid())
- {
- Directory *
- ret = new Directory(i_name, io_parent.LeId());
- Storage().Store_Entity(*ret);
- io_parent.Add_Dir(*ret);
- return *ret;
- }
- else
- {
- return Find_Directory(did);
- }
-}
-
-Directory &
-LocationAdmin::CheckIn_Directories(
- Directory & io_root,
- StringVector::const_iterator i_beginSubPath,
- StringVector::const_iterator i_endSubPath )
-{
- if (i_beginSubPath == i_endSubPath)
- return io_root;
-
- Directory &
- next = CheckIn_Directory(io_root, *i_beginSubPath);
- return CheckIn_Directories(next, i_beginSubPath+1, i_endSubPath);
-}
-
-
-} // namespace loc
-} // namespace ary
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */