| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318 |
- /*
- * File : examples_dstr.c
- * This file is the example code of dstr(dynamic string) package
- * COPYRIGHT (C) 2006 - 2018, RT-Thread Development Team
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Change Logs:
- * Date Author Notes
- * 2018-06-07 never the first version
- * 2018-07-25 never add sample API
- * 2018-08-30 never add sample API
- */
- #include <rtthread.h>
- #include <finsh.h>
- #include "dstr.h"
- #include <dfs_posix.h>
- void rt_dstr_print(rt_dstr_t *thiz)
- {
- if (thiz == NULL)
- return;
- printf("%s\n", thiz->str);
- }
- void dstr_test_new(void)
- {
- const char *str = "new dstr";
- rt_dstr_t *p = NULL;
- printf("\n");
- printf("sample of new:\n");
- p = rt_dstr_new(str);
- rt_dstr_print(p);
- rt_dstr_del(p);
- printf("\n");
- }
- void dstr_test_cat(void)
- {
- rt_dstr_t *p = NULL;
- const char *str = "cat ";
- printf("sample of cat:\n");
- p = rt_dstr_new(str);
- rt_dstr_cat(p, "sample");
- rt_dstr_print(p);
- rt_dstr_del(p);
- printf("\n");
- }
- void dstr_test_ncat(void)
- {
- rt_dstr_t *p = NULL;
- const char *str = "ncat ";
- printf("sample of ncat:\n");
- p = rt_dstr_new(str);
- rt_dstr_ncat(p, "samplexxxxxx", 6);
- rt_dstr_print(p);
- rt_dstr_del(p);
- printf("\n");
- }
- void dstr_test_precat(void)
- {
- rt_dstr_t *p = NULL;
- printf("sample of precat:\n");
- p = rt_dstr_precat(NULL, "456");
- rt_dstr_precat(p, "123");
- rt_dstr_precat(p, "pre sample: ");
- rt_dstr_print(p);
- rt_dstr_del(p);
- }
- void dstr_test_cat_dstr(void)
- {
- rt_dstr_t *p1 = NULL, *p2 = NULL;
- printf("\n");
- printf("sample of cat_dstr:\n");
- p1 = rt_dstr_new("dstr1");
- p2 = rt_dstr_new("dstr2");
- p1 = rt_dstr_cat_dstr(p1, p2);
- rt_dstr_print(p1);
- rt_dstr_print(p2);
- rt_dstr_del(p1);
- rt_dstr_del(p2);
- }
- void dstr_test_precat_dstr(void)
- {
- rt_dstr_t *p1 = NULL, *p2 = NULL;
- printf("\n");
- printf("sample of precat_dstr:\n");
- p1 = rt_dstr_new("dstr1");
- p2 = rt_dstr_new("dstr2");
- p1 = rt_dstr_precat_dstr(p1, p2);
- rt_dstr_print(p1);
- rt_dstr_print(p2);
- rt_dstr_del(p1);
- rt_dstr_del(p2);
- }
- void dstr_test_cmp(void)
- {
- rt_dstr_t *p1 = NULL;
- rt_dstr_t *p2 = NULL;
- int res = 0;
- printf("\n");
- printf("sample of cmp:\n");
- p1 = rt_dstr_new("helle");
- p2 = rt_dstr_new("hellc");
- res = rt_dstr_cmp(p1, p2);
- printf("cmp result: %d\n", res);
- rt_dstr_del(p1);
- rt_dstr_del(p2);
- /* one of them is NULL */
- p1 = rt_dstr_new("abc");
- res = rt_dstr_cmp(p1, NULL);
- printf("s2:NULL result: %d\n", res);
- rt_dstr_del(p1);
- p1 = rt_dstr_new("efg");
- res = rt_dstr_cmp(NULL, p1);
- printf("s1:NULL result: %d\n", res);
- rt_dstr_del(p1);
- res = rt_dstr_cmp(NULL, NULL);
- printf("two NULL result: %d\n\n", res);
- }
- void dstr_test_ncmp(void)
- {
- rt_dstr_t *p1 = NULL;
- rt_dstr_t *p2 = NULL;
- int res = 0;
- printf("sample of ncmp:\n");
- p1 = rt_dstr_new("hello");
- p2 = rt_dstr_new("hella");
- res = rt_dstr_ncmp(p1, p2, 5);
- printf("ncmp result: %d\n", res);
- rt_dstr_del(p1);
- rt_dstr_del(p2);
- /* one of them is NULL */
- p1 = rt_dstr_new("abc");
- res = rt_dstr_ncmp(p1, NULL, 2);
- printf("s2:NULL ncmp result: %d\n", res);
- rt_dstr_del(p1);
- p1 = rt_dstr_new("efg");
- res = rt_dstr_ncmp(NULL, p1, 3);
- printf("s1:NULL ncmp result: %d\n", res);
- rt_dstr_del(p1);
- res = rt_dstr_ncmp(NULL, NULL, 4);
- printf("two NULL ncmp result: %d\n\n", res);
- }
- void dstr_test_casecmp(void)
- {
- rt_dstr_t *p1 = NULL;
- rt_dstr_t *p2 = NULL;
- int res = 0;
- printf("sample of casecmp:\n");
- p1 = rt_dstr_new("hello");
- p2 = rt_dstr_new("HELLO");
- res = rt_dstr_casecmp(p1, p2);
- printf("casecmp result: %d\n", res);
- rt_dstr_del(p1);
- rt_dstr_del(p2);
- /* one of them is NULL */
- p1 = rt_dstr_new("abc");
- res = rt_dstr_casecmp(p1, NULL);
- printf("s2:NULL casecmp result: %d\n", res);
- rt_dstr_del(p1);
- p1 = rt_dstr_new("efg");
- res = rt_dstr_casecmp(NULL, p1);
- printf("s1:NULL casecmp result: %d\n", res);
- rt_dstr_del(p1);
- res = rt_dstr_casecmp(NULL, NULL);
- printf("two NULL casecmp result: %d\n\n", res);
- }
- void dstr_test_strlen(void)
- {
- rt_dstr_t *p1 = NULL;
- int res = 0;
- printf("sample of strlen:\n");
- p1 = rt_dstr_new("hello strlen");
- res = rt_dstr_strlen(p1);
- if (res == -1)
- return;
- printf("length: %d\n", res);
- rt_dstr_del(p1);
- printf("\n");
- }
- void dstr_test_sprintf(void)
- {
- const char *src = "sprintf";
- rt_dstr_t *p1 = NULL;
- rt_dstr_t *p2 = NULL;
- printf("sample of sprintf:\n");
- p1 = rt_dstr_new("test");
- rt_dstr_sprintf(p1, "%s", src);
- rt_dstr_print(p1);
- rt_dstr_del(p1);
- p2 = rt_dstr_new("");
- rt_dstr_sprintf(p2, "%08x", 0x20180604);
- rt_dstr_print(p2);
- rt_dstr_del(p2);
- printf("\n");
- }
- static rt_dstr_t *path_cat(const char *path, const char *filename)
- {
- rt_dstr_t *p = RT_NULL;
- p = rt_dstr_sprintf(p, "%s/%s", path, filename);
- return p;
- }
- static rt_dstr_t *header_info_cat(char *send_buffer)
- {
- rt_dstr_t *p = RT_NULL;
- const char *key = "header-key";
- /* build header for upload */
- p = rt_dstr_append_printf(p, "api-key: %s\r\n", key);
- rt_dstr_append_printf(p, "Content-Length: %d\r\n", strlen(send_buffer));
- rt_dstr_cat(p, "Content-Type: application/octet-stream\r\n");
- return p;
- }
- void dstr_test_append(void)
- {
- char *buffer = "test of header";
- rt_dstr_t *p = NULL;
- printf("sample of append:\n");
- p = path_cat("/home", "bsp/thread.c");
- rt_dstr_print(p);
- rt_dstr_del(p);
- printf("\n");
- p = header_info_cat(buffer);
- rt_dstr_print(p);
- rt_dstr_del(p);
- }
- void dstr_test(void)
- {
- dstr_test_new();
- dstr_test_cat();
- dstr_test_ncat();
- dstr_test_precat();
- dstr_test_cat_dstr();
- dstr_test_precat_dstr();
- dstr_test_cmp();
- dstr_test_ncmp();
- dstr_test_casecmp();
- dstr_test_strlen();
- dstr_test_sprintf();
- dstr_test_append();
- }
- MSH_CMD_EXPORT(dstr_test, dstr example);
|