tstream.h 12.6 KB
Newer Older
L
Liu Jicong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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/>.
 */

L
Liu Jicong 已提交
16
#include "executor.h"
L
Liu Jicong 已提交
17
#include "os.h"
L
Liu Jicong 已提交
18
#include "query.h"
L
Liu Jicong 已提交
19 20 21
#include "tdatablock.h"
#include "tmsg.h"
#include "tmsgcb.h"
L
Liu Jicong 已提交
22
#include "tqueue.h"
L
Liu Jicong 已提交
23 24 25 26 27 28
#include "trpc.h"

#ifdef __cplusplus
extern "C" {
#endif

L
Liu Jicong 已提交
29 30
#ifndef _STREAM_H_
#define _STREAM_H_
L
Liu Jicong 已提交
31

L
Liu Jicong 已提交
32 33
typedef struct SStreamTask SStreamTask;

34 35 36 37 38
enum {
  STREAM_STATUS__NORMAL = 0,
  STREAM_STATUS__RECOVER,
};

L
Liu Jicong 已提交
39
enum {
L
Liu Jicong 已提交
40 41
  TASK_STATUS__NORMAL = 0,
  TASK_STATUS__DROPPING,
L
Liu Jicong 已提交
42 43 44 45
  TASK_STATUS__FAIL,
  TASK_STATUS__STOP,
  TASK_STATUS__PREPARE_RECOVER,
  TASK_STATUS__RECOVERING,
L
Liu Jicong 已提交
46 47 48 49 50 51
};

enum {
  TASK_EXEC_STATUS__IDLE = 1,
  TASK_EXEC_STATUS__EXECUTING,
  TASK_EXEC_STATUS__CLOSING,
L
Liu Jicong 已提交
52 53 54 55 56 57
};

enum {
  TASK_INPUT_STATUS__NORMAL = 1,
  TASK_INPUT_STATUS__BLOCKED,
  TASK_INPUT_STATUS__RECOVER,
L
Liu Jicong 已提交
58
  TASK_INPUT_STATUS__PROCESSING,
L
Liu Jicong 已提交
59
  TASK_INPUT_STATUS__STOP,
L
Liu Jicong 已提交
60
  TASK_INPUT_STATUS__FAILED,
L
Liu Jicong 已提交
61 62 63 64 65 66
};

enum {
  TASK_OUTPUT_STATUS__NORMAL = 1,
  TASK_OUTPUT_STATUS__WAIT,
  TASK_OUTPUT_STATUS__BLOCKED,
L
Liu Jicong 已提交
67 68
};

L
Liu Jicong 已提交
69 70 71 72
typedef struct {
  int8_t type;
} SStreamQueueItem;

L
Liu Jicong 已提交
73
typedef struct {
L
Liu Jicong 已提交
74 75
  int8_t      type;
  int64_t     ver;
L
Liu Jicong 已提交
76 77 78 79 80 81 82
  int32_t*    dataRef;
  SSubmitReq* data;
} SStreamDataSubmit;

typedef struct {
  int8_t type;

L
Liu Jicong 已提交
83
  int32_t srcVgId;
L
Liu Jicong 已提交
84
  int32_t childId;
L
Liu Jicong 已提交
85
  int64_t sourceVer;
L
Liu Jicong 已提交
86
  int64_t reqId;
L
Liu Jicong 已提交
87 88 89 90 91 92 93 94

  SArray* blocks;  // SArray<SSDataBlock*>
} SStreamDataBlock;

typedef struct {
  int8_t type;
} SStreamCheckpoint;

95 96 97 98 99
typedef struct {
  int8_t       type;
  SSDataBlock* pBlock;
} SStreamTrigger;

L
Liu Jicong 已提交
100 101 102 103 104 105
enum {
  STREAM_QUEUE__SUCESS = 1,
  STREAM_QUEUE__FAILED,
  STREAM_QUEUE__PROCESSING,
};

L
Liu Jicong 已提交
106 107 108 109
typedef struct {
  STaosQueue* queue;
  STaosQall*  qall;
  void*       qItem;
L
Liu Jicong 已提交
110 111
  int8_t      status;
} SStreamQueue;
L
Liu Jicong 已提交
112

113 114 115
int32_t streamInit();
void    streamCleanUp();

L
Liu Jicong 已提交
116 117 118 119 120 121 122
SStreamQueue* streamQueueOpen();
void          streamQueueClose(SStreamQueue* queue);

static FORCE_INLINE void streamQueueProcessSuccess(SStreamQueue* queue) {
  ASSERT(atomic_load_8(&queue->status) == STREAM_QUEUE__PROCESSING);
  queue->qItem = NULL;
  atomic_store_8(&queue->status, STREAM_QUEUE__SUCESS);
L
Liu Jicong 已提交
123 124
}

L
Liu Jicong 已提交
125 126 127 128 129 130 131 132 133 134
static FORCE_INLINE void streamQueueProcessFail(SStreamQueue* queue) {
  ASSERT(atomic_load_8(&queue->status) == STREAM_QUEUE__PROCESSING);
  atomic_store_8(&queue->status, STREAM_QUEUE__FAILED);
}

static FORCE_INLINE void* streamQueueCurItem(SStreamQueue* queue) { return queue->qItem; }

static FORCE_INLINE void* streamQueueNextItem(SStreamQueue* queue) {
  int8_t dequeueFlag = atomic_exchange_8(&queue->status, STREAM_QUEUE__PROCESSING);
  if (dequeueFlag == STREAM_QUEUE__FAILED) {
L
Liu Jicong 已提交
135
    ASSERT(queue->qItem != NULL);
L
Liu Jicong 已提交
136
    return streamQueueCurItem(queue);
L
Liu Jicong 已提交
137 138 139 140 141 142
  } else {
    taosGetQitem(queue->qall, &queue->qItem);
    if (queue->qItem == NULL) {
      taosReadAllQitems(queue->queue, queue->qall);
      taosGetQitem(queue->qall, &queue->qItem);
    }
L
Liu Jicong 已提交
143
    return streamQueueCurItem(queue);
L
Liu Jicong 已提交
144 145 146
  }
}

L
Liu Jicong 已提交
147
SStreamDataSubmit* streamDataSubmitNew(SSubmitReq* pReq);
L
Liu Jicong 已提交
148

L
Liu Jicong 已提交
149
void streamDataSubmitRefDec(SStreamDataSubmit* pDataSubmit);
L
Liu Jicong 已提交
150

L
Liu Jicong 已提交
151 152
SStreamDataSubmit* streamSubmitRefClone(SStreamDataSubmit* pSubmit);

L
Liu Jicong 已提交
153
typedef struct {
L
Liu Jicong 已提交
154
  char* qmsg;
L
Liu Jicong 已提交
155
  // followings are not applicable to encoder and decoder
L
Liu Jicong 已提交
156
  void* executor;
L
Liu Jicong 已提交
157 158 159
} STaskExec;

typedef struct {
L
Liu Jicong 已提交
160
  int32_t taskId;
L
Liu Jicong 已提交
161 162 163 164 165
  int32_t nodeId;
  SEpSet  epSet;
} STaskDispatcherFixedEp;

typedef struct {
L
Liu Jicong 已提交
166 167 168
  // int8_t  hashMethod;
  char      stbFullName[TSDB_TABLE_FNAME_LEN];
  SUseDbRsp dbInfo;
L
Liu Jicong 已提交
169 170
} STaskDispatcherShuffle;

L
Liu Jicong 已提交
171
typedef void FTbSink(SStreamTask* pTask, void* vnode, int64_t ver, void* data);
L
Liu Jicong 已提交
172

L
Liu Jicong 已提交
173
typedef struct {
L
Liu Jicong 已提交
174
  int64_t         stbUid;
L
Liu Jicong 已提交
175
  char            stbFullName[TSDB_TABLE_FNAME_LEN];
L
Liu Jicong 已提交
176
  SSchemaWrapper* pSchemaWrapper;
L
Liu Jicong 已提交
177
  // not applicable to encoder and decoder
L
Liu Jicong 已提交
178 179
  void*     vnode;
  FTbSink*  tbSinkFunc;
L
Liu Jicong 已提交
180
  STSchema* pTSchema;
L
Liu Jicong 已提交
181 182 183
  SHashObj* pHash;  // groupId to tbuid
} STaskSinkTb;

L
Liu Jicong 已提交
184
typedef void FSmaSink(void* vnode, int64_t smaId, const SArray* data);
L
Liu Jicong 已提交
185

L
Liu Jicong 已提交
186
typedef struct {
L
Liu Jicong 已提交
187 188
  int64_t smaId;
  // following are not applicable to encoder and decoder
L
Liu Jicong 已提交
189
  void*     vnode;
L
Liu Jicong 已提交
190
  FSmaSink* smaSink;
L
Liu Jicong 已提交
191 192 193 194 195 196 197 198
} STaskSinkSma;

typedef struct {
  int8_t reserved;
} STaskSinkFetch;

enum {
  TASK_SOURCE__SCAN = 1,
L
Liu Jicong 已提交
199 200
  TASK_SOURCE__PIPE,
  TASK_SOURCE__MERGE,
L
Liu Jicong 已提交
201 202 203 204
};

enum {
  TASK_EXEC__NONE = 1,
L
Liu Jicong 已提交
205 206
  TASK_EXEC__PIPE,
  TASK_EXEC__MERGE,
L
Liu Jicong 已提交
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
};

enum {
  TASK_DISPATCH__NONE = 1,
  TASK_DISPATCH__FIXED,
  TASK_DISPATCH__SHUFFLE,
};

enum {
  TASK_SINK__NONE = 1,
  TASK_SINK__TABLE,
  TASK_SINK__SMA,
  TASK_SINK__FETCH,
};

L
Liu Jicong 已提交
222 223 224 225 226
enum {
  TASK_INPUT_TYPE__SUMBIT_BLOCK = 1,
  TASK_INPUT_TYPE__DATA_BLOCK,
};

227 228 229 230 231
enum {
  TASK_TRIGGER_STATUS__IN_ACTIVE = 1,
  TASK_TRIGGER_STATUS__ACTIVE,
};

L
Liu Jicong 已提交
232 233 234 235
typedef struct {
  int32_t nodeId;
  int32_t childId;
  int32_t taskId;
L
Liu Jicong 已提交
236 237
  int64_t checkpointVer;
  int64_t processedVer;
L
Liu Jicong 已提交
238 239 240
  SEpSet  epSet;
} SStreamChildEpInfo;

241
typedef struct SStreamTask {
L
Liu Jicong 已提交
242 243
  int64_t streamId;
  int32_t taskId;
244
  int8_t  isDataScan;
L
Liu Jicong 已提交
245 246 247
  int8_t  execType;
  int8_t  sinkType;
  int8_t  dispatchType;
L
Liu Jicong 已提交
248
  int8_t  isStreamDistributed;
L
Liu Jicong 已提交
249 250
  int16_t dispatchMsgType;

251 252
  int8_t taskStatus;
  int8_t execStatus;
L
Liu Jicong 已提交
253

L
Liu Jicong 已提交
254
  // node info
L
Liu Jicong 已提交
255
  int32_t selfChildId;
L
Liu Jicong 已提交
256 257 258
  int32_t nodeId;
  SEpSet  epSet;

L
Liu Jicong 已提交
259 260 261 262 263 264
  // used for semi or single task,
  // while final task should have processedVer for each child
  int64_t recoverSnapVer;
  int64_t startVer;
  int64_t checkpointVer;
  int64_t processedVer;
5
54liuyao 已提交
265
  int32_t numOfVgroups;
L
Liu Jicong 已提交
266

L
Liu Jicong 已提交
267 268 269
  // children info
  SArray* childEpInfo;  // SArray<SStreamChildEpInfo*>

L
Liu Jicong 已提交
270 271 272
  // exec
  STaskExec exec;

L
Liu Jicong 已提交
273
  // TODO: unify sink and dispatch
L
Liu Jicong 已提交
274 275

  //  local sink
L
Liu Jicong 已提交
276 277 278 279 280 281
  union {
    STaskSinkTb    tbSink;
    STaskSinkSma   smaSink;
    STaskSinkFetch fetchSink;
  };

L
Liu Jicong 已提交
282
  // remote dispatcher
L
Liu Jicong 已提交
283 284 285 286 287
  union {
    STaskDispatcherFixedEp fixedEpDispatcher;
    STaskDispatcherShuffle shuffleDispatcher;
  };

L
Liu Jicong 已提交
288 289
  int8_t inputStatus;
  int8_t outputStatus;
L
Liu Jicong 已提交
290 291 292

  SStreamQueue* inputQueue;
  SStreamQueue* outputQueue;
L
Liu Jicong 已提交
293

294 295 296 297 298
  // trigger
  int8_t  triggerStatus;
  int64_t triggerParam;
  void*   timer;

L
Liu Jicong 已提交
299
  // application storage
L
Liu Jicong 已提交
300
  // void* ahandle;
301 302 303

  // msg handle
  SMsgCb* pMsgCb;
304
} SStreamTask;
L
Liu Jicong 已提交
305

L
Liu Jicong 已提交
306 307 308
int32_t tEncodeStreamEpInfo(SEncoder* pEncoder, const SStreamChildEpInfo* pInfo);
int32_t tDecodeStreamEpInfo(SDecoder* pDecoder, SStreamChildEpInfo* pInfo);

L
Liu Jicong 已提交
309
SStreamTask* tNewSStreamTask(int64_t streamId);
H
Hongze Cheng 已提交
310 311
int32_t      tEncodeSStreamTask(SEncoder* pEncoder, const SStreamTask* pTask);
int32_t      tDecodeSStreamTask(SDecoder* pDecoder, SStreamTask* pTask);
L
Liu Jicong 已提交
312 313
void         tFreeSStreamTask(SStreamTask* pTask);

L
Liu Jicong 已提交
314
static FORCE_INLINE int32_t streamTaskInput(SStreamTask* pTask, SStreamQueueItem* pItem) {
315
#if 0
L
Liu Jicong 已提交
316 317 318 319 320 321 322 323
  while (1) {
    int8_t inputStatus =
        atomic_val_compare_exchange_8(&pTask->inputStatus, TASK_INPUT_STATUS__NORMAL, TASK_INPUT_STATUS__PROCESSING);
    if (inputStatus == TASK_INPUT_STATUS__NORMAL) {
      break;
    }
    ASSERT(0);
  }
324
#endif
L
Liu Jicong 已提交
325 326 327 328

  if (pItem->type == STREAM_INPUT__DATA_SUBMIT) {
    SStreamDataSubmit* pSubmitClone = streamSubmitRefClone((SStreamDataSubmit*)pItem);
    if (pSubmitClone == NULL) {
L
Liu Jicong 已提交
329 330
      qDebug("task %d %p submit enqueue failed since out of memory", pTask->taskId, pTask);
      terrno = TSDB_CODE_OUT_OF_MEMORY;
L
Liu Jicong 已提交
331 332 333
      atomic_store_8(&pTask->inputStatus, TASK_INPUT_STATUS__FAILED);
      return -1;
    }
L
Liu Jicong 已提交
334
    qDebug("task %d %p submit enqueue %p %p %p", pTask->taskId, pTask, pItem, pSubmitClone, pSubmitClone->data);
L
Liu Jicong 已提交
335
    taosWriteQitem(pTask->inputQueue->queue, pSubmitClone);
L
Liu Jicong 已提交
336
    // qStreamInput(pTask->exec.executor, pSubmitClone);
5
54liuyao 已提交
337
  } else if (pItem->type == STREAM_INPUT__DATA_BLOCK || pItem->type == STREAM_INPUT__DATA_RETRIEVE) {
L
Liu Jicong 已提交
338
    taosWriteQitem(pTask->inputQueue->queue, pItem);
L
Liu Jicong 已提交
339
    // qStreamInput(pTask->exec.executor, pItem);
L
Liu Jicong 已提交
340 341
  } else if (pItem->type == STREAM_INPUT__CHECKPOINT) {
    taosWriteQitem(pTask->inputQueue->queue, pItem);
L
Liu Jicong 已提交
342
    // qStreamInput(pTask->exec.executor, pItem);
L
Liu Jicong 已提交
343
  } else if (pItem->type == STREAM_INPUT__GET_RES) {
344
    taosWriteQitem(pTask->inputQueue->queue, pItem);
L
Liu Jicong 已提交
345
    // qStreamInput(pTask->exec.executor, pItem);
346 347
  }

L
Liu Jicong 已提交
348
  if (pItem->type != STREAM_INPUT__GET_RES && pItem->type != STREAM_INPUT__CHECKPOINT && pTask->triggerParam != 0) {
L
Liu Jicong 已提交
349
    atomic_val_compare_exchange_8(&pTask->triggerStatus, TASK_TRIGGER_STATUS__IN_ACTIVE, TASK_TRIGGER_STATUS__ACTIVE);
L
Liu Jicong 已提交
350 351
  }

352
#if 0
L
Liu Jicong 已提交
353 354
  // TODO: back pressure
  atomic_store_8(&pTask->inputStatus, TASK_INPUT_STATUS__NORMAL);
355
#endif
L
Liu Jicong 已提交
356 357 358 359 360 361 362 363
  return 0;
}

static FORCE_INLINE void streamTaskInputFail(SStreamTask* pTask) {
  atomic_store_8(&pTask->inputStatus, TASK_INPUT_STATUS__FAILED);
}

static FORCE_INLINE int32_t streamTaskOutput(SStreamTask* pTask, SStreamDataBlock* pBlock) {
364 365 366
  if (pTask->sinkType == TASK_SINK__TABLE) {
    ASSERT(pTask->dispatchType == TASK_DISPATCH__NONE);
    pTask->tbSink.tbSinkFunc(pTask, pTask->tbSink.vnode, 0, pBlock->blocks);
367
    taosArrayDestroyEx(pBlock->blocks, (FDelete)blockDataFreeRes);
368
    taosFreeQitem(pBlock);
369 370
  } else if (pTask->sinkType == TASK_SINK__SMA) {
    ASSERT(pTask->dispatchType == TASK_DISPATCH__NONE);
L
Liu Jicong 已提交
371
    pTask->smaSink.smaSink(pTask->smaSink.vnode, pTask->smaSink.smaId, pBlock->blocks);
372
    taosArrayDestroyEx(pBlock->blocks, (FDelete)blockDataFreeRes);
373
    taosFreeQitem(pBlock);
374 375 376 377
  } else {
    ASSERT(pTask->dispatchType != TASK_DISPATCH__NONE);
    taosWriteQitem(pTask->outputQueue->queue, pBlock);
  }
L
Liu Jicong 已提交
378 379
  return 0;
}
L
Liu Jicong 已提交
380 381 382 383 384

typedef struct {
  int32_t reserved;
} SStreamTaskDeployRsp;

L
Liu Jicong 已提交
385 386 387 388 389 390 391 392 393 394 395
typedef struct {
  // SMsgHead     head;
  SStreamTask* task;
} SStreamTaskDeployReq;

typedef struct {
  SMsgHead head;
  int64_t  streamId;
  int32_t  taskId;
} SStreamTaskRunReq;

L
Liu Jicong 已提交
396 397 398
typedef struct {
  int64_t streamId;
  int32_t taskId;
L
Liu Jicong 已提交
399 400 401
  int32_t dataSrcVgId;
  int32_t upstreamTaskId;
  int32_t upstreamChildId;
L
Liu Jicong 已提交
402
  int32_t upstreamNodeId;
L
Liu Jicong 已提交
403 404 405
#if 0
  int64_t sourceVer;
#endif
L
Liu Jicong 已提交
406 407 408
  int32_t blockNum;
  SArray* dataLen;  // SArray<int32_t>
  SArray* data;     // SArray<SRetrieveTableRsp*>
L
Liu Jicong 已提交
409 410 411 412 413 414 415 416
} SStreamDispatchReq;

typedef struct {
  int64_t streamId;
  int32_t taskId;
  int8_t  inputStatus;
} SStreamDispatchRsp;

L
Liu Jicong 已提交
417 418
typedef struct {
  int64_t            streamId;
L
Liu Jicong 已提交
419
  int64_t            reqId;
L
Liu Jicong 已提交
420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
  int32_t            srcTaskId;
  int32_t            srcNodeId;
  int32_t            dstTaskId;
  int32_t            dstNodeId;
  int32_t            retrieveLen;
  SRetrieveTableRsp* pRetrieve;
} SStreamRetrieveReq;

typedef struct {
  int64_t streamId;
  int32_t childId;
  int32_t rspFromTaskId;
  int32_t rspToTaskId;
} SStreamRetrieveRsp;

L
Liu Jicong 已提交
435 436 437 438 439 440 441 442 443 444 445 446 447
typedef struct {
  int64_t streamId;
  int32_t taskId;
  int32_t sourceTaskId;
  int32_t sourceVg;
} SStreamTaskRecoverReq;

typedef struct {
  int64_t streamId;
  int32_t taskId;
  int8_t  inputStatus;
} SStreamTaskRecoverRsp;

L
Liu Jicong 已提交
448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
int32_t tEncodeStreamTaskRecoverReq(SEncoder* pEncoder, const SStreamTaskRecoverReq* pReq);
int32_t tDecodeStreamTaskRecoverReq(SDecoder* pDecoder, SStreamTaskRecoverReq* pReq);

int32_t tEncodeStreamTaskRecoverRsp(SEncoder* pEncoder, const SStreamTaskRecoverRsp* pRsp);
int32_t tDecodeStreamTaskRecoverRsp(SDecoder* pDecoder, SStreamTaskRecoverRsp* pRsp);

typedef struct {
  int64_t streamId;
  int32_t taskId;
} SMStreamTaskRecoverReq;

typedef struct {
  int64_t streamId;
  int32_t taskId;
} SMStreamTaskRecoverRsp;

int32_t tEncodeSMStreamTaskRecoverReq(SEncoder* pEncoder, const SMStreamTaskRecoverReq* pReq);
int32_t tDecodeSMStreamTaskRecoverReq(SDecoder* pDecoder, SMStreamTaskRecoverReq* pReq);

int32_t tEncodeSMStreamTaskRecoverRsp(SEncoder* pEncoder, const SMStreamTaskRecoverRsp* pRsp);
int32_t tDecodeSMStreamTaskRecoverRsp(SDecoder* pDecoder, SMStreamTaskRecoverRsp* pRsp);

typedef struct {
  int64_t streamId;
} SPStreamTaskRecoverReq;

typedef struct {
  int8_t reserved;
} SPStreamTaskRecoverRsp;

478
int32_t tDecodeStreamDispatchReq(SDecoder* pDecoder, SStreamDispatchReq* pReq);
L
Liu Jicong 已提交
479
int32_t tDecodeStreamRetrieveReq(SDecoder* pDecoder, SStreamRetrieveReq* pReq);
480

L
Liu Jicong 已提交
481
int32_t streamLaunchByWrite(SStreamTask* pTask, int32_t vgId);
482
int32_t streamSetupTrigger(SStreamTask* pTask);
L
Liu Jicong 已提交
483

L
Liu Jicong 已提交
484 485 486 487
int32_t streamProcessRunReq(SStreamTask* pTask);
int32_t streamProcessDispatchReq(SStreamTask* pTask, SStreamDispatchReq* pReq, SRpcMsg* pMsg);
int32_t streamProcessDispatchRsp(SStreamTask* pTask, SStreamDispatchRsp* pRsp);
int32_t streamProcessRecoverReq(SStreamTask* pTask, SStreamTaskRecoverReq* pReq, SRpcMsg* pMsg);
L
Liu Jicong 已提交
488
int32_t streamProcessRecoverRsp(SStreamTask* pTask, SStreamTaskRecoverRsp* pRsp);
L
Liu Jicong 已提交
489

L
Liu Jicong 已提交
490 491 492
int32_t streamProcessRetrieveReq(SStreamTask* pTask, SStreamRetrieveReq* pReq, SRpcMsg* pMsg);
int32_t streamProcessRetrieveRsp(SStreamTask* pTask, SStreamRetrieveRsp* pRsp);

L
Liu Jicong 已提交
493 494 495 496
#ifdef __cplusplus
}
#endif

L
Liu Jicong 已提交
497
#endif /* ifndef _STREAM_H_ */