aboutsummaryrefslogtreecommitdiffstats
path: root/ctl-lib/afb-definitions.h
diff options
context:
space:
mode:
authorClément Bénier <clement.benier@iot.bzh>2018-11-22 10:52:30 +0100
committerClément Bénier <clement.benier@iot.bzh>2018-11-22 11:01:02 +0100
commit309003b66de9c62c36a8063925e017a8a0b2cdf0 (patch)
tree48832a59baaea84522990ce59556f4906e0ca726 /ctl-lib/afb-definitions.h
parent33abde52666af1335571252143d21de5d305ca9c (diff)
AFB:servsync: add string for query argumentguppy_6.99.1guppy/6.99.16.99.1
for query argument add string that will be converted to json object Change-Id: I75b669a6c02838fd31017b82e9093966f3eea0e6 Signed-off-by: Clément Bénier <clement.benier@iot.bzh>
Diffstat (limited to 'ctl-lib/afb-definitions.h')
0 files changed, 0 insertions, 0 deletions
er.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
/*
 * Copyright (C) 2016 "IoT.bzh"
 * Author Fulup Ar Foll <fulup@iot.bzh>
 *
 * 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, something express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */

#define _GNU_SOURCE
#include <stdio.h>
#include <string.h>

#include "ctl-config.h"

// onload section receive one action or an array of actions
int OnloadConfig(AFB_ApiT apiHandle, CtlSectionT *section, json_object *actionsJ) {
    int err = 0;

    // Load time parse actions in control file
    if (actionsJ != NULL) {
        section->actions= ActionConfig(apiHandle, actionsJ, 0);

        if (!section->actions) {
            AFB_ApiError (apiHandle, "OnloadConfig control fail processing onload actions");
            return 1;
        }

    } else {
        // Exec time process onload action now
        if (!section->actions) {
            AFB_ApiError (apiHandle, "OnloadConfig Cannot Exec Non Existing Onload Action");
            return 1;
        }

        for (int idx=0; section->actions[idx].uid != NULL; idx ++) {
            CtlSourceT source;
            source.uid = section->actions[idx].uid;
            source.api  = section->actions[idx].api;
            source.request = AFB_ReqNone;

            if(!err)
                err = ActionExecOne(&source, &section->actions[idx], NULL);
            else {
                AFB_ApiError(apiHandle, "Onload action execution failed on: %s", source.uid);
                return err;
            }
        }
    }

    return err;
}