summaryrefslogtreecommitdiff
path: root/Source/cmXCodeObject.cxx
blob: a218b53cb8085eb4075b780cdf700acf5e716767 (plain)
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
#include "cmXCodeObject.h"
const char* cmXCodeObject::PBXTypeNames[] = {
    "PBXGroup", "PBXBuildStyle", "PBXProject", "PBXHeadersBuildPhase", 
    "PBXSourcesBuildPhase", "PBXFrameworksBuildPhase", "PBXNativeTarget",
    "PBXFileReference", "PBXBuildFile", "PBXContainerItemProxy", "PBXTargetDependency",
    "PBXShellScriptBuildPhase", "PBXResourcesBuildPhase", "PBXApplicationReference",
    "PBXExecutableFileReference", "PBXLibraryReference", "PBXToolTarget", "PBXLibraryTarget",
    "None"
  };

std::vector<cmXCodeObject*> cmXCodeObject::s_AllObjects;

cmXCodeObject::cmXCodeObject(PBXType ptype, Type type)
{
  m_IsA = ptype;
  cmOStringStream str;
  str << (void*)this;
  m_Id = str.str();
  m_Type = type;
  cmXCodeObject::s_AllObjects.push_back(this);
}


void cmXCodeObject::Indent(int level, std::ostream& out)
{
  while(level)
    {
    out << "       ";
    level--;
    }
}

void cmXCodeObject::Print(std::ostream& out)
{
  this->Indent(1, out);
  out << m_Id << " = {\n";
  std::map<cmStdString, cmXCodeObject*>::iterator i;
  for(i = m_ObjectAttributes.begin(); i != m_ObjectAttributes.end(); ++i)
    { 
    cmXCodeObject* object = i->second;
    if(object->m_Type == OBJECT_LIST)
      {
      this->Indent(2, out);
      out << i->first << " = {\n";
      for(unsigned int k = 0; k < i->second->m_List.size(); k++)
        {
        this->Indent(3, out);
        out << i->second->m_List[k]->m_Id << ",\n";
        } 
      this->Indent(2, out);
      out << "};\n";
      }
    else if(object->m_Type == ATTRIBUTE_GROUP)
      {
      std::map<cmStdString, cmStdString>::iterator j;
      this->Indent(2, out);
      out << i->first << " = {\n";
      for(j = object->m_StringAttributes.begin(); j != object->m_StringAttributes.end(); ++j)
        {
        this->Indent(3, out);
        out << j->first << " = " << j->second << ";\n";
        }
      this->Indent(2, out);
      out << " }\n";
      }
    else if(object->m_Type == OBJECT_REF)
      {
      this->Indent(2, out);
      out << i->first << " = " << object->m_Object->m_Id << ";\n";
      }
        
    }
      
  this->Indent(2, out);
  out << "isa = " << PBXTypeNames[m_IsA] << ";\n";
  std::map<cmStdString, cmStdString>::iterator j;
  for(j = m_StringAttributes.begin(); j != m_StringAttributes.end(); ++j)
    {
    this->Indent(2, out);
    out << j->first << " = " << j->second << ";\n";
    }
  this->Indent(1, out);
  out << "};\n";
}
  
void cmXCodeObject::PrintAll(std::ostream& out)
{
  out << "objects = {\n";
  for(unsigned int i = 0; i < s_AllObjects.size(); ++i)
    {
    if(s_AllObjects[i]->m_Type == OBJECT)
      {
      s_AllObjects[i]->Print(out);
      }
    }
  out << "};\n";
}