Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Filter functions and typedefs by prefix #25

Merged
merged 1 commit into from
Jun 7, 2018

Conversation

kornilova203
Copy link
Member

@kornilova203 kornilova203 commented Jun 3, 2018

Add option --exclude-prefix that allows to specify prefix of declarations that should be excluded.

If chain of typedefs has aliases that should be excluded then this aliases are replaced by actual types:

type __int32_t = native.CInt
type __darwin_pid_t = __int32_t
type pid_t = __darwin_pid_t

=>

type pid_t = native.CInt

Also functions, structs, enums, union and typdefs are excluded if they use excluded types.

Issue #3

llvm::cl::opt<std::string> LibName("name", llvm::cl::cat(Category));
llvm::cl::opt<std::string> StdHeaders("std-headers", llvm::cl::cat(Category));
llvm::cl::opt<bool> PrintHeadersLocation("location", llvm::cl::cat(Category));
llvm::cl::opt<std::string> ExcludePrefix("exclude-prefix", llvm::cl::cat(Category));
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Eventually it would be nice to support multiple values.

Main.cpp Outdated
int main(int argc, char *argv[]) {
llvm::cl::OptionCategory Category("Binding Generator");
llvm::cl::extrahelp CommonHelp(clang::tooling::CommonOptionsParser::HelpMessage);
llvm::cl::extrahelp MoreHelp("\nProduce Bindings for scala native. Please specify lib name wit parameter name\n");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would be nice to also fix the typo: wit -> with

int main(int argc, char *argv[]) {
llvm::cl::OptionCategory Category("Binding Generator");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

❤️ less global variables

Utils.h Outdated
static bool typeUsesOtherType(const std::string &checkedType, const std::string &type) {
// TODO: find better way to check it
return checkedType == type ||
checkedType == "native.Ptr[" + type + "]";
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this also check for use with native.CArray?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jonas, yes, but there are also function pointers :( in that case it is possible to search for a substring ", type " it doesn't seems right.
Will it make sense to add Type class to IR? There will be 4 subclasses of this class:

  • PointerType
  • ArrayType
  • FunctionPointerType
  • Struct/Union type (maybe it can be just Type)

Types may contain other types.
There will be right way to check if a type uses another type.
Also Type will handle reserved words, so this part of type translation will be more clear.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If we decide to do it then it should be separate PR. Now I will continue with this version.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be nice to have a proper way to represent types. Eventually we can look into having Type reference the current Struct/Union/TypeDef classes.

struct structWithPrivateType {
int field1;
__int32_t field2;
}; // should be removed
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removing the whole struct seems wrong. The same for the enum. Do we have any good examples of this in the wild. The C socket structs have some platform specific members I think.

@kornilova203 kornilova203 force-pushed the filter-private-declarations branch from d95b35b to e93d429 Compare June 7, 2018 15:45
@kornilova203 kornilova203 changed the title Filter declarations by prefix Filter functions and typedefs by prefix Jun 7, 2018
@kornilova203 kornilova203 force-pushed the filter-private-declarations branch from e93d429 to 3adbac8 Compare June 7, 2018 16:14
@kornilova203
Copy link
Member Author

So now it removes:

  • private typedefs that are used only in other typedefs
  • private functions

@jonas jonas merged commit a2b6cb5 into master Jun 7, 2018
@jonas jonas deleted the filter-private-declarations branch June 7, 2018 23:53
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants