sfc: Remove unneeded semicolon
[linux-2.6-block.git] / lib / kunit / string-stream.h
CommitLineData
d1fadef1
BH
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * C++ stream style string builder used in KUnit for building messages.
4 *
5 * Copyright (C) 2019, Google LLC.
6 * Author: Brendan Higgins <brendanhiggins@google.com>
7 */
8
9#ifndef _KUNIT_STRING_STREAM_H
10#define _KUNIT_STRING_STREAM_H
11
12#include <linux/spinlock.h>
13#include <linux/types.h>
c0891ac1 14#include <linux/stdarg.h>
d1fadef1
BH
15
16struct string_stream_fragment {
d1fadef1
BH
17 struct list_head node;
18 char *fragment;
19};
20
21struct string_stream {
22 size_t length;
23 struct list_head fragments;
24 /* length and fragments are protected by this lock */
25 spinlock_t lock;
26 struct kunit *test;
27 gfp_t gfp;
28};
29
30struct kunit;
31
32struct string_stream *alloc_string_stream(struct kunit *test, gfp_t gfp);
33
34int __printf(2, 3) string_stream_add(struct string_stream *stream,
35 const char *fmt, ...);
36
44acdbb2
DG
37int __printf(2, 0) string_stream_vadd(struct string_stream *stream,
38 const char *fmt,
39 va_list args);
d1fadef1
BH
40
41char *string_stream_get_string(struct string_stream *stream);
42
43int string_stream_append(struct string_stream *stream,
44 struct string_stream *other);
45
46bool string_stream_is_empty(struct string_stream *stream);
47
78b1c658 48void string_stream_destroy(struct string_stream *stream);
d1fadef1
BH
49
50#endif /* _KUNIT_STRING_STREAM_H */