├── .gitignore ├── FTL ├── ftlBase.h ├── ftlBase.hpp ├── ftlConfig.h ├── ftlConfig.hpp ├── ftlConversion.h ├── ftlConversion.hpp ├── ftlDefine.h ├── ftlFile.h ├── ftlFile.hpp ├── ftlFunctional.h ├── ftlLog.h ├── ftlLog.hpp ├── ftlPipeLine.h ├── ftlPipeLine.hpp ├── ftlSharePtr.h ├── ftlSharedVariable.h ├── ftlSharedVariable.hpp ├── ftlShell.h ├── ftlShell.hpp ├── ftlString.h ├── ftlString.hpp ├── ftlSystem.h ├── ftlSystem.hpp ├── ftlThread.h ├── ftlThread.hpp ├── ftlTypes.h ├── ftlWindow.h └── ftlWindow.hpp ├── LogViewer ├── DialogGoTo.cpp ├── DialogGoTo.h ├── DialogSameFilesList.cpp ├── DialogSameFilesList.h ├── DialogSourceHistory.cpp ├── DialogSourceHistory.h ├── DialogTextLength.cpp ├── DialogTextLength.h ├── FtlPlugin.cpp ├── FtlPlugin.h ├── LogFilterView.cpp ├── LogFilterView.h ├── LogItemView.cpp ├── LogItemView.h ├── LogManager.cpp ├── LogManager.h ├── LogViewer.cpp ├── LogViewer.h ├── LogViewer.rc ├── LogViewer.reg ├── LogViewerConfig.cpp ├── LogViewerConfig.h ├── LogViewerDoc.cpp ├── LogViewerDoc.h ├── LogViewer_2008.vcproj ├── LogViewer_2015.vcxproj ├── LogViewer_2015.vcxproj.filters ├── MachinePidTidTreeView.cpp ├── MachinePidTidTreeView.h ├── MainFrm.cpp ├── MainFrm.h ├── ProcessView.cpp ├── ProcessView.h ├── ReadMe.txt ├── Resource.h ├── SortHeaderCtrl.cpp ├── SortHeaderCtrl.h ├── StudioListDlg.cpp ├── StudioListDlg.h ├── ThreadView.cpp ├── ThreadView.h ├── VsIdeHandler.cpp ├── VsIdeHandler.h ├── json.h ├── jsoncpp.cpp ├── res │ ├── LogViewer.ico │ ├── LogViewer.rc2 │ ├── LogViewerDoc.ico │ └── Toolbar.bmp ├── stdafx.cpp └── stdafx.h ├── LogViewerDefine.h ├── LogViewer_2008.sln ├── LogViewer_2015.sln ├── README.md ├── README_CN.md ├── demos ├── DemoJson.json ├── Readme.md ├── dsh-springdemo.log └── go_study.log ├── doc ├── RegexMatchTracer.png └── main.png └── x64 └── Release ├── Apache-Tomcat.ini ├── CFLogTest.ini ├── DemoJson.ini ├── Dsh-SpringBoot.ini ├── GoLang.ini ├── JavaLocatable.ini ├── Standard-AndroidNdk.ini └── Standard-SpringBoot.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/.gitignore -------------------------------------------------------------------------------- /FTL/ftlBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlBase.h -------------------------------------------------------------------------------- /FTL/ftlBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlBase.hpp -------------------------------------------------------------------------------- /FTL/ftlConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlConfig.h -------------------------------------------------------------------------------- /FTL/ftlConfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlConfig.hpp -------------------------------------------------------------------------------- /FTL/ftlConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlConversion.h -------------------------------------------------------------------------------- /FTL/ftlConversion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlConversion.hpp -------------------------------------------------------------------------------- /FTL/ftlDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlDefine.h -------------------------------------------------------------------------------- /FTL/ftlFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlFile.h -------------------------------------------------------------------------------- /FTL/ftlFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlFile.hpp -------------------------------------------------------------------------------- /FTL/ftlFunctional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlFunctional.h -------------------------------------------------------------------------------- /FTL/ftlLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlLog.h -------------------------------------------------------------------------------- /FTL/ftlLog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlLog.hpp -------------------------------------------------------------------------------- /FTL/ftlPipeLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlPipeLine.h -------------------------------------------------------------------------------- /FTL/ftlPipeLine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlPipeLine.hpp -------------------------------------------------------------------------------- /FTL/ftlSharePtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlSharePtr.h -------------------------------------------------------------------------------- /FTL/ftlSharedVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlSharedVariable.h -------------------------------------------------------------------------------- /FTL/ftlSharedVariable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlSharedVariable.hpp -------------------------------------------------------------------------------- /FTL/ftlShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlShell.h -------------------------------------------------------------------------------- /FTL/ftlShell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlShell.hpp -------------------------------------------------------------------------------- /FTL/ftlString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlString.h -------------------------------------------------------------------------------- /FTL/ftlString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlString.hpp -------------------------------------------------------------------------------- /FTL/ftlSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlSystem.h -------------------------------------------------------------------------------- /FTL/ftlSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlSystem.hpp -------------------------------------------------------------------------------- /FTL/ftlThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlThread.h -------------------------------------------------------------------------------- /FTL/ftlThread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlThread.hpp -------------------------------------------------------------------------------- /FTL/ftlTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlTypes.h -------------------------------------------------------------------------------- /FTL/ftlWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlWindow.h -------------------------------------------------------------------------------- /FTL/ftlWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/FTL/ftlWindow.hpp -------------------------------------------------------------------------------- /LogViewer/DialogGoTo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/DialogGoTo.cpp -------------------------------------------------------------------------------- /LogViewer/DialogGoTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/DialogGoTo.h -------------------------------------------------------------------------------- /LogViewer/DialogSameFilesList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/DialogSameFilesList.cpp -------------------------------------------------------------------------------- /LogViewer/DialogSameFilesList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/DialogSameFilesList.h -------------------------------------------------------------------------------- /LogViewer/DialogSourceHistory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/DialogSourceHistory.cpp -------------------------------------------------------------------------------- /LogViewer/DialogSourceHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/DialogSourceHistory.h -------------------------------------------------------------------------------- /LogViewer/DialogTextLength.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/DialogTextLength.cpp -------------------------------------------------------------------------------- /LogViewer/DialogTextLength.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/DialogTextLength.h -------------------------------------------------------------------------------- /LogViewer/FtlPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/FtlPlugin.cpp -------------------------------------------------------------------------------- /LogViewer/FtlPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/FtlPlugin.h -------------------------------------------------------------------------------- /LogViewer/LogFilterView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/LogFilterView.cpp -------------------------------------------------------------------------------- /LogViewer/LogFilterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/LogFilterView.h -------------------------------------------------------------------------------- /LogViewer/LogItemView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/LogItemView.cpp -------------------------------------------------------------------------------- /LogViewer/LogItemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/LogItemView.h -------------------------------------------------------------------------------- /LogViewer/LogManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/LogManager.cpp -------------------------------------------------------------------------------- /LogViewer/LogManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/LogManager.h -------------------------------------------------------------------------------- /LogViewer/LogViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/LogViewer.cpp -------------------------------------------------------------------------------- /LogViewer/LogViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/LogViewer.h -------------------------------------------------------------------------------- /LogViewer/LogViewer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/LogViewer.rc -------------------------------------------------------------------------------- /LogViewer/LogViewer.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/LogViewer.reg -------------------------------------------------------------------------------- /LogViewer/LogViewerConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/LogViewerConfig.cpp -------------------------------------------------------------------------------- /LogViewer/LogViewerConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/LogViewerConfig.h -------------------------------------------------------------------------------- /LogViewer/LogViewerDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/LogViewerDoc.cpp -------------------------------------------------------------------------------- /LogViewer/LogViewerDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/LogViewerDoc.h -------------------------------------------------------------------------------- /LogViewer/LogViewer_2008.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/LogViewer_2008.vcproj -------------------------------------------------------------------------------- /LogViewer/LogViewer_2015.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/LogViewer_2015.vcxproj -------------------------------------------------------------------------------- /LogViewer/LogViewer_2015.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/LogViewer_2015.vcxproj.filters -------------------------------------------------------------------------------- /LogViewer/MachinePidTidTreeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/MachinePidTidTreeView.cpp -------------------------------------------------------------------------------- /LogViewer/MachinePidTidTreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/MachinePidTidTreeView.h -------------------------------------------------------------------------------- /LogViewer/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/MainFrm.cpp -------------------------------------------------------------------------------- /LogViewer/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/MainFrm.h -------------------------------------------------------------------------------- /LogViewer/ProcessView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/ProcessView.cpp -------------------------------------------------------------------------------- /LogViewer/ProcessView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/ProcessView.h -------------------------------------------------------------------------------- /LogViewer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/ReadMe.txt -------------------------------------------------------------------------------- /LogViewer/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/Resource.h -------------------------------------------------------------------------------- /LogViewer/SortHeaderCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/SortHeaderCtrl.cpp -------------------------------------------------------------------------------- /LogViewer/SortHeaderCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/SortHeaderCtrl.h -------------------------------------------------------------------------------- /LogViewer/StudioListDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/StudioListDlg.cpp -------------------------------------------------------------------------------- /LogViewer/StudioListDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/StudioListDlg.h -------------------------------------------------------------------------------- /LogViewer/ThreadView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/ThreadView.cpp -------------------------------------------------------------------------------- /LogViewer/ThreadView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/ThreadView.h -------------------------------------------------------------------------------- /LogViewer/VsIdeHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/VsIdeHandler.cpp -------------------------------------------------------------------------------- /LogViewer/VsIdeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/VsIdeHandler.h -------------------------------------------------------------------------------- /LogViewer/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/json.h -------------------------------------------------------------------------------- /LogViewer/jsoncpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/jsoncpp.cpp -------------------------------------------------------------------------------- /LogViewer/res/LogViewer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/res/LogViewer.ico -------------------------------------------------------------------------------- /LogViewer/res/LogViewer.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/res/LogViewer.rc2 -------------------------------------------------------------------------------- /LogViewer/res/LogViewerDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/res/LogViewerDoc.ico -------------------------------------------------------------------------------- /LogViewer/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/res/Toolbar.bmp -------------------------------------------------------------------------------- /LogViewer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/stdafx.cpp -------------------------------------------------------------------------------- /LogViewer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer/stdafx.h -------------------------------------------------------------------------------- /LogViewerDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewerDefine.h -------------------------------------------------------------------------------- /LogViewer_2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer_2008.sln -------------------------------------------------------------------------------- /LogViewer_2015.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/LogViewer_2015.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/README_CN.md -------------------------------------------------------------------------------- /demos/DemoJson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/demos/DemoJson.json -------------------------------------------------------------------------------- /demos/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/demos/Readme.md -------------------------------------------------------------------------------- /demos/dsh-springdemo.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/demos/dsh-springdemo.log -------------------------------------------------------------------------------- /demos/go_study.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/demos/go_study.log -------------------------------------------------------------------------------- /doc/RegexMatchTracer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/doc/RegexMatchTracer.png -------------------------------------------------------------------------------- /doc/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/doc/main.png -------------------------------------------------------------------------------- /x64/Release/Apache-Tomcat.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/x64/Release/Apache-Tomcat.ini -------------------------------------------------------------------------------- /x64/Release/CFLogTest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/x64/Release/CFLogTest.ini -------------------------------------------------------------------------------- /x64/Release/DemoJson.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/x64/Release/DemoJson.ini -------------------------------------------------------------------------------- /x64/Release/Dsh-SpringBoot.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/x64/Release/Dsh-SpringBoot.ini -------------------------------------------------------------------------------- /x64/Release/GoLang.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/x64/Release/GoLang.ini -------------------------------------------------------------------------------- /x64/Release/JavaLocatable.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/x64/Release/JavaLocatable.ini -------------------------------------------------------------------------------- /x64/Release/Standard-AndroidNdk.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/x64/Release/Standard-AndroidNdk.ini -------------------------------------------------------------------------------- /x64/Release/Standard-SpringBoot.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjam/LogViewer/HEAD/x64/Release/Standard-SpringBoot.ini --------------------------------------------------------------------------------