]> git.tdb.fi Git - builder.git/commitdiff
Add a generic internal alias system to Architecture
authorMikko Rasa <tdb@tdb.fi>
Mon, 8 Feb 2010 09:53:22 +0000 (09:53 +0000)
committerMikko Rasa <tdb@tdb.fi>
Mon, 8 Feb 2010 09:53:22 +0000 (09:53 +0000)
Avoid breaking packages that compare arch against win32

source/architecture.cpp
source/architecture.h

index 436a45afcfb8e0036381089ae7f596adf98e1b03..cf888f00e24ede0d80ee16952fb5c63724c53738 100644 (file)
@@ -28,21 +28,19 @@ const char *types[] =
 
 const char *cpus[] =
 {
-       "i386",       "pc",  0,
-       "i486",       "pc",  0,
-       "pentium",    "pc",  0,
-       "i586",       "pc",  "pentium",
-       "pentiumpro", "pc",  0,
-       "i686",       "pc",  "pentiumpro",
-       "pentium2",   "pc",  0,
-       "pentium3",   "pc",  0,
-       "pentium4",   "pc",  0,
-       "core2",      "pc",  0,
-       "k6",         "pc",  0,
-       "athlon",     "pc",  0,
-       "athlonxp",   "pc",  0,
-       "athlon64",   "pc",  0,
-       "armv5",      "arm", 0,
+       "i386",       "pc",
+       "i486",       "pc",
+       "pentium",    "pc",
+       "pentiumpro", "pc",
+       "pentium2",   "pc",
+       "pentium3",   "pc",
+       "pentium4",   "pc",
+       "core2",      "pc",
+       "k6",         "pc",
+       "athlon",     "pc",
+       "athlonxp",   "pc",
+       "athlon64",   "pc",
+       "armv5",      "arm",
        0
 };
 
@@ -54,6 +52,14 @@ const char *systems[] =
        0
 };
 
+const char *aliases[] =
+{
+       "i586",  "pentium",
+       "i686",  "pentiumpro",
+       "win32", "windows",
+       0
+};
+
 }
 
 Architecture::Architecture(Builder &b, const string &spec):
@@ -153,47 +159,64 @@ bool Architecture::match_name(const string &pattern) const
        vector<string> parts = split(pattern, "-");
        for(vector<string>::const_iterator i=parts.begin(); i!=parts.end(); ++i)
        {
-               if(*i!=type && *i!=cpu && *i!=system)
+               string part = resolve_alias(*i);
+               if(part!=type && part!=cpu && part!=system)
                        return false;
        }
        return true;
 }
 
+string Architecture::resolve_alias(const string &part) const
+{
+       for(unsigned j=0; aliases[j]; j+=2)
+               if(part==aliases[j])
+                       return aliases[j+1];
+
+       return part;
+}
+
 void Architecture::parse_specification(const string &spec)
 {
        vector<string> parts = split(spec, "-");
        for(vector<string>::const_iterator i=parts.begin(); i!=parts.end(); ++i)
        {
+               string part = resolve_alias(*i);
+
                bool ok = false;
+
                for(unsigned j=0; (!ok && types[j]); ++j)
-                       if(*i==types[j])
+                       if(part==types[j])
                        {
-                               if(!type.empty() && *i!=type)
+                               if(!type.empty() && part!=type)
                                        throw InvalidParameterValue("Conflicting type specification");
-                               type = *i;
+                               type = part;
                                ok = true;
                        }
-               for(unsigned j=0; (!ok && cpus[j]); j+=3)
-                       if(*i==cpus[j])
+
+               for(unsigned j=0; (!ok && cpus[j]); j+=2)
+                       if(part==cpus[j])
                        {
                                if(type.empty())
                                        type = cpus[j+1];
                                else if(cpus[j+1]!=type)
                                        throw InvalidParameterValue("Conflicting CPU specification");
-                               cpu = (cpus[j+2] ? cpus[j+2] : *i);
+                               cpu = part;
                                ok = true;
                        }
+
                for(unsigned j=0; (!ok && systems[j]); ++j)
-                       if(*i==systems[j])
+                       if(part==systems[j])
                        {
-                               system = *i;
+                               system = part;
                                ok = true;
                        }
-               if(!ok && (*i=="32" || *i=="64"))
+
+               if(!ok && (part=="32" || part=="64"))
                {
-                       bits = lexical_cast<unsigned>(*i);
+                       bits = lexical_cast<unsigned>(part);
                        ok = true;
                }
+
                if(!ok)
                        throw InvalidParameterValue("Unrecognized part in arch specification: "+*i);
        }
index a6388347abb0e9b2cf73b59fee119598cb2909ce..ad30fe5d5db4f36a40d24f8194ffda6548d37882 100644 (file)
@@ -58,6 +58,7 @@ public:
        const BuildInfo &get_build_info() const { return build_info; }
 
 private:
+       std::string resolve_alias(const std::string &) const;
        void parse_specification(const std::string &);
 };