Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : */
9 :
10 : #include "sal/config.h"
11 :
12 : #include <map>
13 : #include <utility>
14 : #include <vector>
15 :
16 : #include "sourcefileprovider.hxx"
17 : #include "sourceprovider-scanner.hxx"
18 :
19 : namespace unoidl { namespace detail {
20 :
21 : namespace {
22 :
23 : class Cursor: public MapCursor {
24 : public:
25 328 : explicit Cursor(std::map< OUString, rtl::Reference<Entity> > const & map):
26 328 : map_(map), iterator_(map_.begin())
27 328 : {}
28 :
29 : private:
30 656 : virtual ~Cursor() throw () {}
31 :
32 : virtual rtl::Reference< Entity > getNext(OUString * name) SAL_OVERRIDE;
33 :
34 : std::map< OUString, rtl::Reference<Entity> > const & map_; //TODO: extent
35 : std::map< OUString, rtl::Reference<Entity> >::const_iterator iterator_;
36 : };
37 :
38 3927 : rtl::Reference< Entity > Cursor::getNext(OUString * name) {
39 : assert(name != 0);
40 3927 : rtl::Reference< Entity > ent;
41 3927 : if (iterator_ != map_.end()) {
42 3599 : *name = iterator_->first;
43 3599 : ent = iterator_->second;
44 3599 : ++iterator_;
45 : }
46 3927 : return ent;
47 : }
48 :
49 : class Module: public ModuleEntity {
50 : public:
51 177 : Module() {}
52 :
53 : std::map< OUString, rtl::Reference<Entity> > map;
54 :
55 : private:
56 354 : virtual ~Module() throw () {}
57 :
58 : virtual std::vector<rtl::OUString> getMemberNames() const SAL_OVERRIDE;
59 :
60 177 : virtual rtl::Reference<MapCursor> createCursor() const SAL_OVERRIDE
61 177 : { return new Cursor(map); }
62 : };
63 :
64 0 : std::vector<rtl::OUString> Module::getMemberNames() const {
65 0 : std::vector<rtl::OUString> names;
66 0 : for (std::map< OUString, rtl::Reference<Entity> >::const_iterator i(
67 0 : map.begin());
68 0 : i != map.end(); ++i)
69 : {
70 0 : names.push_back(i->first);
71 : }
72 0 : return names;
73 : }
74 :
75 : }
76 :
77 336 : SourceFileProvider::SourceFileProvider(
78 521 : rtl::Reference<Manager> const & manager, OUString const & uri)
79 : {
80 336 : SourceProviderScannerData data(manager);
81 336 : if (!parse(uri, &data)) {
82 0 : throw NoSuchFileException(uri);
83 : }
84 11835 : for (std::map<OUString, SourceProviderEntity>::iterator i(
85 151 : data.entities.begin());
86 7890 : i != data.entities.end(); ++i)
87 : {
88 3794 : if (i->second.kind == SourceProviderEntity::KIND_LOCAL) {
89 : assert(i->second.entity.is());
90 : assert(i->second.entity->getSort() != Entity::SORT_MODULE);
91 3422 : std::map< OUString, rtl::Reference<Entity> > * map = &rootMap_;
92 3422 : for (sal_Int32 j = 0;;) {
93 16132 : OUString id(i->first.getToken(0, '.', j));
94 16132 : if (j == -1) {
95 3422 : map->insert(std::make_pair(id, i->second.entity));
96 3422 : break;
97 : }
98 : std::map< OUString, rtl::Reference<Entity> >::const_iterator k(
99 12710 : map->find(id));
100 12710 : if (k == map->end()) {
101 177 : k = map->insert(std::make_pair(id, new Module)).first;
102 : }
103 12710 : Module& mod = dynamic_cast<Module&>(*k->second.get());
104 12710 : map = &mod.map;
105 12710 : }
106 : }
107 336 : }
108 151 : }
109 :
110 151 : rtl::Reference<MapCursor> SourceFileProvider::createRootCursor() const {
111 151 : return new Cursor(rootMap_);
112 : }
113 :
114 4427 : rtl::Reference<Entity> SourceFileProvider::findEntity(OUString const & name)
115 : const
116 : {
117 4427 : std::map< OUString, rtl::Reference<Entity> > const * map = &rootMap_;
118 4427 : for (sal_Int32 i = 0;;) {
119 21885 : OUString id(name.getToken(0, '.', i));
120 : std::map< OUString, rtl::Reference<Entity> >::const_iterator j(
121 21885 : map->find(id));
122 21885 : if (j == map->end()) {
123 1646 : return rtl::Reference<Entity>();
124 : }
125 20239 : if (i == -1) {
126 2781 : return j->second;
127 : }
128 17458 : if (j->second->getSort() != Entity::SORT_MODULE) {
129 0 : return rtl::Reference<Entity>();
130 : }
131 17458 : Module * mod = dynamic_cast< Module * >(j->second.get());
132 : assert(mod != 0);
133 17458 : map = &mod->map;
134 17458 : }
135 : }
136 :
137 302 : SourceFileProvider::~SourceFileProvider() throw () {}
138 :
139 : } }
140 :
141 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|