blob: ca1d8b41f99bf30a17da5c0171c33253359ec75d [file] [log] [blame]
Zach Johnson72f308e2014-09-22 22:14:04 -07001/******************************************************************************
2 *
Jakub Pawlowski5b790fe2017-09-18 09:00:20 -07003 * Copyright 2014 Google, Inc.
Zach Johnson72f308e2014-09-22 22:14:04 -07004 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 ******************************************************************************/
18
19#pragma once
20
21#include <stdbool.h>
22
Jack He6d110522018-07-25 21:43:01 -070023#include "common/message_loop_thread.h"
Chris Manton55fe5dc2014-11-06 17:08:20 -080024#include "osi/include/future.h"
25#include "osi/include/thread.h"
Zach Johnson72f308e2014-09-22 22:14:04 -070026
Myles Watson911d1ae2016-11-28 16:44:40 -080027typedef future_t* (*module_lifecycle_fn)(void);
Zach Johnson72f308e2014-09-22 22:14:04 -070028
Pavlin Radoslavovb2a292b2016-10-14 19:34:48 -070029#define BTCORE_MAX_MODULE_DEPENDENCIES 10
30
Zach Johnson72f308e2014-09-22 22:14:04 -070031typedef struct {
Myles Watson911d1ae2016-11-28 16:44:40 -080032 const char* name;
Zach Johnson72f308e2014-09-22 22:14:04 -070033 module_lifecycle_fn init;
34 module_lifecycle_fn start_up;
35 module_lifecycle_fn shut_down;
36 module_lifecycle_fn clean_up;
Myles Watson911d1ae2016-11-28 16:44:40 -080037 const char* dependencies[BTCORE_MAX_MODULE_DEPENDENCIES];
Zach Johnson72f308e2014-09-22 22:14:04 -070038} module_t;
39
Myles Watson911d1ae2016-11-28 16:44:40 -080040// Prepares module management. Must be called before doing anything with
41// modules.
Zach Johnson72f308e2014-09-22 22:14:04 -070042void module_management_start(void);
43// Cleans up all module management resources.
44void module_management_stop(void);
45
Myles Watson911d1ae2016-11-28 16:44:40 -080046const module_t* get_module(const char* name);
Zach Johnson72f308e2014-09-22 22:14:04 -070047
48// Initialize the provided module. |module| may not be NULL
49// and must not be initialized.
Myles Watson911d1ae2016-11-28 16:44:40 -080050bool module_init(const module_t* module);
Zach Johnson72f308e2014-09-22 22:14:04 -070051// Start up the provided module. |module| may not be NULL
52// and must be initialized or have no init function.
Myles Watson911d1ae2016-11-28 16:44:40 -080053bool module_start_up(const module_t* module);
Zach Johnson72f308e2014-09-22 22:14:04 -070054// Shut down the provided module. |module| may not be NULL.
55// If not started, does nothing.
Myles Watson911d1ae2016-11-28 16:44:40 -080056void module_shut_down(const module_t* module);
Zach Johnson72f308e2014-09-22 22:14:04 -070057// Clean up the provided module. |module| may not be NULL.
58// If not initialized, does nothing.
Myles Watson911d1ae2016-11-28 16:44:40 -080059void module_clean_up(const module_t* module);
Zach Johnson72f308e2014-09-22 22:14:04 -070060
Zach Johnson3c511e62014-09-28 15:46:25 -070061// Temporary callbacked wrapper for module start up, so real modules can be
62// spliced into the current janky startup sequence. Runs on a separate thread,
63// which terminates when the module start up has finished. When module startup
64// has finished, |callback| is called within the context of |callback_thread|
65// with |FUTURE_SUCCESS| or |FUTURE_FAIL| depending on whether startup succeeded
66// or not.
Jack He6d110522018-07-25 21:43:01 -070067void module_start_up_callbacked_wrapper(
68 const module_t* module,
69 bluetooth::common::MessageLoopThread* callback_thread, thread_fn callback);