aboutsummaryrefslogtreecommitdiff
path: root/week11/Exercise08/Message.cpp
blob: 12c91e94301cf419bbf283b9b6699a05c732b06f (plain) (blame)
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
#include "Message.h"
#include <cstring>
#include <iostream>

void Message::free() {
	delete[] textMessage;
}

void Message::copyFrom(const Message& other) {
	this->textMessage = new char[strlen(other.textMessage) + 1];
	strcpy(this->textMessage, other.textMessage);
}

Message::Message() {
	this->textMessage = nullptr;
}

Message::~Message() {
	free();
}

Message::Message(const Message& other) {
	copyFrom(other);
}

Message& Message::operator=(const Message& other) {
	if (this != &other) {
		free();
		copyFrom(other);
	}
	return *this;
}

Message::Message(Message&& other) {
	this->textMessage = other.textMessage;
	other.textMessage = nullptr;
}

Message& Message::operator=(Message&& other) {
	if (this != &other) {
		free();

		this->textMessage = other.textMessage;
		other.textMessage = nullptr;
	}
	return *this;
}

unsigned Message::Length() {
	return strlen(textMessage);
}

std::ostream& operator<<(std::ostream& ostr, const Message& obj) {
	return ostr << obj.textMessage;
}