forked from Open-CMSIS-Pack/devtools
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathRteComponent.cpp
More file actions
1917 lines (1666 loc) · 47.4 KB
/
Copy pathRteComponent.cpp
File metadata and controls
1917 lines (1666 loc) · 47.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/******************************************************************************/
/* RTE - CMSIS Run-Time Environment */
/******************************************************************************/
/** @file RteComponent.cpp
* @brief CMSIS RTE Data model
*/
/******************************************************************************/
/*
* Copyright (c) 2020-2021 Arm Limited. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0
*/
/******************************************************************************/
#include "RteComponent.h"
#include "RteCondition.h"
#include "RtePackage.h"
#include "RteFile.h"
#include "RteModel.h"
#include "RteInstance.h"
#include "RteProject.h"
#include "RteGenerator.h"
#include "RteConstants.h"
#include "XMLTree.h"
using namespace std;
RteComponent::RteComponent(RteItem* parent) :
RteItem(parent),
m_files(0)
{
}
RteComponent::~RteComponent()
{
RteComponent::Clear();
}
void RteComponent::Clear()
{
m_files = 0;
RteItem::Clear();
}
bool RteComponent::Validate()
{
m_bValid = RteItem::Validate();
if (!m_bValid) {
string msg = CreateErrorString("error", "501", "error(s) in component definition:");
m_errors.push_front(msg);
}
RteModel* model = GetModel();
if (model && !IsApi()) {
RteComponent* c = model->GetComponent(GetID());
if (c && c != this && c->GetPackage() == GetPackage()) {
m_bValid = false;
string msg = CreateErrorString("warning", "520", "multiple component definition");
m_errors.push_back(msg);
}
}
return m_bValid;
}
bool RteComponent::Dominates(RteComponent *that) const {
RtePackage *thisPackage = GetPackage();
RtePackage *thatPackage = that ? that->GetPackage() : nullptr;
bool thisDominating = thisPackage ? thisPackage->IsDominating() : false;
bool thatDominating = thatPackage ? thatPackage->IsDominating() : false;
if (thisDominating && !thatDominating) // only this component dominates
return true;
// both dominate: return true if this component version newer than that one
if (thisDominating && thatDominating) {
return (VersionCmp::Compare(GetVersionString(), that->GetVersionString()) > 0);
}
return false;
}
string RteComponent::ConstructComponentPreIncludeFileName() const
{
string fileName = "Pre_Include_";
return fileName + WildCards::ToX(ConcatenateCclassCgroupCsub('_')) + ".h";
}
bool RteComponent::IsDeviceDependent() const
{
if (GetCclassName() == "Device")
return true;
return RteItem::IsDeviceDependent();
}
bool RteComponent::IsDeviceStartup() const
{
return GetCclassName() == "Device" &&
GetCgroupName() == "Startup" &&
GetCsubName().empty();
}
const string& RteComponent::GetName() const
{
return GetAttribute("Cname");
}
RteBundle* RteComponent::GetParentBundle() const
{
return dynamic_cast<RteBundle*>(GetParent());
}
size_t RteComponent::GetFileCount() const
{
return m_files ? m_files->GetChildCount() : 0;
}
RteItem::ConditionResult RteComponent::GetConditionResult(RteConditionContext* context) const
{
ConditionResult result = RteItem::GetConditionResult(context);
if (result < INSTALLED)
return result;
RteTarget* target = context->GetTarget();
RteItem::ConditionResult apiRes = IsApiAvailable(target);
if (apiRes < FULFILLED) {
return apiRes;
} else if(apiRes == FULFILLED) { // api exists
RteApi* thisApi = GetApi(target, true); // no need to check for NULL
set<RteComponent*> components;
apiRes = target->GetComponentsForApi(thisApi, components, true);
if (apiRes == CONFLICT) {
return apiRes;
}
}
return result;
}
const string& RteComponent::GetVendorString() const
{
if (IsApi())
return EMPTY_STRING;
const string& vendor = GetAttribute("Cvendor");
if (vendor.empty()) {
if (m_parent)
return m_parent->GetVendorString();
}
return vendor;
}
const string& RteComponent::GetVersionString() const
{
const string& s = GetAttribute("Cversion");
if (s.empty() && m_parent)
return m_parent->GetVersionString();
return s;
}
const string& RteComponent::GetCclassName() const
{
const string& s = GetAttribute("Cclass");
if (s.empty() && m_parent)
return m_parent->GetCclassName();
return s;
}
const string& RteComponent::GetCbundleName() const
{
const string& s = GetAttribute("Cbundle");
if (s.empty() && m_parent)
return m_parent->GetCbundleName();
return s;
}
string RteComponent::ConstructID()
{
return GetComponentUniqueID();
};
string RteComponent::GetDisplayName() const
{
string id = GetName();
if (id.empty()) {
if (!GetCsubName().empty()) {
id = GetCsubName();
} else {
id = GetCgroupName();
}
}
return id;
}
string RteComponent::GetFullDisplayName() const
{
return GetComponentID(true);
}
string RteComponent::GetDocFile() const
{
string doc;
if (!m_files)
return doc;
RteFile* fDoc = nullptr;
for (auto child : m_files->GetChildren()) {
RteFile* f = dynamic_cast<RteFile*>(child);
if (f && !f->IsConfig() && f->GetCategory() == RteFile::Category::DOC) {
fDoc = f;
break;
}
}
if (fDoc) {
doc = fDoc->GetDocFile();
}
return doc;
}
RteItem* RteComponent::CreateItem(const std::string& tag)
{
if (tag == "files") {
if (!m_files) {
m_files = new RteFileContainer(this);
}
return m_files;
}
return RteItem::CreateItem(tag);
}
void RteComponent::Construct()
{
RtePackage* pack = GetPackage();
if (pack && pack->IsGenerated()) {
SetAttribute("generated", "1");
}
// inherit attributes from bundle
if (GetAttribute("Cclass").empty()) {
AddAttribute("Cclass", GetCclassName());
}
// ensure Cvendor Cversion and Cbundle for components, not for apis
if (!IsApi()) {
if (m_parent && GetAttribute("Cbundle").empty()) {
AddAttribute("Cbundle", m_parent->GetCbundleName(), false); // insert bundle ID if not empty
}
if (GetAttribute("Cvendor").empty()) {
AddAttribute("Cvendor", GetVendorString());
}
if (GetAttribute("Cversion").empty()) {
AddAttribute("Cversion", GetVersionString(), false);
}
}
RteItem::Construct();
}
bool RteComponent::HasApi(RteTarget* target) const
{
if (HasAttribute("Capiversion"))
return true;
RteApi* a = nullptr;
string apiId = GetApiID(false);
if (target)
a = target->GetApi(apiId);
if (!a)
GetModel()->GetApi(apiId);
return a != nullptr;
}
RteItem::ConditionResult RteComponent::IsApiAvailable(RteTarget* target) const
{
if (!target) {
return UNAVAILABLE;
}
if (!HasApi(target)) {
return IGNORED;
}
RteApi* api = GetApi(target, true);
if (api) {
return FULFILLED;
}
api = GetApi(target, false);
if (!api) {
return MISSING_API;
}
if (api->GetApiVersionString().empty()) {
return FULFILLED; // API without version - deprecated case that we still need to support
}
return MISSING_API_VERSION;
}
RteApi* RteComponent::GetApi(RteTarget* target, bool matchVersion) const
{
if (!target) {
return nullptr;
}
if (matchVersion) {
return target->GetApi(GetAttributes());
}
return target->GetApi(GetApiID(false));
}
RteGenerator* RteComponent::GetGenerator() const
{
RteGenerator* generator = nullptr;
const string& generatorName = GetGeneratorName();
if (!generatorName.empty()) {
RtePackage* pack = GetPackage();
if (pack) {
generator = pack->GetGenerator(generatorName);
}
if (!generator && GetCallback()) {
generator = GetCallback()->GetExternalGenerator(generatorName);
}
}
return generator;
}
string RteComponent::GetGpdscFile(RteTarget* target) const
{
RtePackage* pack = GetPackage();
if (pack) {
if (IsGenerated()) {
return pack->GetPackageFileName();
} else {
RteGenerator* gen = GetGenerator();
if (gen) {
const auto& ci = target->GetProject()->GetComponentInstance(this->GetID());
const auto& genDir = ci ? ci->GetAttribute("gendir") : RteUtils::EMPTY_STRING;
return gen->GetExpandedGpdsc(target, genDir);
}
}
}
return EMPTY_STRING;
}
void RteComponent::FilterFiles(RteTarget* target)
{
if (!m_files)
return;
if (!target->IsTargetSupported())
return;
// iterate through full list selecting files that pass target.
set<RteFile*> s;
for (auto child : m_files->GetChildren()) {
RteFile* f = dynamic_cast<RteFile*>(child);
if (!f)
continue;
if (f->GetCondition() != nullptr) {
if (f->Evaluate(target->GetFilterContext()) < FULFILLED)
continue;
if (f->Evaluate(target->GetDependencySolver()) < FULFILLED)
continue;
}
s.insert(f);
}
if (!s.empty()) {
target->AddFilteredFiles(this, s);
}
}
void RteComponent::InsertInModel(RteModel* model)
{
if (model) {
model->InsertComponent(this);
}
}
RteApi::RteApi(RteItem* parent) :
RteComponent(parent)
{
}
bool RteApi::IsExclusive() const
{
string s = GetAttribute("exclusive");
if (s == "0" || s == "false")
return false;
return true; // true by default
}
string RteApi::GetFullDisplayName() const
{
return GetApiID(true);
}
string RteApi::GetComponentUniqueID() const
{
return GetApiID(true);
}
string RteApi::GetComponentID(bool withVersion) const
{
withVersion = false; // api ID is always without version (the latest is used)
return GetApiID(withVersion);
}
bool RteApi::Validate()
{
m_bValid = RteComponent::Validate();
return m_bValid;
}
RteComponentAggregate::RteComponentAggregate(RteItem* parent) :
RteComponentContainer(parent),
m_instance(0),
m_maxInstances(0),
m_bHasMaxInstances(false),
m_nSelected(0)
{
}
RteComponentAggregate::~RteComponentAggregate()
{
m_instance = 0;
RteComponentAggregate::Clear();
}
void RteComponentAggregate::Clear()
{
// NOTE! : implementation should not call base, as it does not allocate RteItem childeren
m_components.clear();
ClearAttributes();
}
bool RteComponentAggregate::IsFiltered() const
{
if (GetSelectedBundleShortID() != GetBundleShortID())
return false;
return true;
}
bool RteComponentAggregate::IsUsed() const
{
return m_instance != nullptr;
}
bool RteComponentAggregate::SetSelected(int nSel)
{
if (nSel > m_maxInstances)
nSel = m_maxInstances;
if (nSel != m_nSelected) {
m_nSelected = nSel;
return true;
}
return false;
}
bool RteComponentAggregate::MatchComponentAttributes(const map<string, string>& attributes, bool bRespectVersion) const
{
if (!m_components.empty()) {
for (auto [_, versionMap] : m_components) {
for (auto [_, c] : versionMap) {
if (c && c->MatchComponentAttributes(attributes, bRespectVersion))
return true;
}
}
return false;
} else if (m_instance)
return m_instance->MatchComponentAttributes(attributes, bRespectVersion);
return false;
}
bool RteComponentAggregate::MatchComponentInstance(RteComponentInstance* ci) const
{
if (!ci)
return false;
const map<string, string>& attributes = ci->GetAttributes();
for (auto [a, v] : m_attributes) {
if (!a.empty() && a[0] == 'C') {
auto ita = attributes.find(a);
if (ita == attributes.end()) { // no attribute in supplied map
if (a == "Cbundle" || v.empty())
continue;
return false;
}
if (!WildCards::Match(v, ita->second))
return false;
}
}
return true; // no other checks
}
void RteComponentAggregate::AddComponent(RteComponent* c)
{
const string& version = c->GetVersionString();
const string& variant = c->GetCvariantName();
const string& generator = c->GetGeneratorName();
RtePackage* pack = c->GetPackage();
bool bDominating = pack && pack->IsDominating();
if (!generator.empty() && GetGeneratorName() != generator)
m_components.clear(); // for generated components only one can be added to aggregate
else if (generator.empty() && IsGenerated())
return; // aggregate with generator can only contain generated components
if (m_components.empty()) {
m_ID = c->GetComponentAggregateID();
m_fullDisplayName = c->GetComponentAggregateID();
m_maxInstances = c->GetMaxInstances();
m_bHasMaxInstances = c->HasMaxInstances();
ClearAttributes();
AddAttribute("Cclass", c->GetCclassName());
AddAttribute("Cgroup", c->GetCgroupName());
AddAttribute("Csub", c->GetCsubName());
AddAttribute("Cvendor", c->GetVendorString());
AddAttribute("Cbundle", c->GetCbundleName());
AddAttribute("generator", generator, false);
AddAttribute("generated", c->GetAttribute("generated"), false);
AddAttribute("selectable", c->GetAttribute("selectable"), false);
m_selectedVariant = variant; // set default variant
}
if (c->IsDefaultVariant()) {
// set default variant
m_selectedVariant = variant;
m_defaultVariant = variant;
}
map<string, RteComponentVersionMap>::iterator itvar = m_components.find(variant);
if (itvar == m_components.end()) {
m_components[variant] = RteComponentVersionMap();
}
RteComponentVersionMap& versionMap = m_components[variant];
// check for dominate and version between dominating components.
// Keep all dominating component versions.
// versionMap keeps only dominating components in case of mixed ones
if (versionMap.begin() != versionMap.end()) {
RteComponent* inserted = versionMap.begin()->second;
RtePackage* insertedPack = inserted->GetPackage();
if (!insertedPack || !insertedPack->IsDominating()) {
// already inserted pack is NOT dominating
if (bDominating) {
// new pack is dominating
versionMap.clear(); // only dominating component is available
}
} else {
if (!bDominating) {
return; // already inserted pack is dominating, new one is not dominating
}
}
}
RteComponentVersionMap::iterator it = versionMap.find(version);
if (it != versionMap.end()) {
// check if it is the same component
RteComponent* inserted = it->second;
if (inserted == c)
return; // nothing to do
RtePackage* insertedPack = inserted->GetPackage();
RtePackage* devicePack = GetTarget()->GetEffectiveDevicePackage();
if (insertedPack == devicePack)
return; // component from device pack is already installed
if (insertedPack && devicePack && pack != devicePack) {
const string& packVersion = pack->GetVersionString();
const string& insertedPackVersion = insertedPack->GetVersionString();
if (VersionCmp::Compare(packVersion, insertedPackVersion) < 0)
return; // the inserted component comes from newer package
}
}
versionMap[version] = c;
if (c->HasMaxInstances()) {
m_bHasMaxInstances = true;
int maxInstances = c->GetMaxInstances();
if (m_maxInstances < maxInstances)
m_maxInstances = maxInstances;
}
}
void RteComponentAggregate::SetComponentInstance(RteComponentInstance* ci, int count)
{
if (count >= 0) {
m_nSelected = count;
m_instance = ci;
} else {
m_instance = nullptr;
}
if (!m_instance) {
m_nSelected = 0;
m_text.clear();
Purge();
return;
}
RteTarget* t = GetTarget();
const string& targetName = t->GetName();
RteComponent* c = ci->GetResolvedComponent(targetName);
RteItem* ei = ci->GetEffectiveItem(targetName);
m_selectedVariant = ei->GetCvariantName();
m_selectedVersion = ei->GetVersionString();
AssignAttribute("layer", *ci);
if (m_components.empty()) {
if (c) {
AddComponent(c);
m_fullDisplayName = c->GetComponentAggregateID();
m_maxInstances = c->GetMaxInstances();
m_bHasMaxInstances = c->HasMaxInstances();
} else {
m_fullDisplayName = ci->GetComponentAggregateID();
m_maxInstances = ci->GetMaxInstances();
m_bHasMaxInstances = ci->HasMaxInstances();
}
m_ID = ei->GetComponentAggregateID();
ClearAttributes();
AddAttribute("Cclass", ei->GetCclassName());
AddAttribute("Cgroup", ei->GetCgroupName());
AddAttribute("Csub", ei->GetCsubName());
AddAttribute("Cvendor", ei->GetVendorString());
AddAttribute("Cbundle", ei->GetCbundleName());
}
if (!c) {
string packId = ci->GetPackageID(true);
const RtePackageFilter& filter = t->GetPackageFilter();
if (!filter.IsPackageSelected(packId)) {
packId = RtePackage::ReleaseIdFromId(packId);
}
ConditionResult res = ci->GetResolveResult(targetName);
if (res == MISSING) {
m_text = "Component is missing (previously found in pack '";
m_text += packId;
m_text += "\')";
} else {
m_text = "Component is not available for target '";
m_text += targetName;
m_text += "'";
RteModel* model = GetModel();
RtePackage* pack = model->GetPackage(packId);
if (pack && !filter.IsPackageFiltered(packId)) {
m_text += ", pack \'";
m_text += packId;
m_text += "\' is not selected";
}
}
} else {
m_text.clear();
}
if (ci->HasMaxInstances()) {
m_bHasMaxInstances = true;
int maxInstances = ci->GetMaxInstances();
if (m_maxInstances < maxInstances)
m_maxInstances = maxInstances;
}
}
void RteComponentAggregate::Purge()
{
map<string, RteComponentVersionMap>::iterator itvar;
for (itvar = m_components.begin(); itvar != m_components.end(); ) {
auto itvarcur = itvar++;
RteComponentVersionMap& versionMap = itvarcur->second;
RteComponentVersionMap::iterator it;
for (it = versionMap.begin(); it != versionMap.end(); ) {
auto itcur = it++;
if (!itcur->second) {
versionMap.erase(itcur);
}
}
if (versionMap.empty()) {
m_components.erase(itvarcur);
}
}
if (!m_instance && !GetComponent()) {
ResetToDefaultVariant();
}
}
bool RteComponentAggregate::HasComponent(RteComponent* c) const
{
for (auto [_, versionMap] : m_components) {
for (auto [_, component] : versionMap) {
if (c == component)
return true;
}
}
return false;
}
bool RteComponentAggregate::IsEmpty() const
{
return m_components.empty() && m_instance == nullptr;
}
string RteComponentAggregate::GetEffectiveVersion() const
{
if (!m_selectedVersion.empty()) {
return m_selectedVersion;
}
return GetLatestVersion(m_selectedVariant);
}
string RteComponentAggregate::GetLatestVersion(const string& variant) const
{
map<string, RteComponentVersionMap>::const_iterator itvar = m_components.find(variant);
if (itvar != m_components.end()) {
auto it = itvar->second.begin();
if (it != itvar->second.end())
return it->first;
}
if (m_instance)
return m_instance->GetVersionString();
return EMPTY_STRING;
}
void RteComponentAggregate::ResetToDefaultVariant()
{
if (!GetComponentVersions(m_defaultVariant)) {
m_defaultVariant.clear();
m_selectedVersion.clear();
auto itvar = m_components.begin();
if (itvar != m_components.end())
m_defaultVariant = itvar->first;
}
SetSelectedVariant(m_defaultVariant);
}
void RteComponentAggregate::SetSelectedVariant(const string& variant)
{
m_selectedVariant = variant;
// adjust version
if (!GetComponent()) {
// no component with such version exist
if (m_instance && m_instance->GetCvariantName() == m_selectedVariant) {
m_selectedVersion = m_instance->GetVersionString();
} else {
m_selectedVersion.clear();
}
}
}
RteComponent* RteComponentAggregate::GetComponent() const
{
return GetComponent(m_selectedVariant, GetEffectiveVersion());
}
RtePackage* RteComponentAggregate::GetPackage() const // returns package of the active component
{
RteComponent* c = GetComponent();
if (c)
return c->GetPackage();
return nullptr;
}
string RteComponentAggregate::GetPackageID(bool withVersion) const
{
RteComponent* c = GetComponent();
if(c) {
RteItem* packInfo = c->HasAttribute("selectable") ? c->GetFirstChild("package") : nullptr;
if(packInfo) {
return RtePackage::GetPackageIDfromAttributes(*packInfo, withVersion);
}
return c->GetPackageID(withVersion);
}
if (m_instance)
return m_instance->GetPackageID(withVersion);
return EMPTY_STRING;
}
string RteComponentAggregate::GetToolTip() const
{
string toolTip;
RteComponent* c = GetComponent();
if (c)
toolTip = c->GetFullDisplayName();
else if (m_instance)
toolTip = m_instance->GetFullDisplayName();
toolTip += "\nPack: ";
toolTip += GetPackageID(true);
return toolTip;
}
const RteComponentVersionMap* RteComponentAggregate::GetComponentVersions(const string& variant) const
{
map<string, RteComponentVersionMap>::const_iterator itvar = m_components.find(variant);
if (itvar != m_components.end())
return &(itvar->second);
return nullptr;
}
int RteComponentAggregate::GetComponentCount() const
{
int count = 0;
for (auto [_, versionMap] : m_components) {
count += (int)versionMap.size();
}
return count;
}
RteComponent* RteComponentAggregate::GetComponent(const string& variant, const string& version) const
{
map<string, RteComponentVersionMap>::const_iterator itvar = m_components.find(variant);
if (itvar == m_components.end())
return nullptr;
RteComponentVersionMap::const_iterator it = itvar->second.find(version);
if (it != itvar->second.end())
return it->second;
return nullptr;
}
RteComponent* RteComponentAggregate::GetLatestComponent(const string& variant) const
{
const RteComponentVersionMap* versions = GetComponentVersions(variant);
if (!versions && variant.empty()) {
// RTE migration policy when adding variants to components
// use default (selected) variant if argument is empty
versions = GetComponentVersions(m_selectedVariant);
}
if (versions) {
RteComponentVersionMap::const_iterator it = versions->begin();
if (it != versions->end())
return it->second;
}
return nullptr;
}
RteComponent* RteComponentAggregate::FindComponentMatch(const string& variant, const string& pattern) const
{
auto itvar = m_components.begin();
for (; itvar != m_components.end(); ++itvar) {
if (WildCards::Match(variant, itvar->first))
break;
}
if (itvar == m_components.end())
return nullptr;
const RteComponentVersionMap& versionMap = itvar->second;
for (auto [ver, component] : versionMap) {
if (WildCards::Match(pattern, ver))
return component;
}
return nullptr;
}
RteComponent* RteComponentAggregate::FindComponent(const map<string, string>& attributes) const
{
{
RteComponent* c = GetComponent();
if(c && c->MatchComponentAttributes(attributes))
return c;
}
for (auto [_, versionMap] : m_components) {
for (auto [_, c] : versionMap) {
if (c && c->MatchComponentAttributes(attributes))
return c;
}
}
return nullptr;
}
list<string> RteComponentAggregate::GetVersions(const string& variant) const
{
list<string> versions;
auto itvar = m_components.find(variant);
if (itvar != m_components.end()) {
const RteComponentVersionMap& versionMap = itvar->second;
for (auto [ver, c] : versionMap) {
versions.push_back(ver);
}
}
return versions;
}
list<string> RteComponentAggregate::GetVariants() const
{
list<string> variants;
if (m_instance) {
// always add instance variant if not resolved
RteTarget* t = GetTarget();
const string& targetName = t->GetName();
RteComponent* c = m_instance->GetResolvedComponent(targetName);
if (!c) {
const string& var = m_instance->GetCvariantName();
if (!c && m_components.find(var) == m_components.end())
variants.push_back(var);
}
}
for (auto [var, versionMap] : m_components) {
variants.push_back(var);
}
return variants;
}
bool RteComponentAggregate::HasVariant(const string& variant) const {
if (m_instance && m_instance->GetCvariantName() == variant) {
return true;
}
return m_components.find(variant) != m_components.end();
}
string RteComponentAggregate::GetDisplayName() const
{
string id;
if (!GetCsubName().empty()) {
id = GetCsubName();
} else {
id = GetCgroupName();
};
return id;
}
const string& RteComponentAggregate::GetDescription() const
{
RteComponent* c = GetComponent();
if (c)
return c->GetDescription();
return m_text;
}
string RteComponentAggregate::GetDocFile() const
{
RteComponent* c = GetComponent();
if (c) {
string doc = c->GetDocFile();
if (doc.empty())
doc = c->GetItemValue("doc"); // for generator components without own description
return doc;
}
return EMPTY_STRING;
}
RteItem::ConditionResult RteComponentAggregate::GetConditionResult(RteConditionContext* context) const
{
RteComponent* c = GetComponent();
RteTarget* target = context->GetTarget();
if (c) {
ConditionResult result = c->GetConditionResult(context);
if (IsSelected() && result > MISSING) {
ConditionResult apiResult = c->IsApiAvailable(target);
if (apiResult < FULFILLED) {
return apiResult;
}
}
return result;
} else if (m_instance && !m_instance->IsExcluded(target->GetName())) {
return m_instance->GetResolveResult(target->GetName());
}
return UNDEFINED;
}
RteItem::ConditionResult RteComponentAggregate::GetDepsResult(map<const RteItem*, RteDependencyResult>& results, RteTarget* target) const
{
ConditionResult r = RteDependencyResult::GetResult(this, results);
if (r != UNDEFINED)
return r;
RteComponent* c = GetComponent();
if (c) {
ConditionResult result = c->GetDepsResult(results, target);
if (IsSelected()) {
ConditionResult apiResult = c->IsApiAvailable(target);
if (apiResult < FULFILLED) {
RteDependencyResult depRes(this, apiResult);
results[this] = depRes;
return apiResult;
}
}
return result;
} else if (m_instance && !m_instance->IsExcluded(target->GetName())) {
ConditionResult result = m_instance->GetResolveResult(target->GetName());
if (result < SELECTABLE) {
RteDependencyResult depRes(this, result);
results[this] = depRes;
}
return result;