本文整理汇总了C++中Poly::flush方法的典型用法代码示例。如果您正苦于以下问题:C++ Poly::flush方法的具体用法?C++ Poly::flush怎么用?C++ Poly::flush使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Poly
的用法示例。
在下文中一共展示了Poly::flush方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: changeRow
bool MergeOutputRowOps::changeRow(const RowChange& change) {
const CompareFlags& flags = getFlags();
if (!ops.isValid()) {
SimpleSheetSchema ss;
if (sheet_name=="") {
sheet_name = "sheet";
}
ss.setSheetName(sheet_name.c_str());
ss.addColumn("name",ColumnType("TEXT"));
ss.addColumn("op",ColumnType("TEXT"));
if (flags.ids.size()>0) {
ids = flags.ids;
} else {
ids = change.allNames;
}
for (int i=0; i<(int)ids.size(); i++) {
ss.addColumn((ids[i] + "0").c_str());
}
for (int i=0; i<(int)ids.size(); i++) {
ss.addColumn((ids[i] + "1").c_str());
}
if (getOutputBook()!=NULL) {
ops = getOutputBook()->provideSheet(ss);
}
if (!ops.isValid()) {
fprintf(stderr,"* Could not generate row operations sheet\n");
exit(1);
return false;
}
ops.deleteData();
}
Poly<SheetRow> row = ops.insertRow();
row->setCell(0,SheetCell(sheet_name.c_str(),false));
row->setCell(1,SheetCell(change.modeString().c_str(),false));
int at = 2;
for (int i=0; i<(int)ids.size(); i++) {
string id = ids[i];
if (change.cond.find(id)!=change.cond.end()) {
row->setCell(at,change.cond.find(id)->second);
}
at++;
}
for (int i=0; i<(int)ids.size(); i++) {
string id = ids[i];
if (change.val.find(id)!=change.val.end()) {
row->setCell(at,change.val.find(id)->second);
}
at++;
}
row->flush();
return true;
}
示例2: save
bool PoolImpl::save() {
dbg_printf("Save pool\n");
for (map<string,PoolSlice>::iterator it=pool.begin(); it!=pool.end(); it++) {
string name = it->first;
PoolSlice& pool = it->second;
SimpleSheetSchema schema;
schema.setSheetName(name.c_str());
schema.addColumn("local");
schema.addColumn("remote");
PolySheet sheet = book.provideSheet(schema);
sheet.deleteData();
for (map<string,PoolRecord>::iterator it2 = pool.item.begin();
it2 != pool.item.end(); it2++) {
string from = it2->first;
SheetCell to = it2->second.cell;
Poly<SheetRow> row = sheet.insertRow();
row->setCell(0,SheetCell(from,false)); // fix for escaped cells
row->setCell(1,to);
row->flush();
}
}
return true;
}