2015-10-20 09:10:59 +08:00
|
|
|
//===-- ObjCLanguage.h ------------------------------------------*- C++ -*-===//
|
2015-08-28 05:33:50 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2015-08-28 05:33:50 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2020-02-18 07:57:45 +08:00
|
|
|
#ifndef LLDB_SOURCE_PLUGINS_LANGUAGE_OBJC_OBJCLANGUAGE_H
|
|
|
|
#define LLDB_SOURCE_PLUGINS_LANGUAGE_OBJC_OBJCLANGUAGE_H
|
2015-08-28 05:33:50 +08:00
|
|
|
|
2016-03-01 03:41:30 +08:00
|
|
|
#include <cstring>
|
2015-09-02 09:59:14 +08:00
|
|
|
#include <vector>
|
|
|
|
|
2018-08-02 08:30:15 +08:00
|
|
|
#include "Plugins/Language/ClangCommon/ClangHighlighter.h"
|
2015-08-28 05:33:50 +08:00
|
|
|
#include "lldb/Target/Language.h"
|
2017-02-03 05:39:50 +08:00
|
|
|
#include "lldb/Utility/ConstString.h"
|
2015-08-28 05:33:50 +08:00
|
|
|
#include "lldb/lldb-private.h"
|
|
|
|
|
|
|
|
namespace lldb_private {
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-08-28 05:33:50 +08:00
|
|
|
class ObjCLanguage : public Language {
|
2018-08-02 08:30:15 +08:00
|
|
|
ClangHighlighter m_highlighter;
|
|
|
|
|
2015-08-28 05:33:50 +08:00
|
|
|
public:
|
2015-09-02 09:59:14 +08:00
|
|
|
class MethodName {
|
|
|
|
public:
|
|
|
|
enum Type { eTypeUnspecified, eTypeClassMethod, eTypeInstanceMethod };
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-09-03 08:03:13 +08:00
|
|
|
MethodName() : m_full(), m_class(), m_category(), m_selector() {}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-09-02 09:59:14 +08:00
|
|
|
MethodName(const char *name, bool strict)
|
|
|
|
: m_full(), m_class(), m_category(), m_selector(),
|
|
|
|
m_type(eTypeUnspecified), m_category_is_valid(false) {
|
2015-10-20 09:10:59 +08:00
|
|
|
SetName(name, strict);
|
2015-08-28 05:33:50 +08:00
|
|
|
}
|
2016-10-07 05:22:44 +08:00
|
|
|
MethodName(llvm::StringRef name, bool strict)
|
|
|
|
: m_full(), m_class(), m_category(), m_selector(),
|
|
|
|
m_type(eTypeUnspecified), m_category_is_valid(false) {
|
|
|
|
SetName(name, strict);
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-09-09 09:10:46 +08:00
|
|
|
void Clear();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-10-08 02:36:53 +08:00
|
|
|
bool IsValid(bool strict) const {
|
|
|
|
// If "strict" is true, the name must have everything specified including
|
2015-09-02 09:59:14 +08:00
|
|
|
// the leading "+" or "-" on the method name
|
|
|
|
if (strict && m_type == eTypeUnspecified)
|
|
|
|
return false;
|
|
|
|
// Other than that, m_full will only be filled in if the objective C
|
2016-03-01 03:41:30 +08:00
|
|
|
// name is valid.
|
2015-09-02 09:59:14 +08:00
|
|
|
return (bool)m_full;
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-09-03 08:03:13 +08:00
|
|
|
bool HasCategory() { return !GetCategory().IsEmpty(); }
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-09-02 09:59:14 +08:00
|
|
|
Type GetType() const { return m_type; }
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2019-03-07 05:22:25 +08:00
|
|
|
ConstString GetFullName() const { return m_full; }
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-08-28 05:33:50 +08:00
|
|
|
ConstString GetFullNameWithoutCategory(bool empty_if_no_category);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-09-02 09:59:14 +08:00
|
|
|
bool SetName(const char *name, bool strict);
|
2016-10-07 05:22:44 +08:00
|
|
|
bool SetName(llvm::StringRef name, bool strict);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2019-03-07 05:22:25 +08:00
|
|
|
ConstString GetClassName();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2019-03-07 05:22:25 +08:00
|
|
|
ConstString GetClassNameWithCategory();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2019-03-07 05:22:25 +08:00
|
|
|
ConstString GetCategory();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2019-03-07 05:22:25 +08:00
|
|
|
ConstString GetSelector();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-08-28 05:33:50 +08:00
|
|
|
protected:
|
2015-09-02 09:59:14 +08:00
|
|
|
ConstString
|
2015-08-28 05:33:50 +08:00
|
|
|
m_full; // Full name: "+[NSString(my_additions) myStringWithCString:]"
|
2015-09-02 09:59:14 +08:00
|
|
|
ConstString m_class; // Class name: "NSString"
|
2015-10-20 09:10:59 +08:00
|
|
|
ConstString
|
2015-09-02 09:59:14 +08:00
|
|
|
m_class_category; // Class with category: "NSString(my_additions)"
|
|
|
|
ConstString m_category; // Category: "my_additions"
|
|
|
|
ConstString m_selector; // Selector: "myStringWithCString:"
|
|
|
|
Type m_type = eTypeUnspecified;
|
|
|
|
bool m_category_is_valid = false;
|
2016-09-07 04:57:50 +08:00
|
|
|
};
|
|
|
|
|
2015-10-20 09:10:59 +08:00
|
|
|
ObjCLanguage() = default;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-10-20 09:10:59 +08:00
|
|
|
~ObjCLanguage() override = default;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-09-09 09:10:46 +08:00
|
|
|
lldb::LanguageType GetLanguageType() const override {
|
2015-08-28 05:33:50 +08:00
|
|
|
return lldb::eLanguageTypeObjC;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2019-05-11 11:32:25 +08:00
|
|
|
// Get all possible names for a method. Examples:
|
|
|
|
// If method_name is "+[NSString(my_additions) myStringWithCString:]"
|
|
|
|
// variant_names[0] => "+[NSString myStringWithCString:]"
|
|
|
|
// If name is specified without the leading '+' or '-' like
|
|
|
|
// "[NSString(my_additions) myStringWithCString:]"
|
|
|
|
// variant_names[0] => "+[NSString(my_additions) myStringWithCString:]"
|
|
|
|
// variant_names[1] => "-[NSString(my_additions) myStringWithCString:]"
|
|
|
|
// variant_names[2] => "+[NSString myStringWithCString:]"
|
|
|
|
// variant_names[3] => "-[NSString myStringWithCString:]"
|
2021-06-11 05:55:25 +08:00
|
|
|
// Also returns the FunctionNameType of each possible name.
|
|
|
|
std::vector<Language::MethodNameVariant>
|
2019-05-11 11:32:25 +08:00
|
|
|
GetMethodNameVariants(ConstString method_name) const override;
|
|
|
|
|
2021-06-01 23:58:12 +08:00
|
|
|
bool SymbolNameFitsToLanguage(Mangled mangled) const override;
|
|
|
|
|
2015-09-09 09:10:46 +08:00
|
|
|
lldb::TypeCategoryImplSP GetFormatters() override;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-09-09 09:10:46 +08:00
|
|
|
std::vector<ConstString>
|
|
|
|
GetPossibleFormattersMatches(ValueObject &valobj,
|
|
|
|
lldb::DynamicValueType use_dynamic) override;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-10-02 02:16:18 +08:00
|
|
|
std::unique_ptr<TypeScavenger> GetTypeScavenger() override;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-10-08 02:36:53 +08:00
|
|
|
bool GetFormatterPrefixSuffix(ValueObject &valobj, ConstString type_hint,
|
|
|
|
std::string &prefix,
|
|
|
|
std::string &suffix) override;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-11-11 06:39:15 +08:00
|
|
|
bool IsNilReference(ValueObject &valobj) override;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2020-11-13 04:11:47 +08:00
|
|
|
llvm::StringRef GetNilReferenceSummaryString() override { return "nil"; }
|
|
|
|
|
2018-08-02 08:30:15 +08:00
|
|
|
bool IsSourceFile(llvm::StringRef file_path) const override;
|
|
|
|
|
|
|
|
const Highlighter *GetHighlighter() const override { return &m_highlighter; }
|
|
|
|
|
2015-08-28 05:33:50 +08:00
|
|
|
// Static Functions
|
|
|
|
static void Initialize();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-08-28 05:33:50 +08:00
|
|
|
static void Terminate();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-08-28 05:33:50 +08:00
|
|
|
static lldb_private::Language *CreateInstance(lldb::LanguageType language);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-08-28 05:33:50 +08:00
|
|
|
static lldb_private::ConstString GetPluginNameStatic();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-09-02 09:59:14 +08:00
|
|
|
static bool IsPossibleObjCMethodName(const char *name) {
|
|
|
|
if (!name)
|
|
|
|
return false;
|
|
|
|
bool starts_right = (name[0] == '+' || name[0] == '-') && name[1] == '[';
|
|
|
|
bool ends_right = (name[strlen(name) - 1] == ']');
|
|
|
|
return (starts_right && ends_right);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2015-09-02 09:59:14 +08:00
|
|
|
static bool IsPossibleObjCSelector(const char *name) {
|
|
|
|
if (!name)
|
|
|
|
return false;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2016-03-01 03:41:30 +08:00
|
|
|
if (strchr(name, ':') == nullptr)
|
2015-09-02 09:59:14 +08:00
|
|
|
return true;
|
|
|
|
else if (name[strlen(name) - 1] == ':')
|
|
|
|
return true;
|
2016-09-07 04:57:50 +08:00
|
|
|
else
|
2015-09-02 09:59:14 +08:00
|
|
|
return false;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2015-08-28 05:33:50 +08:00
|
|
|
// PluginInterface protocol
|
2021-10-15 19:07:39 +08:00
|
|
|
llvm::StringRef GetPluginName() override {
|
|
|
|
return GetPluginNameStatic().GetStringRef();
|
|
|
|
}
|
2015-08-28 05:33:50 +08:00
|
|
|
};
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-08-28 05:33:50 +08:00
|
|
|
} // namespace lldb_private
|
|
|
|
|
2020-02-18 07:57:45 +08:00
|
|
|
#endif // LLDB_SOURCE_PLUGINS_LANGUAGE_OBJC_OBJCLANGUAGE_H
|