2018-08-21 05:27:52 +00:00
|
|
|
/* Copyright 2017-2018 ccls Authors
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
==============================================================================*/
|
|
|
|
|
2018-05-05 03:40:52 +00:00
|
|
|
#include "language.h"
|
|
|
|
|
|
|
|
#include "utils.h"
|
|
|
|
|
|
|
|
LanguageId SourceFileLanguage(std::string_view path) {
|
|
|
|
if (EndsWith(path, ".c"))
|
|
|
|
return LanguageId::C;
|
|
|
|
else if (EndsWith(path, ".cpp") || EndsWith(path, ".cc"))
|
|
|
|
return LanguageId::Cpp;
|
|
|
|
else if (EndsWith(path, ".mm"))
|
|
|
|
return LanguageId::ObjCpp;
|
|
|
|
else if (EndsWith(path, ".m"))
|
|
|
|
return LanguageId::ObjC;
|
|
|
|
return LanguageId::Unknown;
|
|
|
|
}
|
|
|
|
|
2018-08-09 17:08:14 +00:00
|
|
|
const char *LanguageIdentifier(LanguageId lang) {
|
2018-05-05 03:40:52 +00:00
|
|
|
switch (lang) {
|
|
|
|
case LanguageId::C:
|
|
|
|
return "c";
|
|
|
|
case LanguageId::Cpp:
|
|
|
|
return "cpp";
|
|
|
|
case LanguageId::ObjC:
|
|
|
|
return "objective-c";
|
|
|
|
case LanguageId::ObjCpp:
|
|
|
|
return "objective-cpp";
|
|
|
|
default:
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|