OVMS3-idf/examples/bluetooth/ble_mesh/ble_mesh_console/ble_mesh_provisioner/main/ble_mesh_reg_test_perf_client_cmd.c
Island fc3253163e component/ble_mesh: ESP BLE Mesh release
1. BLE Mesh Core

* Provisioning: Node Role
    * Advertising and GATT bearer
    * Authentication OOB

* Provisioning: Provisioner Role
    * Advertising and GATT bearer
    * Authentication OOB

* Networking
    * Relay
    * Segmentation and Reassembly
    * Key Refresh
    * IV Update

* Proxy Support

* Multiple Client Models Run Simultaneously
    * Support multiple client models send packets to different nodes simultaneously
    * No blocking between client model and server

* NVS Storage
    * Store Provisioning Data of BLE Mesh Nodes in Flash

2. BLE Mesh Applications

* BLE Mesh Node & Provisioner
    * Node Example
    * Provisioner Example
    * Node + Generic OnOff Client Example

* Fast Provisioning
    * Vendor Fast Prov Server Model
    * Vendor Fast Prov Client Model
    * Examples

* Wi-Fi & BLE Mesh Coexistence
    * Example

* BLE Mesh Console Commands
    * Example

3. BLE Mesh Models

* Foundation Models
    * Configuration Server Model
    * Configuration Client Model
    * Health Server Model
    * Health Client Model

* Generic Client Models
    * Generic OnOff Client
    * Generic Level Client
    * Generic Location Client
    * Generic Default Transition Timer Client
    * Generic Power OnOff Client
    * Generic Power Level Client
    * Generic Battery Client
    * Generic Property Client

* Generic Server Models
    * Generic OnOff Server (Example)

* Lighting Client Models
    * Light Lightness Client
    * Light CTL Client
    * Light HSL Client
    * Light xyL Client
    * Light LC Client

* Sensor Client Model
    * Sensor Client

* Time and Scenes Client Models
    * Time Client
    * Scene Client
    * Scheduler Client
2019-06-24 11:31:24 +08:00

219 lines
9.2 KiB
C

// Copyright 2017-2018 Espressif Systems (Shanghai) PTE LTD
//
// 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, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "freertos/queue.h"
#include "freertos/xtensa_api.h"
#include "freertos/FreeRTOSConfig.h"
#include "esp_ble_mesh_networking_api.h"
#include "ble_mesh_adapter.h"
SemaphoreHandle_t ble_mesh_test_perf_send_sema;
SemaphoreHandle_t ble_mesh_test_perf_sema;
typedef struct {
struct arg_str *action_type;
struct arg_int *playload_byte;
struct arg_int *test_num;
struct arg_int *opcode;
struct arg_int *unicast_address;
struct arg_int *ttl;
struct arg_int *app_idx;
struct arg_int *net_idx;
struct arg_int *dev_role;
struct arg_end *end;
} ble_mesh_test_perf_client_model_t;
ble_mesh_test_perf_client_model_t test_perf_client_model;
typedef struct {
struct arg_str *action_type;
struct arg_int *test_size;
struct arg_int *node_num;
struct arg_int *ttl;
struct arg_end *end;
} ble_mesh_test_perf_client_model_statistics_t;
ble_mesh_test_perf_client_model_statistics_t test_perf_client_model_statistics;
void ble_mesh_performance_client_model_command();
void ble_mesh_register_mesh_test_performance_client()
{
ble_mesh_performance_client_model_command();
}
void ble_mesh_test_performance_client_model_throughput(void *params)
{
uint16_t i;
uint8_t *data = NULL;
esp_ble_mesh_msg_ctx_t ctx;
ble_mesh_test_perf_throughput_data *profile_context = (ble_mesh_test_perf_throughput_data *)params;
ESP_LOGD(TAG, "enter %s\n", __func__);
ctx.net_idx = profile_context->net_idx;
ctx.app_idx = profile_context->app_idx;
ctx.addr = profile_context->address;
ctx.send_ttl = profile_context->ttl;
ctx.model = profile_context->model;
ctx.send_rel = 0;
test_perf_statistics.test_length = profile_context->length;
// create send data
data = malloc(profile_context->length);
if (data == NULL) {
ESP_LOGE(TAG, " %s, %d, malloc fail\n", __func__, __LINE__);
}
ble_mesh_test_perf_send_sema = xSemaphoreCreateMutex();
xSemaphoreTake(ble_mesh_test_perf_send_sema, SEND_MESSAGE_TIMEOUT);
for (i = 1; i <= profile_context->test_num; i++) {
ble_mesh_create_send_data((char *)data, profile_context->length, i, profile_context->opcode);
start_time = esp_timer_get_time();
esp_ble_mesh_client_model_send_msg(profile_context->model, &ctx, profile_context->opcode,
profile_context->length, data, 8000, profile_context->need_ack, profile_context->device_role);
ble_mesh_test_performance_client_model_accumulate_statistics(profile_context->length);
xSemaphoreTake(ble_mesh_test_perf_send_sema, SEND_MESSAGE_TIMEOUT);
}
ESP_LOGI(TAG, "VendorModel:SendPackage,Finish");
free(params);
vTaskDelete(NULL);
ESP_LOGD(TAG, "exit %s\n", __func__);
}
int ble_mesh_test_performance_client_model(int argc, char **argv)
{
esp_ble_mesh_model_t *model;
esp_err_t result = ESP_OK;
ble_mesh_test_perf_throughput_data *profile_data = NULL;
ESP_LOGD(TAG, "enter %s\n", __func__);
int nerrors = arg_parse(argc, argv, (void **) &test_perf_client_model);
if (nerrors != 0) {
arg_print_errors(stderr, test_perf_client_model.end, argv[0]);
return 1;
}
model = ble_mesh_get_model(ESP_BLE_MESH_VND_MODEL_ID_TEST_PERF_CLI);
if (strcmp(test_perf_client_model.action_type->sval[0], "init") == 0) {
ble_mesh_test_perf_sema = xSemaphoreCreateMutex();
result = esp_ble_mesh_client_model_init(model);
if (result == ESP_OK) {
ESP_LOGI(TAG, "VendorClientModel:Init,OK");
}
} else if (strcmp(test_perf_client_model.action_type->sval[0], "start") == 0) {
profile_data = malloc(sizeof(ble_mesh_test_perf_throughput_data));
profile_data->model = model;
if (profile_data == NULL) {
ESP_LOGE(TAG, " %s, %d malloc fail\n", __func__, __LINE__);
return 1;
}
arg_int_to_value(test_perf_client_model.playload_byte, profile_data->length, "length");
arg_int_to_value(test_perf_client_model.opcode, profile_data->opcode, "opcode");
arg_int_to_value(test_perf_client_model.unicast_address, profile_data->address, "publish address");
arg_int_to_value(test_perf_client_model.ttl, profile_data->ttl, "model ttl");
arg_int_to_value(test_perf_client_model.app_idx, profile_data->app_idx, "appkey index");
arg_int_to_value(test_perf_client_model.net_idx, profile_data->net_idx, "network key index");
arg_int_to_value(test_perf_client_model.dev_role, profile_data->device_role, "device role");
arg_int_to_value(test_perf_client_model.test_num, profile_data->test_num, "test number");
if (profile_data->opcode == ESP_BLE_MESH_VND_MODEL_OP_TEST_PERF_SET) {
profile_data->need_ack = true;
} else {
profile_data->need_ack = false;
}
xTaskCreate(ble_mesh_test_performance_client_model_throughput, "MESHTHROUGHPUTSEND", 4048, profile_data, 1, NULL);
}
ESP_LOGD(TAG, "exit %s\n", __func__);
return result;
}
int ble_mesh_test_performance_client_model_performance(int argc, char **argv)
{
uint8_t result = 0;
ESP_LOGD(TAG, "enter %s\n", __func__);
int nerrors = arg_parse(argc, argv, (void **) &test_perf_client_model_statistics);
if (nerrors != 0) {
arg_print_errors(stderr, test_perf_client_model_statistics.end, argv[0]);
return 1;
}
if (strcmp(test_perf_client_model_statistics.action_type->sval[0], "init") == 0) {
result = ble_mesh_test_performance_client_model_init(test_perf_client_model_statistics.node_num->ival[0],
test_perf_client_model_statistics.test_size->ival[0], test_perf_client_model_statistics.ttl->ival[0]);
if (result == 0) {
ESP_LOGI(TAG, "VendorPerfTest:InitStatistics,OK\n");
}
} else if (strcmp(test_perf_client_model_statistics.action_type->sval[0], "get") == 0) {
ble_mesh_test_performance_client_model_get();
} else if (strcmp(test_perf_client_model_statistics.action_type->sval[0], "destroy") == 0) {
ble_mesh_test_performance_client_model_destroy();
ESP_LOGI(TAG, "VendorPerfTest:DestroyStatistics,OK\n");
} else if (strcmp(test_perf_client_model_statistics.action_type->sval[0], "percent") == 0) {
ble_mesh_test_performance_client_model_get_received_percent();
ESP_LOGI(TAG, "VendorPerfTest:GetPercent,OK\n");
}
ESP_LOGD(TAG, "exit %s\n", __func__);
return 0;
}
void ble_mesh_performance_client_model_command()
{
test_perf_client_model.action_type = arg_str1("z", NULL, "<action>", "action type");
test_perf_client_model.playload_byte = arg_int0("p", NULL, "<byte>", "playload byte");
test_perf_client_model.test_num = arg_int0("n", NULL, "<number>", "test number");
// set test num default to 1000
test_perf_client_model.test_num->ival[0] = 1000;
test_perf_client_model.opcode = arg_int0("o", NULL, "<opcode>", "opcode");
test_perf_client_model.unicast_address = arg_int0("u", NULL, "<address>", "unicast address");
test_perf_client_model.ttl = arg_int0("t", NULL, "<ttl>", "ttl");
test_perf_client_model.app_idx = arg_int0("a", NULL, "<appkey>", "appkey index");
test_perf_client_model.net_idx = arg_int0("i", NULL, "<network key>", "network key index");
test_perf_client_model.dev_role = arg_int0("d", NULL, "<role>", "device role");
test_perf_client_model.dev_role->ival[0] = ROLE_PROVISIONER;
test_perf_client_model.end = arg_end(1);
const esp_console_cmd_t test_perf_client_model_cmd = {
.command = "bmtpcvm",
.help = "ble mesh test performance client vendor model",
.hint = NULL,
.func = &ble_mesh_test_performance_client_model,
.argtable = &test_perf_client_model,
};
ESP_ERROR_CHECK(esp_console_cmd_register(&test_perf_client_model_cmd));
test_perf_client_model_statistics.action_type = arg_str1("z", NULL, "<action>", "action type");
test_perf_client_model_statistics.test_size = arg_int0("s", NULL, "<test size>", "test size");
test_perf_client_model_statistics.node_num = arg_int0("n", NULL, "<node number>", "node number");
test_perf_client_model_statistics.ttl = arg_int0("l", NULL, "<test number>", "ttl");
test_perf_client_model_statistics.end = arg_end(1);
const esp_console_cmd_t test_perf_client_model_performance_cmd = {
.command = "bmcperf",
.help = "ble mesh client: test performance",
.hint = NULL,
.func = &ble_mesh_test_performance_client_model_performance,
.argtable = &test_perf_client_model_statistics,
};
ESP_ERROR_CHECK(esp_console_cmd_register(&test_perf_client_model_performance_cmd));
}