diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-11-06 15:19:49 +0100 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-11-06 17:54:09 +0100 |
commit | 39857a9745cec89da08a2d1101495a32b3535e38 (patch) | |
tree | f76c5ba079f265fbb5f34ae1f1009f3a37a30370 /server.c | |
parent | 003b3a589a0db5eb1db9376d707f3ca68220dba0 (diff) | |
download | mig-39857a9745cec89da08a2d1101495a32b3535e38.tar.gz mig-39857a9745cec89da08a2d1101495a32b3535e38.tar.bz2 mig-39857a9745cec89da08a2d1101495a32b3535e38.zip |
Provide default implementations for server functions
By providing default implementations, servers can provide partial
implementations of protocols without having to stub out functions.
* server.c (WriteDefaultRoutine): New function.
(WriteRoutine): Call WriteDefaultRoutine.
Diffstat (limited to 'server.c')
-rw-r--r-- | server.c | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -1279,6 +1279,28 @@ WriteFieldDecl(FILE *file, const argument_t *arg) } static void +WriteDefaultRoutine(FILE *file, const routine_t *rt) +{ + fprintf(file, "\n/* Default implementation of %s */\n", + rt->rtServerName); + + fprintf(file, "#ifdef\tMIG_EOPNOTSUPP\n"); + + fprintf(file, "%s __attribute__ ((weak))\n%s\n", + ReturnTypeStr(rt), rt->rtServerName); + fprintf(file, "(\n"); + WriteList(file, rt->rtArgs, WriteServerVarDecl, + akbServerArg, ",\n", "\n"); + + if (rt->rtReturn == argNULL) + fprintf(file, ") {}\n"); + else + fprintf(file, ") { return MIG_EOPNOTSUPP; }\n"); + + fprintf(file, "#endif\t/* MIG_EOPNOTSUPP */\n"); +} + +static void WriteRoutine(FILE *file, const routine_t *rt) { fprintf(file, "\n"); @@ -1346,6 +1368,8 @@ WriteRoutine(FILE *file, const routine_t *rt) } fprintf(file, "}\n"); + + WriteDefaultRoutine(file, rt); } void |