diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-01-21 21:25:36 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-01-21 21:25:36 (GMT) |
commit | 2f631642ca2e91d0ba6e4beabfc5f74754ab5ad9 (patch) | |
tree | 1d28be2ba8a7f1a50c0463af88e32d7791b73297 /Source/cmXCodeObject.cxx | |
parent | 13865fc4fae3806c1359e17e60b7032edc379026 (diff) | |
download | CMake-2f631642ca2e91d0ba6e4beabfc5f74754ab5ad9.zip CMake-2f631642ca2e91d0ba6e4beabfc5f74754ab5ad9.tar.gz CMake-2f631642ca2e91d0ba6e4beabfc5f74754ab5ad9.tar.bz2 |
ENH: start xcode stuff
Diffstat (limited to 'Source/cmXCodeObject.cxx')
-rw-r--r-- | Source/cmXCodeObject.cxx | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/Source/cmXCodeObject.cxx b/Source/cmXCodeObject.cxx new file mode 100644 index 0000000..a218b53 --- /dev/null +++ b/Source/cmXCodeObject.cxx @@ -0,0 +1,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"; +} |