-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStation.cpp
129 lines (108 loc) · 3.74 KB
/
Station.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*
This file was created and modified by Kyrylo Glamazdin.
This is the implementation of the constructors and methods of the Station class.
For more information please see the interface for this class.
Copyright © 2019 Kyrylo Glamazdin.
*/
#include "Station.hpp"
/***CONSTRUCTORS***/
Station::Station(const string& station_name){
num_of_adjacent_stations_ = 0;
full_station_name_ = station_name;
num_of_trains_ = 0;
actual_station_name_ = "";
}//end constructor
Station::Station(const string& station_name, vector <Station*> adjacent_stations){
num_of_adjacent_stations_ = adjacent_stations.size();
full_station_name_ = station_name;
adjacent_stations_ = adjacent_stations;
num_of_trains_ = 0;
}//end constructor
/***MUTATOR METHODS***/
void Station::setFullStationName(const string& the_name){
full_station_name_ = the_name;
}//end setFullStationName
void Station::addAdjacentStation(Station* adjacent_station){
adjacent_stations_.push_back(adjacent_station);
num_of_adjacent_stations_++;
}//end setAdjacentStation
void Station::setTrains(const string trains_line){
int i = 0;
while (i < trains_line.size() && (int)trains_line[i] != 58){
i++;
}
i++;
string next_train = "";
while (i < trains_line.size()){
if ((int)trains_line[i] == 44){
trimTrain(next_train);
if (next_train.size() > 0){
train_vector_.push_back(next_train);
num_of_trains_++;
}
next_train = "";
}
else{
next_train.push_back(trains_line[i]);
}
i++;
}
trimTrain(next_train);
//add the last train (which doesn't have a comma after its name) to train_vector_
if (next_train.size() > 0){
train_vector_.push_back(next_train);
num_of_trains_++;
}
}//end setTrains
void Station::addTrain(const string train){
train_vector_.push_back(train);
num_of_trains_++;
}//end setTrain
void Station::setActualName(){
string the_name = "";
int i = 0;
while (i < getFullStationName().size() && (int)getFullStationName()[i] != 58){
the_name.push_back(getFullStationName()[i]);
i++;
}
actual_station_name_ = the_name;
}//end setStationName
void Station::trimTrain(string& input_line){
//find first non-space character
int left_index = 0;
while(left_index < input_line.size() && (int)input_line[left_index] == 32){
left_index++;
}
//if the number of spaces is equal to the size of input_line, then the whole string consists of spaces
if (left_index == input_line.size()){
input_line = ""; //return empty string
return;
}
//if a string consists not only of spaces, find the number of spaces on the right size
int right_index = 0;
while(right_index < input_line.size() && (int)input_line[input_line.size() - 1 - right_index] == 32){
right_index++;
}
int difference = input_line.size() - right_index - left_index; //the length of substring with no spaces on the sides
string shortened = input_line.substr(left_index, difference); //remove extra spaces
input_line = shortened;
}//end trimTrain
/***ACCESSOR METHODS***/
string Station::getFullStationName() const{
return full_station_name_;
}//end getFullStationName
vector<Station*> Station::getAdjacentStations() const{
return adjacent_stations_;
}//end getAdjacentStations
int Station::getNumOfAdjacentStations() const{
return num_of_adjacent_stations_;
}//end getNumOfAdjacentStations
vector<string> Station::getTrains() const{
return train_vector_;
}
int Station::getNumOfTrains() const{
return num_of_trains_;
}
string Station::getActualName() const{
return actual_station_name_;
}//end getActualName