It's my first time trying out C++ STL. I'm trying to build a multidimensional associative array using map. For example:

typedef struct DA {
    string  read_mode;
    string  data_type;
    void    *pValue;
    void    *pVarMemLoc;
}DA;

int main()
{
    map<string, map<string, map<string, map<string, map<string, DA*>>>>> DATA;

    DATA["lvl1"]["stg1"]["flr1"]["dep1"]["rom1"] = new DA;
    DATA["lvl1"]["stg1"]["flr1"]["dep1"]["rom2"] = new DA;
    DATA["lvl1"]["stg1"]["flr1"]["dep1"]["rom3"] = new DA;

    IEC["lvl1"]["stg1"]["flr1"]["dep1"]["rom1"]->read_mode = "file";
    IEC["lvl1"]["stg1"]["flr1"]["dep1"]["rom2"]->read_mode = "poll";
    IEC["lvl1"]["stg1"]["flr1"]["dep1"]["rom3"]->read_mode = "report";

    return 0;
}

When compiling the code above in VS2005, I got 170 of C4503 warnings. All of the warnings are about "decorated name length exceeded, name was truncated". The program seems to run fine though.

Anyone care to spare some time to explain to me what caused these warnings and how do i solve em? thanks in advance :)

Warning 1   warning C4503: 'std::map<_Kty,_Ty>::~map' : decorated name length exceeded, name was truncated  c:\program files\microsoft visual studio 8\vc\atlmfc\include\cstringt.h 2121
Warning 2   warning C4503: 'std::map<_Kty,_Ty>::map' : decorated name length exceeded, name was truncated   c:\program files\microsoft visual studio 8\vc\atlmfc\include\cstringt.h 2121
Warning 3   warning C4503: 'std::map<_Kty,_Ty>::operator []' : decorated name length exceeded, name was truncated   c:\program files\microsoft visual studio 8\vc\atlmfc\include\cstringt.h 2121
Warning 4   warning C4503: 'std::_Tree<_Traits>::~_Tree' : decorated name length exceeded, name was truncated   c:\program files\microsoft visual studio 8\vc\atlmfc\include\cstringt.h 2121
Warning 5   warning C4503: 'std::map<_Kty,_Ty>::operator []' : decorated name length exceeded, name was truncated   c:\program files\microsoft visual studio 8\vc\atlmfc\include\cstringt.h 2121
Warning 6   warning C4503: 'std::_Tree<_Traits>::iterator::~iterator' : decorated name length exceeded, name was truncated  c:\program files\microsoft visual studio 8\vc\atlmfc\include\cstringt.h 2121
Warning 7   warning C4503: 'std::_Tree<_Traits>::iterator::iterator' : decorated name length exceeded, name was truncated   c:\program files\microsoft visual studio 8\vc\atlmfc\include\cstringt.h 2121
link|improve this question

64% accept rate
1  
May I suggest that you use a boost::shared_ptr instead of a raw pointer for storing your *DA ? Otherwise, freeing all the allocated memory is likely to become a nightmare. – ereOn Oct 22 '10 at 7:40
Hi ereOn, thanks for your suggestion. I'll need to study this more. My program is actually an exe called by a main exe.In the program, a whole bunch(probably thousands) of *DA will be allocated first, then as the program runs some will be freed and allocated dynamically depending on the control commands from the main exe. – justin Oct 22 '10 at 10:44
1  
So many maps. D: – GManNickG Oct 22 '10 at 11:31
feedback

4 Answers

up vote 1 down vote accepted

If you intend to keep this monster of a data structure, there is little you can do about the warning other than disable it:

#pragma warning(disable:4503)
link|improve this answer
hi PigBen, thanks for your answer. I had to use some multidimensional associative to store my data, something like what PHP arrays can do. Are there other alternatives that you can suggest me to have a look? – justin Oct 22 '10 at 7:22
@justin: yep: describe your data in another question and ask how you should represent it in C++. – jalf Oct 26 '10 at 10:45
thanks jalf, i'll do that :) – justin Oct 28 '10 at 4:00
feedback

See this MSDN link for meaning and resolution.

link|improve this answer
hi naveen, thanks for the link :) since the content says that it will not affect the correctness of the program, i'll stick with it for now. But does it affect in terms of program performance? – justin Oct 22 '10 at 7:17
@Justin: No, it is a pure compile time thing. – Naveen Oct 22 '10 at 7:46
feedback

Declare in such way( pay attention to finished quotes)

map<string, map<string, map<string, map<string, map<string, DA*> > > > > DATA;

C++ recognizes >> as shift operator.

link|improve this answer
2  
Fixed in C++0x. – Cheers and hth. - Alf Oct 22 '10 at 9:22
That's not the problem (MSVC already parses it the way the OP intended) – jalf Oct 26 '10 at 10:44
feedback

Others have suggested how you could disable the warning. I suggest that you rethink your design instead. Use some more abstraction than map^5. Or change the data structure of the storage. E.g. use map instead of map^5.

Updated:

What I mean is that you basically have two options:

  • You use a key with as many strings/levels as you need:

    struct Key3 { std::string x, y, z; }; typedef std::map MyMap;

  • Or you build something generic, where each level can hold either the DA* value and/or another level.

link|improve this answer
Hi wilx, thanks for the advise. I was rethinking how i could minimize the number of maps. The best i could end up with is map^2. What are the disadvantages of having the data structure such as above, map^5? I need at least 2 levels of data association for iteration purposes. What do you think is a better approach to this? – justin Oct 25 '10 at 1:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.