Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
18241f71
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
18241f71
编写于
5月 25, 2022
作者:
L
Liu Jicong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chore: remove out-of-date example
上级
86c9446a
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
0 addition
and
178 deletion
+0
-178
examples/c/stream.c
examples/c/stream.c
+0
-178
未找到文件。
examples/c/stream.c
已删除
100644 → 0
浏览文件 @
86c9446a
/*
* Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
*
* This program is free software: you can use, redistribute, and/or modify
* it under the terms of the GNU Affero General Public License, version 3
* or later ("AGPL"), as published by the Free Software Foundation.
*
* 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.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "../../../include/client/taos.h" // include TDengine header file
typedef
struct
{
char
server_ip
[
64
];
char
db_name
[
64
];
char
tbl_name
[
64
];
}
param
;
int
g_thread_exit_flag
=
0
;
void
*
insert_rows
(
void
*
sarg
);
void
streamCallBack
(
void
*
param
,
TAOS_RES
*
res
,
TAOS_ROW
row
)
{
// in this simple demo, it just print out the result
char
temp
[
128
];
TAOS_FIELD
*
fields
=
taos_fetch_fields
(
res
);
int
numFields
=
taos_num_fields
(
res
);
taos_print_row
(
temp
,
row
,
fields
,
numFields
);
printf
(
"
\n
%s
\n
"
,
temp
);
}
int
main
(
int
argc
,
char
*
argv
[])
{
TAOS
*
taos
;
char
db_name
[
64
];
char
tbl_name
[
64
];
char
sql
[
1024
]
=
{
0
};
if
(
argc
!=
4
)
{
printf
(
"usage: %s server-ip dbname tblname
\n
"
,
argv
[
0
]);
exit
(
0
);
}
strcpy
(
db_name
,
argv
[
2
]);
strcpy
(
tbl_name
,
argv
[
3
]);
// create pthread to insert into row per second for stream calc
param
*
t_param
=
(
param
*
)
malloc
(
sizeof
(
param
));
if
(
NULL
==
t_param
)
{
printf
(
"failed to malloc
\n
"
);
exit
(
1
);
}
memset
(
t_param
,
0
,
sizeof
(
param
));
strcpy
(
t_param
->
server_ip
,
argv
[
1
]);
strcpy
(
t_param
->
db_name
,
db_name
);
strcpy
(
t_param
->
tbl_name
,
tbl_name
);
pthread_t
pid
;
pthread_create
(
&
pid
,
NULL
,
(
void
*
(
*
)(
void
*
))
insert_rows
,
t_param
);
sleep
(
3
);
// waiting for database is created.
// open connection to database
taos
=
taos_connect
(
argv
[
1
],
"root"
,
"taosdata"
,
db_name
,
0
);
if
(
taos
==
NULL
)
{
printf
(
"failed to connet to server:%s
\n
"
,
argv
[
1
]);
free
(
t_param
);
exit
(
1
);
}
// starting stream calc,
printf
(
"please input stream SQL:[e.g., select count(*) from tblname interval(5s) sliding(2s);]
\n
"
);
fgets
(
sql
,
sizeof
(
sql
),
stdin
);
if
(
sql
[
0
]
==
0
)
{
printf
(
"input NULL stream SQL, so exit!
\n
"
);
free
(
t_param
);
exit
(
1
);
}
// param is set to NULL in this demo, it shall be set to the pointer to app context
TAOS_STREAM
*
pStream
=
taos_open_stream
(
taos
,
sql
,
streamCallBack
,
0
,
NULL
,
NULL
);
if
(
NULL
==
pStream
)
{
printf
(
"failed to create stream
\n
"
);
free
(
t_param
);
exit
(
1
);
}
printf
(
"presss any key to exit
\n
"
);
getchar
();
taos_close_stream
(
pStream
);
g_thread_exit_flag
=
1
;
pthread_join
(
pid
,
NULL
);
taos_close
(
taos
);
free
(
t_param
);
return
0
;
}
void
*
insert_rows
(
void
*
sarg
)
{
TAOS
*
taos
;
char
command
[
1024
]
=
{
0
};
param
*
winfo
=
(
param
*
)
sarg
;
if
(
NULL
==
winfo
){
printf
(
"para is null!
\n
"
);
exit
(
1
);
}
taos
=
taos_connect
(
winfo
->
server_ip
,
"root"
,
"taosdata"
,
NULL
,
0
);
if
(
taos
==
NULL
)
{
printf
(
"failed to connet to server:%s
\n
"
,
winfo
->
server_ip
);
exit
(
1
);
}
// drop database
sprintf
(
command
,
"drop database %s;"
,
winfo
->
db_name
);
if
(
taos_query
(
taos
,
command
)
!=
0
)
{
printf
(
"failed to drop database, reason:%s
\n
"
,
taos_errstr
(
taos
));
exit
(
1
);
}
// create database
sprintf
(
command
,
"create database %s;"
,
winfo
->
db_name
);
if
(
taos_query
(
taos
,
command
)
!=
0
)
{
printf
(
"failed to create database, reason:%s
\n
"
,
taos_errstr
(
taos
));
exit
(
1
);
}
// use database
sprintf
(
command
,
"use %s;"
,
winfo
->
db_name
);
if
(
taos_query
(
taos
,
command
)
!=
0
)
{
printf
(
"failed to use database, reason:%s
\n
"
,
taos_errstr
(
taos
));
exit
(
1
);
}
// create table
sprintf
(
command
,
"create table %s (ts timestamp, speed int);"
,
winfo
->
tbl_name
);
if
(
taos_query
(
taos
,
command
)
!=
0
)
{
printf
(
"failed to create table, reason:%s
\n
"
,
taos_errstr
(
taos
));
exit
(
1
);
}
// insert data
int64_t
begin
=
(
int64_t
)
time
(
NULL
);
int
index
=
0
;
while
(
1
)
{
if
(
g_thread_exit_flag
)
break
;
index
++
;
sprintf
(
command
,
"insert into %s values (%ld, %d)"
,
winfo
->
tbl_name
,
(
begin
+
index
)
*
1000
,
index
);
if
(
taos_query
(
taos
,
command
))
{
printf
(
"failed to insert row [%s], reason:%s
\n
"
,
command
,
taos_errstr
(
taos
));
}
sleep
(
1
);
}
taos_close
(
taos
);
return
0
;
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录