Reputation: 1486
here is my code,I want to read config file using c++ my code is here:
//myutils.h
#include <string>
#include <map>
using namespace std;
void read_login_data(char *login_data,map<string,string> &data_map);
here is the myutils.cpp
//myutils.cpp
#include <fstream>
#include <string>
#include <map>
#include "myutils.h"
using namespace std;
void read_login_data(char *login_data,map<string,string> &data_map)
{
ifstream infile;
string config_line;
infile.open(login_data);
if (!infile.is_open())
{
cout << "can not open login_data";
return false;
}
stringstream sem;
sem << infile.rdbuf();
while(true)
{
sem >> config_line;
while(config_line)
{
size_t pos = config_line.find('=');
if(pos == npos) continue;
string key = config_line.substr(0,pos);
string value = config_line.substr(pos+1);
data_map[key]=value;
}
}
}
and my test.cpp code:
#include <iostream>
#include <map>
#include "myutils.h"
using namespace std;
int main()
{
char login[] = "login.ini";
map <string,string> data_map;
read_login_data(login,data_map);
cout<< data_map["BROKER_ID"]<<endl;
}
the config file is:
BROKER_ID=66666
INVESTOR_ID=00017001033
and when I compile it using :g++ -o test test.cpp,the output is:
/tmp/ccOGrPpx.o: In function `main': │[master 6a44d8a] change onrspsettlementinfo
test.cpp:(.text+0x67): undefined reference to `read_login_data(char*, st│spsettlementinfo,I have forget to input Qry
d::map<std::basic_string<char, std::char_traits<char>, std::allocator<ch│ 2 files changed, 2 insertions(+), 2 deleti
ar> >, std::basic_string<char, std::char_traits<char>, std::allocator<ch│young001@server6:~/ctp/ctp_github$ git push
ar> >, std::less<std::basic_string<char, std::char_traits<char>, std::al│Username for 'https://github.com': young001
locator<char> > >, std::allocator<std::pair<std::basic_string<char, std:│Password for 'https://[email protected]':
:char_traits<char>, std::allocator<char> > const, std::basic_string<char│To https://github.com/young001/ctp_trade.gi
, std::char_traits<char>, std::allocator<char> > > > >&)' │ 838ed90..6a44d8a master -> master
collect2: ld returned 1 exit status
I can't work out,thx
Upvotes: 0
Views: 203
Reputation: 33661
You should compile myutils.cpp
too:
g++ -o test myutils.cpp test.cpp
Or, better, compile it separately and then link:
g++ -c -o myutils.o myutils.cpp
g++ -c -o test.o test.cpp
g++ -o test myutils.o test.o
Upvotes: 2
Reputation: 3871
Lots of Problems in your code Firstly, as @soon said, compile using
g++ -o test myutils.cpp test.cpp
In addition to that, there are plenty of other errors that won't let your code compile
The following is the corrected myutils.cpp. Go through it properly as I have done some assumptions in couple of places.
//myutils.cpp
#include <fstream>
#include <string>
// You need to include sstream and iostream
#include <sstream>
#include <iostream>
#include <map>
#include "myutils.h"
using namespace std;
void read_login_data(char *login_data,map<string,string> &data_map)
{
ifstream infile;
string config_line;
infile.open(login_data);
if (!infile.is_open())
{
cout << "can not open login_data";
// void doesn't return anything, you were returning false!
return ;
}
stringstream sem;
sem << infile.rdbuf();
while(true)
{
// while(string) doesn't mean anything
// the loop below will run till EOF of sem
while(sem>>config_line)
{
size_t pos = config_line.find('=');
if(pos == string::npos) continue;
string key = config_line.substr(0,pos);
string value = config_line.substr(pos+1);
data_map[key]=value;
}
}
}
Upvotes: 1