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 552 : explicit Cursor(std::map< OUString, rtl::Reference<Entity> > const & map):
26 552 : map_(map), iterator_(map_.begin())
27 552 : {}
28 :
29 : private:
30 1104 : 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 4541 : rtl::Reference< Entity > Cursor::getNext(OUString * name) {
39 : assert(name != 0);
40 4541 : rtl::Reference< Entity > ent;
41 4541 : if (iterator_ != map_.end()) {
42 3989 : *name = iterator_->first;
43 3989 : ent = iterator_->second;
44 3989 : ++iterator_;
45 : }
46 4541 : return ent;
47 : }
48 :
49 : class Module: public ModuleEntity {
50 : public:
51 257 : Module() {}
52 :
53 : std::map< OUString, rtl::Reference<Entity> > map;
54 :
55 : private:
56 514 : virtual ~Module() throw () {}
57 :
58 : virtual std::vector<rtl::OUString> getMemberNames() const SAL_OVERRIDE;
59 :
60 257 : virtual rtl::Reference<MapCursor> createCursor() const SAL_OVERRIDE
61 257 : { 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 665 : SourceFileProvider::SourceFileProvider(
78 1035 : rtl::Reference<Manager> const & manager, OUString const & uri)
79 : {
80 665 : SourceProviderScannerData data(manager);
81 665 : if (!parse(uri, &data)) {
82 0 : throw NoSuchFileException(uri);
83 : }
84 13686 : for (std::map<OUString, SourceProviderEntity>::iterator i(
85 295 : data.entities.begin());
86 9124 : i != data.entities.end(); ++i)
87 : {
88 4267 : if (i->second.kind == SourceProviderEntity::KIND_LOCAL) {
89 : assert(i->second.entity.is());
90 : assert(i->second.entity->getSort() != Entity::SORT_MODULE);
91 3732 : std::map< OUString, rtl::Reference<Entity> > * map = &rootMap_;
92 3732 : for (sal_Int32 j = 0;;) {
93 16566 : OUString id(i->first.getToken(0, '.', j));
94 16566 : if (j == -1) {
95 3732 : map->insert(std::make_pair(id, i->second.entity));
96 3732 : break;
97 : }
98 : std::map< OUString, rtl::Reference<Entity> >::const_iterator k(
99 12834 : map->find(id));
100 12834 : if (k == map->end()) {
101 257 : k = map->insert(std::make_pair(id, new Module)).first;
102 : }
103 12834 : Module& mod = dynamic_cast<Module&>(*k->second.get());
104 12834 : map = &mod.map;
105 12834 : }
106 : }
107 665 : }
108 295 : }
109 :
110 295 : rtl::Reference<MapCursor> SourceFileProvider::createRootCursor() const {
111 295 : return new Cursor(rootMap_);
112 : }
113 :
114 4400 : rtl::Reference<Entity> SourceFileProvider::findEntity(OUString const & name)
115 : const
116 : {
117 4400 : std::map< OUString, rtl::Reference<Entity> > const * map = &rootMap_;
118 4400 : for (sal_Int32 i = 0;;) {
119 21752 : OUString id(name.getToken(0, '.', i));
120 : std::map< OUString, rtl::Reference<Entity> >::const_iterator j(
121 21752 : map->find(id));
122 21752 : if (j == map->end()) {
123 1623 : return rtl::Reference<Entity>();
124 : }
125 20129 : if (i == -1) {
126 2777 : return j->second;
127 : }
128 17352 : if (j->second->getSort() != Entity::SORT_MODULE) {
129 0 : return rtl::Reference<Entity>();
130 : }
131 17352 : Module * mod = dynamic_cast< Module * >(j->second.get());
132 : assert(mod != 0);
133 17352 : map = &mod->map;
134 17352 : }
135 : }
136 :
137 590 : SourceFileProvider::~SourceFileProvider() throw () {}
138 :
139 : } }
140 :
141 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|