Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3d8178d

Browse files
committedApr 16, 2017
修改获取输出文件名
1 parent c179a3d commit 3d8178d

File tree

4 files changed

+42
-12
lines changed

4 files changed

+42
-12
lines changed
 

‎TableML/TableMLCompiler/BatchCompilerInSingleFile.cs

+5-6
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ in className.Split(new[] { '_' }, StringSplitOptions.RemoveEmptyEntries)
8989
/// <param name="forceAll"></param>
9090
/// <param name="genManagerClass"></param>
9191
/// <param name="templateVars">如果是生成Manager Class 一定要在外部初始化此字段</param>
92-
void GenSingleClass(TableCompileResult compileResult, string genCodeTemplateString, string genCodeFilePath,
92+
void GenCodeFile(TableCompileResult compileResult, string genCodeTemplateString, string genCodeFilePath,
9393
string nameSpace = "AppSettings", string changeExtension = ".tml", string settingCodeIgnorePattern = null, bool forceAll = false, bool genManagerClass = false, Dictionary<string, TableTemplateVars> templateVars = null)
9494
{
9595
// 根据编译结果,构建vars,同class名字的,进行合并
@@ -183,7 +183,7 @@ void GenManagerClass(List<TableCompileResult> results, string genCodeTemplateStr
183183
var templateVars = new Dictionary<string, TableTemplateVars>();
184184
foreach (var compileResult in results)
185185
{
186-
GenSingleClass(compileResult, genCodeTemplateString, genCodeFilePath, nameSpace, changeExtension, settingCodeIgnorePattern, forceAll, true, templateVars);
186+
GenCodeFile(compileResult, genCodeTemplateString, genCodeFilePath, nameSpace, changeExtension, settingCodeIgnorePattern, forceAll, true, templateVars);
187187
}
188188
}
189189

@@ -235,9 +235,8 @@ public List<TableCompileResult> CompileTableMLAllInSingleFile(string sourcePath,
235235
* NOTE 开始编译Excel 成 tml文件
236236
* 每编译一个Excel就生成一个代码文件
237237
*/
238-
//NOTE 设置编译出的文件名
239-
SimpleExcelFile excelFile = new SimpleExcelFile(excelPath);
240-
relativePath = excelFile.GetOutFileName();
238+
//NOTE 设置编译后文件的文件名(tml文件名)
239+
relativePath = SimpleExcelFile.GetOutFileName(excelPath);
241240
var compileToPath = string.Format("{0}/{1}", compileBaseDir,
242241
Path.ChangeExtension(relativePath, changeExtension));
243242
var srcFileInfo = new FileInfo(excelPath);
@@ -269,7 +268,7 @@ public List<TableCompileResult> CompileTableMLAllInSingleFile(string sourcePath,
269268
var compiledFileInfo = new FileInfo(compileToPath);
270269
compiledFileInfo.LastWriteTime = srcFileInfo.LastWriteTime;
271270
//仅仅是生成单个Class,只需要当前的CompileResult
272-
GenSingleClass(compileResult, genCodeTemplateString, genCodeFilePath, nameSpace, changeExtension, settingCodeIgnorePattern, forceAll);
271+
GenCodeFile(compileResult, genCodeTemplateString, genCodeFilePath, nameSpace, changeExtension, settingCodeIgnorePattern, forceAll);
273272

274273
}
275274
}

‎TableML/TableMLCompiler/Compiler.cs

+9-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,15 @@ public Compiler(CompilerConfig cfg)
6464
_config = cfg;
6565
}
6666

67-
67+
/// <summary>
68+
/// 生成tml文件内容
69+
/// </summary>
70+
/// <param name="path">源excel的相对路径</param>
71+
/// <param name="excelFile"></param>
72+
/// <param name="compileToFilePath">编译后的tml文件路径</param>
73+
/// <param name="compileBaseDir"></param>
74+
/// <param name="doCompile"></param>
75+
/// <returns></returns>
6876
private TableCompileResult DoCompilerExcelReader(string path, ITableSourceFile excelFile, string compileToFilePath = null, string compileBaseDir = null, bool doCompile = true)
6977
{
7078
var renderVars = new TableCompileResult();

‎TableML/TableMLCompiler/SimpleExcelFile.cs

+24-2
Original file line numberDiff line numberDiff line change
@@ -372,11 +372,33 @@ public int GetColumnCount()
372372

373373
/// <summary>
374374
/// 读表中的字段获取输出文件名
375+
/// 做好约定输出tml文件名在指定的单元格,不用遍历整表让解析更快
375376
/// </summary>
376377
/// <returns></returns>
377-
public string GetOutFileName()
378+
public static string GetOutFileName(string filePath)
378379
{
379-
var outFileName = Worksheet.GetRow(1).Cells[2].StringCellValue;
380+
IWorkbook workbook;
381+
using (var file = new FileStream(filePath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite)) // no isolation
382+
{
383+
try
384+
{
385+
workbook = WorkbookFactory.Create(file);
386+
}
387+
catch (Exception e)
388+
{
389+
throw new Exception(string.Format("无法打开Excel: {0}, 可能原因:正在打开?或是Office2007格式(尝试另存为)? {1}", filePath,
390+
e.Message));
391+
}
392+
}
393+
var worksheet = workbook.GetSheetAt(0);
394+
if (worksheet == null)
395+
throw new Exception("Null Worksheet");
396+
var row = worksheet.GetRow(1);
397+
if (row == null || row.Cells.Count < 2)
398+
{
399+
throw new Exception("第二行至少需要3列");
400+
}
401+
var outFileName = row.Cells[2].StringCellValue;
380402
return outFileName;
381403
}
382404
}

‎TableML/TableMLCompilerConsole/LocalDebug.cs

+4-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public static void CompileOne()
2929
{
3030
var startPath = Environment.CurrentDirectory;
3131
//源excel文件路径
32-
var srcFile = Path.Combine(startPath, "settingsrc", "Test.xlsx");
32+
var srcFile = Path.Combine(startPath, "src", "Test.xlsx");
3333
//输出tml文件路径
3434
var OutputDirectory = Path.Combine(startPath, "setting", "Test.tml");
3535
//生成的代码路径
@@ -57,7 +57,7 @@ public static void CompileAll()
5757
Console.WriteLine("当前目录:{0}", startPath);
5858
//源excel文件路径
5959
//var srcDirectory = "settingsrc";
60-
var srcDirectory = "ConfigTable";
60+
var srcDirectory = "src";
6161
//输出tml文件路径
6262
var OutputDirectory = "setting";
6363
//生成的代码路径
@@ -68,9 +68,10 @@ public static void CompileAll()
6868
string templateString = DefaultTemplate.GenSingleClassCodeTemplate;
6969

7070
var results = batchCompiler.CompileTableMLAllInSingleFile(srcDirectory, OutputDirectory, CodeFilePath,
71-
templateString, "AppSettings", ".k",settingCodeIgnorePattern, !string.IsNullOrEmpty(CodeFilePath));
71+
templateString, "AppSettings", ".tml",settingCodeIgnorePattern, !string.IsNullOrEmpty(CodeFilePath));
7272

7373
Console.WriteLine("Done!");
74+
7475
}
7576

7677
public static void UpdateTableAll()

0 commit comments

Comments
 (0)
Please sign in to comment.