-
-
Notifications
You must be signed in to change notification settings - Fork 800
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Device Monitor Filter API, implement "time" and "log2file" filters // R…
- Loading branch information
1 parent
5a72033
commit 0df7241
Showing
7 changed files
with
118 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule docs
updated
2 files
+45 −8 | core/userguide/device/cmd_monitor.rst | |
+2 −2 | projectconf/section_env_monitor.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Copyright (c) 2014-present PlatformIO <[email protected]> | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import io | ||
import os.path | ||
from datetime import datetime | ||
|
||
from platformio.commands.device import DeviceMonitorFilter | ||
|
||
|
||
class LogToFile(DeviceMonitorFilter): | ||
NAME = "log2file" | ||
|
||
def __init__(self, *args, **kwargs): | ||
super(LogToFile, self).__init__(*args, **kwargs) | ||
self._log_fp = None | ||
|
||
def __call__(self): | ||
log_file_name = "platformio-device-monitor-%s.log" % datetime.now().strftime( | ||
"%y%m%d-%H%M%S" | ||
) | ||
print("--- Logging an output to %s" % os.path.abspath(log_file_name)) | ||
self._log_fp = io.open(log_file_name, "w", encoding="utf-8") | ||
return self | ||
|
||
def __del__(self): | ||
if self._log_fp: | ||
self._log_fp.close() | ||
|
||
def rx(self, text): | ||
self._log_fp.write(text) | ||
self._log_fp.flush() | ||
return text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Copyright (c) 2014-present PlatformIO <[email protected]> | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from datetime import datetime | ||
|
||
from platformio.commands.device import DeviceMonitorFilter | ||
|
||
|
||
class Timestamp(DeviceMonitorFilter): | ||
NAME = "time" | ||
|
||
def __init__(self, *args, **kwargs): | ||
super(Timestamp, self).__init__(*args, **kwargs) | ||
self._first_text_received = False | ||
|
||
def rx(self, text): | ||
if self._first_text_received and "\n" not in text: | ||
return text | ||
timestamp = datetime.now().strftime("%H:%M:%S.%f")[:-3] | ||
if not self._first_text_received: | ||
self._first_text_received = True | ||
return "%s > %s" % (timestamp, text) | ||
return text.replace("\n", "\n%s > " % timestamp) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters