| #include <linux/list.h> |
| #include <linux/slab.h> |
| #include <test/string-stream.h> |
| |
| static int string_stream_vadd(struct string_stream *this, |
| const char *fmt, |
| va_list args) |
| { |
| struct string_stream_fragment *fragment; |
| int len; |
| va_list args_for_counting; |
| |
| /* Make a copy because `vsnprintf` could change it */ |
| va_copy(args_for_counting, args); |
| |
| /* Need space for null byte. */ |
| len = vsnprintf(NULL, 0, fmt, args_for_counting) + 1; |
| |
| va_end(args_for_counting); |
| |
| fragment = kmalloc(sizeof(*fragment), GFP_KERNEL); |
| if (!fragment) |
| return -ENOMEM; |
| |
| fragment->fragment = kmalloc(len + 1, GFP_KERNEL); |
| if (!fragment->fragment) { |
| kfree(fragment); |
| return -ENOMEM; |
| } |
| |
| len = vsnprintf(fragment->fragment, len, fmt, args); |
| this->length += len; |
| list_add_tail(&fragment->node, &this->fragments); |
| return 0; |
| } |
| |
| static int string_stream_add(struct string_stream *this, const char *fmt, ...) |
| { |
| va_list args; |
| int result; |
| |
| va_start(args, fmt); |
| result = string_stream_vadd(this, fmt, args); |
| va_end(args); |
| return result; |
| } |
| |
| static void string_stream_clear(struct string_stream *this) |
| { |
| struct string_stream_fragment *fragment, *fragment_safe; |
| |
| list_for_each_entry_safe(fragment, |
| fragment_safe, |
| &this->fragments, |
| node) { |
| list_del(&fragment->node); |
| kfree(fragment->fragment); |
| kfree(fragment); |
| } |
| |
| this->length = 0; |
| } |
| |
| static char *string_stream_get_string(struct string_stream *this) |
| { |
| struct string_stream_fragment *fragment; |
| char *buf; |
| |
| buf = kzalloc(this->length + 1, GFP_KERNEL); |
| if (!buf) |
| return NULL; |
| |
| list_for_each_entry(fragment, &this->fragments, node) { |
| strcat(buf, fragment->fragment); |
| } |
| return buf; |
| } |
| |
| static bool string_stream_is_empty(struct string_stream *this) |
| { |
| return list_empty(&this->fragments); |
| } |
| |
| void destroy_string_stream(struct string_stream *stream) |
| { |
| stream->clear(stream); |
| kfree(stream); |
| } |
| |
| struct string_stream *new_string_stream(void) |
| { |
| struct string_stream *stream = kzalloc(sizeof(*stream), GFP_KERNEL); |
| |
| if (!stream) |
| return NULL; |
| |
| INIT_LIST_HEAD(&stream->fragments); |
| stream->length = 0; |
| stream->add = string_stream_add; |
| stream->vadd = string_stream_vadd; |
| stream->get_string = string_stream_get_string; |
| stream->clear = string_stream_clear; |
| stream->is_empty = string_stream_is_empty; |
| return stream; |
| } |