You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@inlong.apache.org by GitBox <gi...@apache.org> on 2022/07/29 09:39:15 UTC

[GitHub] [inlong] EMsnap commented on a diff in pull request #5268: [INLONG-5267][SDK] DataProxy SDK(cpp) config file and demo

EMsnap commented on code in PR #5268:
URL: https://github.com/apache/inlong/pull/5268#discussion_r933058307


##########
inlong-sdk/dataproxy-sdk-twins/dataproxy-sdk-cpp/release/demo/send_demo.cc:
##########
@@ -0,0 +1,117 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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 <chrono>
+#include <iostream>
+#include <string>
+#include <tc_api.h>
+
+using namespace std;
+using namespace dataproxy_sdk;
+
+// user set call_back func
+int call_back_func(const char *inlong_group_id, const char *inlong_stream_id, const char *msg, int msg_len, long report_time, const char *ip)
+{
+    cout << "******this is call back, print info******" << endl;
+    cout << "inlong_group_id: " << inlong_group_id << ", inlong_stream_id: " << inlong_stream_id << endl;
+    cout << "msg_len: " << msg_len << ", msg content: " << msg << endl;
+    cout << "report_time: " << report_time << ", client ip: " << ip << endl;
+    cout << "******call back end******" << endl;
+
+    return 0;
+}
+
+int main(int argc, char const *argv[])
+{
+    if (2 != argc)
+    {
+        cout << "USAGE: ./send_demo ../config/config_example.json" << endl;
+        return 0;
+    }
+
+    // step1. init
+    if (tc_api_init(argv[1]))
+    {
+        cout << "init error" << endl;
+        return 0;
+    }
+    cout << "---->start capi successfully" << endl;
+
+    int count = 1000;
+    string inlong_group_id = "test_20220727_86";
+    string inlong_stream_id = "test_20220727_86_str_17";
+    string msg = "this is a test ttttttttttttttt; eiwhgreuhg jfdiowaehgorerlea; test end";
+
+    // step2. send
+    cout << "---->start tc_api_send" << endl;
+    for (size_t i = 0; i < count; i++)
+    {
+        if (tc_api_send(inlong_group_id.c_str(), inlong_stream_id.c_str(), msg.c_str(), msg.length(), call_back_func))
+        {
+            cout << "tc_api_send error;"
+                 << " ";
+        }
+    }
+
+    string badbid="b_wrong_bid";

Review Comment:
   bad_bid



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@inlong.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org