Ejemplo n.º 1
0
        public void FileRefsRemove(string guid)
        {
            PBXFileReferenceData fileRef = fileRefs[guid];

            fileRefs.RemoveEntry(guid);
            m_ProjectPathToFileRefMap.Remove(m_FileRefGuidToProjectPathMap[guid]);
            m_FileRefGuidToProjectPathMap.Remove(guid);
            foreach (var tree in FileTypeUtils.AllAbsoluteSourceTrees())
            {
                m_RealPathToFileRefMap[tree].Remove(fileRef.path);
            }
            m_GuidToParentGroupMap.Remove(guid);
        }
Ejemplo n.º 2
0
 public string FindFileGuidByRealPath(string path)
 {
     path = PBXPath.FixSlashes(path);
     foreach (PBXSourceTree tree in FileTypeUtils.AllAbsoluteSourceTrees())
     {
         string str = this.FindFileGuidByRealPath(path, tree);
         if (str != null)
         {
             return(str);
         }
     }
     return(null);
 }
Ejemplo n.º 3
0
        public void FileRefsRemove(string guid)
        {
            PBXFileReferenceData fileReferenceData = this.fileRefs[guid];

            this.fileRefs.RemoveEntry(guid);
            this.m_ProjectPathToFileRefMap.Remove(this.m_FileRefGuidToProjectPathMap[guid]);
            this.m_FileRefGuidToProjectPathMap.Remove(guid);
            foreach (PBXSourceTree index in FileTypeUtils.AllAbsoluteSourceTrees())
            {
                this.m_RealPathToFileRefMap[index].Remove(fileReferenceData.path);
            }
            this.m_GuidToParentGroupMap.Remove(guid);
        }
Ejemplo n.º 4
0
        public string FindFileGuidByRealPath(string path)
        {
            path = Utils.FixSlashesInPath(path);

            foreach (var tree in FileTypeUtils.AllAbsoluteSourceTrees())
            {
                string res = FindFileGuidByRealPath(path, tree);
                if (res != null)
                {
                    return(res);
                }
            }
            return(null);
        }
Ejemplo n.º 5
0
        public void Clear()
        {
            buildFiles         = new PBXBuildFileSection("PBXBuildFile");
            fileRefs           = new PBXFileReferenceSection("PBXFileReference");
            groups             = new PBXGroupSection("PBXGroup");
            containerItems     = new PBXContainerItemProxySection("PBXContainerItemProxy");
            references         = new PBXReferenceProxySection("PBXReferenceProxy");
            sources            = new PBXSourcesBuildPhaseSection("PBXSourcesBuildPhase");
            frameworks         = new PBXFrameworksBuildPhaseSection("PBXFrameworksBuildPhase");
            resources          = new PBXResourcesBuildPhaseSection("PBXResourcesBuildPhase");
            copyFiles          = new PBXCopyFilesBuildPhaseSection("PBXCopyFilesBuildPhase");
            shellScripts       = new PBXShellScriptBuildPhaseSection("PBXShellScriptBuildPhase");
            nativeTargets      = new PBXNativeTargetSection("PBXNativeTarget");
            targetDependencies = new PBXTargetDependencySection("PBXTargetDependency");
            variantGroups      = new PBXVariantGroupSection("PBXVariantGroup");
            buildConfigs       = new XCBuildConfigurationSection("XCBuildConfiguration");
            configs            = new XCConfigurationListSection("XCConfigurationList");
            project            = new PBXProjectSection();
            m_UnknownSections  = new Dictionary <string, UnknownSection>();

            m_Section = new Dictionary <string, SectionBase>
            {
                { "PBXBuildFile", buildFiles },
                { "PBXFileReference", fileRefs },
                { "PBXGroup", groups },
                { "PBXContainerItemProxy", containerItems },
                { "PBXReferenceProxy", references },
                { "PBXSourcesBuildPhase", sources },
                { "PBXFrameworksBuildPhase", frameworks },
                { "PBXResourcesBuildPhase", resources },
                { "PBXCopyFilesBuildPhase", copyFiles },
                { "PBXShellScriptBuildPhase", shellScripts },
                { "PBXNativeTarget", nativeTargets },
                { "PBXTargetDependency", targetDependencies },
                { "PBXVariantGroup", variantGroups },
                { "XCBuildConfiguration", buildConfigs },
                { "XCConfigurationList", configs },

                { "PBXProject", project },
            };
            m_RootElements   = new PBXElementDict();
            m_UnknownObjects = new PBXElementDict();
            m_ObjectVersion  = null;
            m_SectionOrder   = new List <string> {
                "PBXBuildFile", "PBXContainerItemProxy", "PBXCopyFilesBuildPhase", "PBXFileReference",
                "PBXFrameworksBuildPhase", "PBXGroup", "PBXNativeTarget", "PBXProject", "PBXReferenceProxy",
                "PBXResourcesBuildPhase", "PBXShellScriptBuildPhase", "PBXSourcesBuildPhase", "PBXTargetDependency",
                "PBXVariantGroup", "XCBuildConfiguration", "XCConfigurationList"
            };
            m_FileGuidToBuildFileMap      = new Dictionary <string, Dictionary <string, PBXBuildFileData> >();
            m_ProjectPathToFileRefMap     = new Dictionary <string, PBXFileReferenceData>();
            m_FileRefGuidToProjectPathMap = new Dictionary <string, string>();
            m_RealPathToFileRefMap        = new Dictionary <PBXSourceTree, Dictionary <string, PBXFileReferenceData> >();
            foreach (var tree in FileTypeUtils.AllAbsoluteSourceTrees())
            {
                m_RealPathToFileRefMap.Add(tree, new Dictionary <string, PBXFileReferenceData>());
            }
            m_ProjectPathToGroupMap     = new Dictionary <string, PBXGroupData>();
            m_GroupGuidToProjectPathMap = new Dictionary <string, string>();
            m_GuidToParentGroupMap      = new Dictionary <string, PBXGroupData>();
        }
Ejemplo n.º 6
0
        public void Clear()
        {
            this.buildFiles         = new KnownSectionBase <PBXBuildFileData>("PBXBuildFile");
            this.fileRefs           = new KnownSectionBase <PBXFileReferenceData>("PBXFileReference");
            this.groups             = new KnownSectionBase <PBXGroupData>("PBXGroup");
            this.containerItems     = new KnownSectionBase <PBXContainerItemProxyData>("PBXContainerItemProxy");
            this.references         = new KnownSectionBase <PBXReferenceProxyData>("PBXReferenceProxy");
            this.sources            = new KnownSectionBase <PBXSourcesBuildPhaseData>("PBXSourcesBuildPhase");
            this.headers            = new KnownSectionBase <PBXHeadersBuildPhaseData>("PBXHeadersBuildPhase");
            this.frameworks         = new KnownSectionBase <PBXFrameworksBuildPhaseData>("PBXFrameworksBuildPhase");
            this.resources          = new KnownSectionBase <PBXResourcesBuildPhaseData>("PBXResourcesBuildPhase");
            this.copyFiles          = new KnownSectionBase <PBXCopyFilesBuildPhaseData>("PBXCopyFilesBuildPhase");
            this.shellScripts       = new KnownSectionBase <PBXShellScriptBuildPhaseData>("PBXShellScriptBuildPhase");
            this.nativeTargets      = new KnownSectionBase <PBXNativeTargetData>("PBXNativeTarget");
            this.targetDependencies = new KnownSectionBase <PBXTargetDependencyData>("PBXTargetDependency");
            this.variantGroups      = new KnownSectionBase <PBXVariantGroupData>("PBXVariantGroup");
            this.buildConfigs       = new KnownSectionBase <XCBuildConfigurationData>("XCBuildConfiguration");
            this.buildConfigLists   = new KnownSectionBase <XCConfigurationListData>("XCConfigurationList");
            this.project            = new PBXProjectSection();
            this.m_UnknownSections  = new Dictionary <string, KnownSectionBase <PBXObjectData> >();
            Dictionary <string, SectionBase> dictionary = new Dictionary <string, SectionBase>();
            string key1 = "PBXBuildFile";
            KnownSectionBase <PBXBuildFileData> knownSectionBase1 = this.buildFiles;

            dictionary.Add(key1, (SectionBase)knownSectionBase1);
            string key2 = "PBXFileReference";
            KnownSectionBase <PBXFileReferenceData> knownSectionBase2 = this.fileRefs;

            dictionary.Add(key2, (SectionBase)knownSectionBase2);
            string key3 = "PBXGroup";
            KnownSectionBase <PBXGroupData> knownSectionBase3 = this.groups;

            dictionary.Add(key3, (SectionBase)knownSectionBase3);
            string key4 = "PBXContainerItemProxy";
            KnownSectionBase <PBXContainerItemProxyData> knownSectionBase4 = this.containerItems;

            dictionary.Add(key4, (SectionBase)knownSectionBase4);
            string key5 = "PBXReferenceProxy";
            KnownSectionBase <PBXReferenceProxyData> knownSectionBase5 = this.references;

            dictionary.Add(key5, (SectionBase)knownSectionBase5);
            string key6 = "PBXSourcesBuildPhase";
            KnownSectionBase <PBXSourcesBuildPhaseData> knownSectionBase6 = this.sources;

            dictionary.Add(key6, (SectionBase)knownSectionBase6);
            string key7 = "PBXHeadersBuildPhase";
            KnownSectionBase <PBXHeadersBuildPhaseData> knownSectionBase7 = this.headers;

            dictionary.Add(key7, (SectionBase)knownSectionBase7);
            string key8 = "PBXFrameworksBuildPhase";
            KnownSectionBase <PBXFrameworksBuildPhaseData> knownSectionBase8 = this.frameworks;

            dictionary.Add(key8, (SectionBase)knownSectionBase8);
            string key9 = "PBXResourcesBuildPhase";
            KnownSectionBase <PBXResourcesBuildPhaseData> knownSectionBase9 = this.resources;

            dictionary.Add(key9, (SectionBase)knownSectionBase9);
            string key10 = "PBXCopyFilesBuildPhase";
            KnownSectionBase <PBXCopyFilesBuildPhaseData> knownSectionBase10 = this.copyFiles;

            dictionary.Add(key10, (SectionBase)knownSectionBase10);
            string key11 = "PBXShellScriptBuildPhase";
            KnownSectionBase <PBXShellScriptBuildPhaseData> knownSectionBase11 = this.shellScripts;

            dictionary.Add(key11, (SectionBase)knownSectionBase11);
            string key12 = "PBXNativeTarget";
            KnownSectionBase <PBXNativeTargetData> knownSectionBase12 = this.nativeTargets;

            dictionary.Add(key12, (SectionBase)knownSectionBase12);
            string key13 = "PBXTargetDependency";
            KnownSectionBase <PBXTargetDependencyData> knownSectionBase13 = this.targetDependencies;

            dictionary.Add(key13, (SectionBase)knownSectionBase13);
            string key14 = "PBXVariantGroup";
            KnownSectionBase <PBXVariantGroupData> knownSectionBase14 = this.variantGroups;

            dictionary.Add(key14, (SectionBase)knownSectionBase14);
            string key15 = "XCBuildConfiguration";
            KnownSectionBase <XCBuildConfigurationData> knownSectionBase15 = this.buildConfigs;

            dictionary.Add(key15, (SectionBase)knownSectionBase15);
            string key16 = "XCConfigurationList";
            KnownSectionBase <XCConfigurationListData> knownSectionBase16 = this.buildConfigLists;

            dictionary.Add(key16, (SectionBase)knownSectionBase16);
            string            key17             = "PBXProject";
            PBXProjectSection pbxProjectSection = this.project;

            dictionary.Add(key17, (SectionBase)pbxProjectSection);
            this.m_Section        = dictionary;
            this.m_RootElements   = new PBXElementDict();
            this.m_UnknownObjects = new PBXElementDict();
            this.m_ObjectVersion  = (string)null;
            List <string> list = new List <string>();
            string        str1 = "PBXBuildFile";

            list.Add(str1);
            string str2 = "PBXContainerItemProxy";

            list.Add(str2);
            string str3 = "PBXCopyFilesBuildPhase";

            list.Add(str3);
            string str4 = "PBXFileReference";

            list.Add(str4);
            string str5 = "PBXFrameworksBuildPhase";

            list.Add(str5);
            string str6 = "PBXGroup";

            list.Add(str6);
            string str7 = "PBXHeadersBuildPhase";

            list.Add(str7);
            string str8 = "PBXNativeTarget";

            list.Add(str8);
            string str9 = "PBXProject";

            list.Add(str9);
            string str10 = "PBXReferenceProxy";

            list.Add(str10);
            string str11 = "PBXResourcesBuildPhase";

            list.Add(str11);
            string str12 = "PBXShellScriptBuildPhase";

            list.Add(str12);
            string str13 = "PBXSourcesBuildPhase";

            list.Add(str13);
            string str14 = "PBXTargetDependency";

            list.Add(str14);
            string str15 = "PBXVariantGroup";

            list.Add(str15);
            string str16 = "XCBuildConfiguration";

            list.Add(str16);
            string str17 = "XCConfigurationList";

            list.Add(str17);
            this.m_SectionOrder                = list;
            this.m_FileGuidToBuildFileMap      = new Dictionary <string, Dictionary <string, PBXBuildFileData> >();
            this.m_ProjectPathToFileRefMap     = new Dictionary <string, PBXFileReferenceData>();
            this.m_FileRefGuidToProjectPathMap = new Dictionary <string, string>();
            this.m_RealPathToFileRefMap        = new Dictionary <PBXSourceTree, Dictionary <string, PBXFileReferenceData> >();
            foreach (PBXSourceTree key18 in FileTypeUtils.AllAbsoluteSourceTrees())
            {
                this.m_RealPathToFileRefMap.Add(key18, new Dictionary <string, PBXFileReferenceData>());
            }
            this.m_ProjectPathToGroupMap     = new Dictionary <string, PBXGroupData>();
            this.m_GroupGuidToProjectPathMap = new Dictionary <string, string>();
            this.m_GuidToParentGroupMap      = new Dictionary <string, PBXGroupData>();
        }
Ejemplo n.º 7
0
        public void Clear()
        {
            this.buildFiles         = new KnownSectionBase <PBXBuildFileData>("PBXBuildFile");
            this.fileRefs           = new KnownSectionBase <PBXFileReferenceData>("PBXFileReference");
            this.groups             = new KnownSectionBase <PBXGroupData>("PBXGroup");
            this.containerItems     = new KnownSectionBase <PBXContainerItemProxyData>("PBXContainerItemProxy");
            this.references         = new KnownSectionBase <PBXReferenceProxyData>("PBXReferenceProxy");
            this.sources            = new KnownSectionBase <PBXSourcesBuildPhaseData>("PBXSourcesBuildPhase");
            this.frameworks         = new KnownSectionBase <PBXFrameworksBuildPhaseData>("PBXFrameworksBuildPhase");
            this.resources          = new KnownSectionBase <PBXResourcesBuildPhaseData>("PBXResourcesBuildPhase");
            this.copyFiles          = new KnownSectionBase <PBXCopyFilesBuildPhaseData>("PBXCopyFilesBuildPhase");
            this.shellScripts       = new KnownSectionBase <PBXShellScriptBuildPhaseData>("PBXShellScriptBuildPhase");
            this.nativeTargets      = new KnownSectionBase <PBXNativeTargetData>("PBXNativeTarget");
            this.targetDependencies = new KnownSectionBase <PBXTargetDependencyData>("PBXTargetDependency");
            this.variantGroups      = new KnownSectionBase <PBXVariantGroupData>("PBXVariantGroup");
            this.buildConfigs       = new KnownSectionBase <XCBuildConfigurationData>("XCBuildConfiguration");
            this.configs            = new KnownSectionBase <XCConfigurationListData>("XCConfigurationList");
            this.project            = new PBXProjectSection();
            this.m_UnknownSections  = new Dictionary <string, KnownSectionBase <PBXObjectData> >();
            Dictionary <string, SectionBase> dictionary = new Dictionary <string, SectionBase> {
                {
                    "PBXBuildFile",
                    this.buildFiles
                },
                {
                    "PBXFileReference",
                    this.fileRefs
                },
                {
                    "PBXGroup",
                    this.groups
                },
                {
                    "PBXContainerItemProxy",
                    this.containerItems
                },
                {
                    "PBXReferenceProxy",
                    this.references
                },
                {
                    "PBXSourcesBuildPhase",
                    this.sources
                },
                {
                    "PBXFrameworksBuildPhase",
                    this.frameworks
                },
                {
                    "PBXResourcesBuildPhase",
                    this.resources
                },
                {
                    "PBXCopyFilesBuildPhase",
                    this.copyFiles
                },
                {
                    "PBXShellScriptBuildPhase",
                    this.shellScripts
                },
                {
                    "PBXNativeTarget",
                    this.nativeTargets
                },
                {
                    "PBXTargetDependency",
                    this.targetDependencies
                },
                {
                    "PBXVariantGroup",
                    this.variantGroups
                },
                {
                    "XCBuildConfiguration",
                    this.buildConfigs
                },
                {
                    "XCConfigurationList",
                    this.configs
                },
                {
                    "PBXProject",
                    this.project
                }
            };

            this.m_Section        = dictionary;
            this.m_RootElements   = new PBXElementDict();
            this.m_UnknownObjects = new PBXElementDict();
            this.m_ObjectVersion  = null;
            List <string> list = new List <string> {
                "PBXBuildFile",
                "PBXContainerItemProxy",
                "PBXCopyFilesBuildPhase",
                "PBXFileReference",
                "PBXFrameworksBuildPhase",
                "PBXGroup",
                "PBXNativeTarget",
                "PBXProject",
                "PBXReferenceProxy",
                "PBXResourcesBuildPhase",
                "PBXShellScriptBuildPhase",
                "PBXSourcesBuildPhase",
                "PBXTargetDependency",
                "PBXVariantGroup",
                "XCBuildConfiguration",
                "XCConfigurationList"
            };

            this.m_SectionOrder                = list;
            this.m_FileGuidToBuildFileMap      = new Dictionary <string, Dictionary <string, PBXBuildFileData> >();
            this.m_ProjectPathToFileRefMap     = new Dictionary <string, PBXFileReferenceData>();
            this.m_FileRefGuidToProjectPathMap = new Dictionary <string, string>();
            this.m_RealPathToFileRefMap        = new Dictionary <PBXSourceTree, Dictionary <string, PBXFileReferenceData> >();
            foreach (PBXSourceTree tree in FileTypeUtils.AllAbsoluteSourceTrees())
            {
                this.m_RealPathToFileRefMap.Add(tree, new Dictionary <string, PBXFileReferenceData>());
            }
            this.m_ProjectPathToGroupMap     = new Dictionary <string, PBXGroupData>();
            this.m_GroupGuidToProjectPathMap = new Dictionary <string, string>();
            this.m_GuidToParentGroupMap      = new Dictionary <string, PBXGroupData>();
        }