diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-01-28 16:35:16 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-01-28 16:35:16 +0100 |
commit | 74172cdd9a4b056d27ce2524e0aa0f3fcb2b0770 (patch) | |
tree | 5b724c4eb0be5c086cf8f9428c9d293cf49307f2 | |
parent | 789a7e7299a580f295d1abd327bb4acf063fd9f0 (diff) | |
download | mig-74172cdd9a4b056d27ce2524e0aa0f3fcb2b0770.tar.gz mig-74172cdd9a4b056d27ce2524e0aa0f3fcb2b0770.tar.bz2 mig-74172cdd9a4b056d27ce2524e0aa0f3fcb2b0770.zip |
Fix RPC build warnings
Users of RPCs want to be able to pass pointers to const data, so add
const qualifiers to RPCs as appropriate.
* utils.c (UserVarConst, UserVarQualifier): New functions.
(WriteUserVarDecl): Use UserVarQualifier to qualify function parameter.
(WriteFieldDeclPrim): Use UserVarConst to qualify pointer to user
variable.
-rw-r--r-- | utils.c | 30 |
1 files changed, 28 insertions, 2 deletions
@@ -144,12 +144,36 @@ WriteNameDecl(FILE *file, const argument_t *arg) fprintf(file, "%s", arg->argVarName); } +/* Returns whether parameter should be qualified with const because we will only + send the pointed data, not receive it. */ +static boolean_t +UserVarConst(const argument_t *arg) +{ + return (arg->argKind & (akbSend|akbReturn)) == akbSend + && !arg->argType->itStruct; +} + +static const char * +UserVarQualifier(const argument_t *arg) +{ + if (!UserVarConst(arg)) + return ""; + + if (arg->argType->itIndefinite) + /* This is a pointer type, so we have to use the const_foo type to + make const qualify the data, not the pointer. */ + return "const_"; + else + return "const "; +} + void WriteUserVarDecl(FILE *file, const argument_t *arg) { + const char *qualif = UserVarQualifier(arg); const char *ref = arg->argByReferenceUser ? "*" : ""; - fprintf(file, "\t%s %s%s", arg->argType->itUserType, ref, arg->argVarName); + fprintf(file, "\t%s%s %s%s", qualif, arg->argType->itUserType, ref, arg->argVarName); } void @@ -244,7 +268,9 @@ WriteFieldDeclPrim(FILE *file, const argument_t *arg, (*tfunc)(btype), arg->argMsgField, it->itNumber/btype->itNumber); - fprintf(file, "\t\t\t%s *%s%s;\n", + fprintf(file, "\t\t\t%s%s *%s%s;\n", + tfunc == FetchUserType && UserVarConst(arg) + ? "const " : "", (*tfunc)(btype), arg->argMsgField, OOLPostfix); |