-
Notifications
You must be signed in to change notification settings - Fork 30
feat: refactor common file API #39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
c7c4f0d to
6e5a402
Compare
6e5a402 to
ff76da4
Compare
lykling
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
glob方法实现的效果和传统定义的不一致,建议再看下
其它的问题不大,建议对删除的接口增加一个给用户的迁移的引导
| case ')': | ||
| case '{': | ||
| case '}': | ||
| case '[': |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
glob有[]和{}的语法,直接转义只能匹配字符[]{}
| case '}': | ||
| case '[': | ||
| case ']': | ||
| case '\\': |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
特殊case,如果匹配模式是是*.xxx 会被转成 \.*.xxx,匹配不到正确的结果
* feat: refactor common file API * chore: add note about Glob chore: fix commit error in file.h (#40) * feat: refactor common file API chore: fix commit error in file.h * chore: fix commit error in file.h
This reverts commit 40c9f7d.
* feat(tools): migration of cyber visualizer on jetson * Clean up Qt5 installation and add dependencies Remove old Qt5 installation and update dependencies. * Revert "feat: refactor common file API (#39)" This reverts commit 40c9f7d. --------- Co-authored-by: WildBeast114514 <[email protected]>
* feat(tools): migration of cyber visualizer on jetson * Clean up Qt5 installation and add dependencies Remove old Qt5 installation and update dependencies. * Revert "feat: refactor common file API (#39)" This reverts commit 40c9f7d. * fix(tools): display issue of camera --------- Co-authored-by: WildBeast114514 <[email protected]>
refactor common file API use modern c++17 API
motivation: ApolloAuto/apollo#15740