「日本食品標準成分表2020年版(八訂)」の「2021年2月3日修正」に対応(表形式に変更があった)。
[nucalgen] / src / main / java / jp / satomichan / nucalgen / Nucalgen.java
1 package jp.satomichan.nucalgen;
2
3 import java.io.FileInputStream;
4 import java.io.FileOutputStream;
5 import java.util.ArrayList;
6 import java.util.Arrays;
7 import java.util.HashMap;
8 import java.util.List;
9 import java.util.Map;
10
11 import org.apache.commons.cli.CommandLine;
12 import org.apache.commons.cli.CommandLineParser;
13 import org.apache.commons.cli.DefaultParser;
14 import org.apache.commons.cli.Option;
15 import org.apache.commons.cli.Options;
16 import org.apache.commons.configuration.XMLConfiguration;
17 import org.apache.poi.ss.usermodel.Cell;
18 import org.apache.poi.ss.usermodel.Row;
19 import org.apache.poi.ss.usermodel.Sheet;
20 import org.apache.poi.ss.usermodel.Workbook;
21 import org.apache.poi.ss.usermodel.WorkbookFactory;
22 import org.apache.poi.ss.util.CellRangeAddress;
23 import org.apache.poi.ss.util.CellReference;
24
25 public class Nucalgen {
26
27         public static void main(String[] args) {
28                 //コマンドライン・オプション読み込み
29                 Options options = new Options();
30                 options.addOption(Option.builder("s").required().hasArg().longOpt("std-food-comp-table").build());
31                 options.addOption(Option.builder("c").required().hasArg().longOpt("columns").build());
32                 options.addOption(Option.builder("o").required().hasArg().longOpt("output").build());
33                 options.addOption(Option.builder("l").required().hasArg().longOpt("lines").build());
34                 options.addOption(Option.builder("p").longOpt("use-processed-table").build());
35                 options.addOption(Option.builder("pfc").longOpt("with-pfc-balance").build());
36                 options.addOption(Option.builder("groupsum").longOpt("with-group-sum").build());
37                 options.addOption(Option.builder("bright").hasArg().longOpt("bright-colored-vegetables-list").build());
38                 options.addOption(Option.builder("protect").longOpt("set-protect").build());
39                 options.addOption(Option.builder("r").longOpt("-use-processed-table").build());
40
41                 Map<String, String> namedAreaMap = new HashMap<String, String>();
42
43                 try {
44
45                         CommandLineParser parser = new DefaultParser();
46                         CommandLine cmd = parser.parse(options, args);
47
48                         final String mextStdFoodCompTableFileName = cmd.getOptionValue("std-food-comp-table");
49                         final String columnsXmlFileName = cmd.getOptionValue("columns");
50                         final String outputXlsxFileName = cmd.getOptionValue("output");
51                         final int lines = Integer.parseInt(cmd.getOptionValue("lines"));
52
53                         //コンフィグ読み込み
54                         XMLConfiguration config = new XMLConfiguration(columnsXmlFileName);
55                         NutritionColumnHolder nc = new NutritionColumnHolder(config);
56
57                         //Book生成
58                         Workbook outputWorkbook = WorkbookFactory.create(new FileInputStream(mextStdFoodCompTableFileName));
59
60                         if(cmd.hasOption("use-processed-table") == false) {
61                                 //成分表 変換
62                                 MextStdFoodCompTable stdCompTable = new MextStdFoodCompTable(cmd.getOptionValue("bright-colored-vegetables-list"));
63                                 stdCompTable.processInto(outputWorkbook);
64                         }
65
66
67                         //「栄養価計算」シート生成
68                         Sheet calcSheet = outputWorkbook.createSheet("栄養価計算");
69                         outputWorkbook.setSheetOrder("栄養価計算", 0);
70                         if(cmd.hasOption("set-protect")) {
71                                 calcSheet.protectSheet("");
72                         }
73                         calcSheet.setColumnWidth(2, 10240);
74                         calcSheet.addMergedRegion(new CellRangeAddress(1, 2, 1, 1));
75
76                         CellStylePool csPool = new CellStylePool(outputWorkbook);
77
78                         //「タイトル」行
79                         Row titleRow = calcSheet.createRow(1);
80                         titleRow.createCell(1).setCellValue("食品番号");
81                         titleRow.createCell(2).setCellValue("食品名");
82                         titleRow.createCell(3).setCellValue("摂取量");
83                         int colIndex = 4;
84                         for(NutritionColumn aColumn : nc.getNutritionColumnList()) {
85                                 titleRow.createCell(colIndex).setCellValue(aColumn.getDispName());
86                                 colIndex++;
87                         }
88
89                         //「単位」行
90                         Row unitRow = calcSheet.createRow(2);
91                         unitRow.createCell(2).setCellValue("単位");
92                         unitRow.createCell(3).setCellValue("g");
93                         colIndex = 4;
94                         for(NutritionColumn aColumn : nc.getNutritionColumnList()) {
95                                 unitRow.createCell(colIndex).setCellValue(aColumn.getUnit());
96                                 colIndex++;
97                         }
98
99                         //「栄養計算」行
100                         List<String> usedTableList = new ArrayList<String>();
101                         int rowIndex = 3;
102                         for(int i = rowIndex; i < lines + 3; i++,rowIndex++) {
103                                 Row thisRow = calcSheet.createRow(rowIndex);
104
105                                 //「食品名」
106                                 thisRow.createCell(1).setCellStyle(csPool.getCellStyle("00000", false));
107                                 thisRow.createCell(2).setCellFormula("IFERROR(VLOOKUP(B" + (rowIndex + 1) + ",成分表!$B$13:$BL$2500,3,FALSE),\"\")");
108                                 thisRow.createCell(3).setCellStyle(csPool.getCellStyle("", false));
109
110                                 colIndex = 4;
111                                 for(NutritionColumn aColumn : nc.getNutritionColumnList()) {
112                                         Cell thisCell = thisRow.createCell(colIndex);
113                                         thisCell.setCellStyle(csPool.getCellStyle(aColumn.getFormat()));
114
115                                         String div100 = aColumn.isUseRawValue() ? "" :  "/ 100 * $D" + (rowIndex + 1);
116
117                                         thisCell.setCellFormula("IFERROR(VLOOKUP($B" + (rowIndex + 1) + "," + aColumn.getTable() + "!$B$13:$BL$2500,MATCH(\"" + aColumn.getName() + "\"," + aColumn.getTable() + "!$B$12:$BL$12,0),FALSE) " + div100 + ",\"\")");
118                                         colIndex++;
119
120                                         usedTableList.add(aColumn.getTable());
121                                 }
122
123                         }
124
125
126                         //摂取量 範囲を記憶
127                         String intakeArea = new CellReference(3, 3, true, true).formatAsString() + ":" + new CellReference(rowIndex -1, 3, true, true).formatAsString();
128                         namedAreaMap.put("AREA_INTAKE", intakeArea);
129
130
131                         //「合計」行
132                         Row sumRow = calcSheet.createRow(rowIndex);
133                         sumRow.createCell(1).setCellValue("合計");
134                         calcSheet.addMergedRegion(new CellRangeAddress(rowIndex, rowIndex, 1, 3));
135                         colIndex = 4;
136                         for(NutritionColumn aColumn : nc.getNutritionColumnList()) {
137                                 Cell thisCell = sumRow.createCell(colIndex);
138                                 String sumTargetArea = new CellReference(3, colIndex, true, true).formatAsString() + ":" + new CellReference(rowIndex -1, colIndex, true, true).formatAsString();
139
140                                 //範囲を記憶(alias あれば設定)
141                                 if(aColumn.getAlias().length() > 0) {
142                                         namedAreaMap.put("AREA_" + aColumn.getAlias(), sumTargetArea);
143
144                                         if(aColumn.isUseSum()) {
145                                                 String sumArea = new CellReference(rowIndex, colIndex, true, true).formatAsString();
146                                                 namedAreaMap.put("SUM_" + aColumn.getAlias(), sumArea);
147                                         }
148                                 }
149
150                                 thisCell.setCellStyle(csPool.getCellStyle(aColumn.getFormat()));
151                                 if(aColumn.isUseSum()) {
152                                         thisCell.setCellFormula("SUM(" + sumTargetArea + ")");
153                                 }
154                                 colIndex++;
155                         }
156
157
158                         //「PFCバランス」出力
159                         if(cmd.hasOption("with-pfc-balance")) {
160                                 rowIndex += 3;
161                                 rowIndex = generatePfcBalance(calcSheet, csPool, rowIndex, namedAreaMap);
162                         }
163
164                         //「食品群別摂取量」出力
165                         if(cmd.hasOption("with-group-sum")) {
166                                 rowIndex += 3;
167                                 rowIndex = generateGroupSum(calcSheet, csPool, rowIndex, namedAreaMap);
168                         }
169
170
171                         //未使用表シート削除
172                         for(int si = outputWorkbook.getNumberOfSheets() - 1 ; si >= 1 ; si--) {
173                                 String sheetName = outputWorkbook.getSheetName(si);
174                                 boolean used = false;
175                                 for(String usedTable : usedTableList) {
176                                         if(usedTable.equals(sheetName)) {
177                                                 used = true;
178                                         }
179                                 }
180                                 if(!used) {
181                                         outputWorkbook.removeSheetAt(si);
182                                 }
183                         }
184
185                         //ブック出力
186                         FileOutputStream outputXlsxFile = new FileOutputStream(outputXlsxFileName);
187                         outputWorkbook.setActiveSheet(0);
188                         calcSheet.setForceFormulaRecalculation(true);
189                         outputWorkbook.setSelectedTab(0);
190                         outputWorkbook.write(outputXlsxFile);
191                         outputWorkbook.close();
192
193                 } catch (Exception e) {
194                         // TODO 自動生成された catch ブロック
195                         e.printStackTrace();
196                 }
197         }
198
199
200
201         //PFCバランス
202         private static int generatePfcBalance(Sheet calcSheet, CellStylePool csPool, int rowIndex, Map<String,String> _namedAreaMap) {
203                 Row pfbBalanceRow1 = calcSheet.createRow(rowIndex);
204                 pfbBalanceRow1.createCell(1).setCellValue("PFCバランス (%)");
205                 calcSheet.addMergedRegion(new CellRangeAddress(rowIndex, rowIndex, 1, 2));
206                 pfbBalanceRow1.createCell(3).setCellValue("P");
207                 pfbBalanceRow1.createCell(4).setCellValue("F");
208                 pfbBalanceRow1.createCell(5).setCellValue("C");
209
210                 final String sumPfc = "(" + _namedAreaMap.get("SUM_P") + "*4+" + _namedAreaMap.get("SUM_F") + "*9+" + _namedAreaMap.get("SUM_C") + "*4)";
211
212                 rowIndex++;
213                 Row pfbBalanceRow2 = calcSheet.createRow(rowIndex);
214                 Cell pCell = pfbBalanceRow2.createCell(3);
215                 pCell.setCellStyle(csPool.getCellStyle("0"));
216                 pCell.setCellFormula(_namedAreaMap.get("SUM_P") + "*4*100/" + sumPfc);
217
218                 Cell fCell = pfbBalanceRow2.createCell(4);
219                 fCell.setCellStyle(csPool.getCellStyle("0"));
220                 fCell.setCellFormula(_namedAreaMap.get("SUM_F") + "*9*100/" + sumPfc);
221                 Cell cCell = pfbBalanceRow2.createCell(5);
222                 cCell.setCellStyle(csPool.getCellStyle("0"));
223                 cCell.setCellFormula(_namedAreaMap.get("SUM_C") + "*4*100/" + sumPfc);
224
225                 return rowIndex;
226         }
227
228
229
230          //群別摂取量
231         private static int generateGroupSum(Sheet calcSheet, CellStylePool csPool, int rowIndex, Map<String,String> _namedAreaMap) {
232
233                 List<String> groupName = Arrays.asList("0", "穀類", "いも及びでん粉類", "砂糖及び甘味類", "豆類",
234                                 "種実類", "野菜類", "果実類", "きのこ類", "藻類", "魚介類", "肉類", "卵類", "乳類",
235                                 "油脂類", "菓子類", "し好飲料類", "調味料及び香辛料類", "調理加工食品類");
236
237
238
239                 Row groupRow = calcSheet.createRow(rowIndex);
240                 groupRow.createCell(1).setCellValue("食品群");
241                 groupRow.createCell(3).setCellValue("摂取量(g)");
242                 rowIndex++;
243
244                 for(int i = 1; i <= 18; i++,rowIndex++) {
245                         Row thisRow = calcSheet.createRow(rowIndex);
246                         thisRow.createCell(1).setCellValue(i);
247                         thisRow.createCell(2).setCellValue(groupName.get(i));
248                         Cell cCell = thisRow.createCell(3);
249                         cCell.setCellStyle(csPool.getCellStyle(""));
250                         //cCell.setCellFormula("SUMIF(AREA_GROUP, " + i + ", AREA_INTAKE)");
251                         cCell.setCellFormula("SUMIF(" + _namedAreaMap.get("AREA_GROUP") + ", " + i + ", " + _namedAreaMap.get("AREA_INTAKE") + ")");
252
253                         if(i == 6) {
254                                 rowIndex++;
255                                 thisRow = calcSheet.createRow(rowIndex);
256                                 thisRow.createCell(2).setCellValue("うち 緑黄色野菜");
257                                 Cell bcvCell = thisRow.createCell(3);
258                                 bcvCell.setCellStyle(csPool.getCellStyle("0"));
259                                 //bcvCell.setCellFormula("SUMIF(AREA_BRIGHT_COLORED_VEGETABLE, 1, AREA_INTAKE)");
260                                 bcvCell.setCellFormula("SUMIF(" + _namedAreaMap.get("AREA_BRIGHT_COLORED_VEGETABLE") + ", 1, " + _namedAreaMap.get("AREA_INTAKE") + ")");
261                         }
262
263
264                 }
265
266                 return rowIndex;
267         }
268
269
270
271
272
273
274
275
276
277
278 }