summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/views.py
diff options
context:
space:
mode:
authorElliot Smith <elliot.smith@intel.com>2015-09-11 13:57:29 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-18 09:05:33 +0100
commitb6d1d2acd58c949f7b8879fe5087c8846ac51a54 (patch)
tree1b60bb3b8b605532fcf4eadf7f3a6b0ae11d9346 /bitbake/lib/toaster/toastergui/views.py
parent8c63d6049d221da0c5211f847ddf13e0e45dd459 (diff)
downloadpoky-b6d1d2acd58c949f7b8879fe5087c8846ac51a54.tar.gz
bitbake: toaster: Avoid unnecessary local to local copy of cooker log
The cooker log is copied from its original (bitbake) location to an artifact directory chosen by the user (chosen when checksettings.py runs as part of the managed mode; it's one of the annoying questions you're asked at startup). The copy happens as part of the runbuilds script run, which is started in a loop from the toaster startup script in managed mode. When a user requests the log for a build via toaster, they are getting the log which has been copied to the artifact directory, not the original bitbake log. This works for the managed case, where the runbuilds command is running in a loop and copying log files for completed builds to the artifact directory. However, in analysis mode, there are two problems: 1. checksettings isn't run, so the artifacts directory isn't set. toaster is then unable to figure out where the log files should have been copied to. 2. The log files aren't copied to the artifacts directory anyway, as runbuilds isn't running in analysis mode. To fix this, just point the user to the local bitbake log file in its original location. This avoids the copy step, and means we can remove a whole question from the toaster startup sequence, as we no longer need an artifact directory. The only downside to this is that it's not appropriate for remote bitbake servers. We will need to revisit this and possibly reinstate the copy step once we have to reconcile local and remote builds and make their logs available in the same way. [YOCTO #8209] (Bitbake rev: 5697bbcc88edad85891f66d28b8803a9c9d27ff2) Signed-off-by: Elliot Smith <elliot.smith@intel.com> Signed-off-by: brian avery <avery.brian@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/views.py')
-rwxr-xr-xbitbake/lib/toaster/toastergui/views.py13
1 files changed, 6 insertions, 7 deletions
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py
index 4e8f69e801..784272fd70 100755
--- a/bitbake/lib/toaster/toastergui/views.py
+++ b/bitbake/lib/toaster/toastergui/views.py
@@ -2710,7 +2710,6 @@ if True:
2710 2710
2711 def build_artifact(request, build_id, artifact_type, artifact_id): 2711 def build_artifact(request, build_id, artifact_type, artifact_id):
2712 if artifact_type in ["cookerlog"]: 2712 if artifact_type in ["cookerlog"]:
2713 # these artifacts are saved after building, so they are on the server itself
2714 def _mimetype_for_artifact(path): 2713 def _mimetype_for_artifact(path):
2715 try: 2714 try:
2716 import magic 2715 import magic
@@ -2741,16 +2740,16 @@ if True:
2741 except ImportError: 2740 except ImportError:
2742 return "binary/octet-stream" 2741 return "binary/octet-stream"
2743 try: 2742 try:
2744 # match code with runbuilds.Command.archive() 2743 build = Build.objects.get(pk = build_id)
2745 build_artifact_storage_dir = os.path.join(ToasterSetting.objects.get(name="ARTIFACTS_STORAGE_DIR").value, "%d" % int(build_id)) 2744 file_name = build.cooker_log_path
2746 file_name = os.path.join(build_artifact_storage_dir, "cooker_log.txt")
2747
2748 fsock = open(file_name, "r") 2745 fsock = open(file_name, "r")
2749 content_type=_mimetype_for_artifact(file_name) 2746 content_type = _mimetype_for_artifact(file_name)
2750 2747
2751 response = HttpResponse(fsock, content_type = content_type) 2748 response = HttpResponse(fsock, content_type = content_type)
2752 2749
2753 response['Content-Disposition'] = 'attachment; filename=' + os.path.basename(file_name) 2750 disposition = 'attachment; filename=cooker.log'
2751 response['Content-Disposition'] = disposition
2752
2754 return response 2753 return response
2755 except IOError: 2754 except IOError:
2756 context = { 2755 context = {