使用protobuf编写配置文件以及读写

.proto文件示例

message Configure
{
required string host = ;
required uint32 port = ;
}

写配置文件

Configure config;

config.set_host("127.0.0.1");
config.set_port(8080); string contect; google::protobuf::TextFormat::PrintToString(config, & contect);
ofstream fout;

fout.open("config.cfg", ios::out| ios_base::ate);

if (!fout.is_open())
{
fprintf(stderr, "open config.cfg fail\n");
return -;
} fout << contect <<endl; fout.flush(); fout.close();

读配置文件

int fd = open("config.cfg", O_RDONLY);

if (fd < )
{
printf("open config.cfg failure:%s \n",strerror(errno));
return false;
} google::protobuf::io::FileInputStream fileInput(fd); fileInput.SetCloseOnDelete(true); google::protobuf::TextFormat::Parse(&fileInput, &config);
上一篇:通过Dapr实现一个简单的基于.net的微服务电商系统(十三)——istio+dapr构建多运行时服务网格之生产环境部署


下一篇:Docker学习笔记之--安装mssql(Sql Server)并使用Navicat连接测试(环境:centos7)