-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsample_custom_buffer.cpp
75 lines (61 loc) · 1.72 KB
/
sample_custom_buffer.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#include "circular_buffer.h"
#include <iostream>
#include <string.h>
#include <vector>
#include <thread>
#include <chrono>
struct custom_struct{
static int count ;
char* bytes =nullptr;
int id = 0;
custom_struct(){
bytes = (char*)malloc(100);
id = count;
std::cout<<"constructing custom_struct: "<<count++<<"\n";
}
custom_struct(const custom_struct& other){
bytes = (char*)malloc(100);
memcpy(bytes, other.bytes,100);
std::cout<<"copy constructor called for custom_struct \n";
}
custom_struct(custom_struct&& other){
bytes = other.bytes;
other.bytes = nullptr;
std::cout<<"move constructor called for custom_struct \n";
}
custom_struct& operator=(const custom_struct& other){
memcpy(bytes, other.bytes,100);
std::cout<<"assignment operator called for custom_struct \n";
return *this;
}
custom_struct& operator=(custom_struct&& other){
delete(bytes);
bytes = other.bytes;
other.bytes = nullptr;
std::cout<<"move assignment operator called for custom_struct \n";
return *this;
}
~custom_struct(){
std::cout<<"destructor called for test struct "<<id<<std::endl;
count--;
free(bytes);
bytes = nullptr;
}
friend std::ostream& operator<<(std::ostream& os, const custom_struct& ts){
return os<<"Printing struct no: "<< ts.id<<"\n";
}
};
int custom_struct::count =0;
int main(int argc, char *argv[])
{
CircularBuffer<custom_struct> custom_buffer(5);
custom_struct element;
for (int i = 0; i < 10; ++i) {
custom_buffer.push_back(element);
}
CircularBuffer<custom_struct> buffermoved = std::move(custom_buffer);
CircularBuffer<custom_struct> buffermoveassigned{10};
buffermoveassigned = std::move(buffermoved);
buffermoveassigned.push_back(std::move(element));
return 0;
}