Issue673

Title task interface: never return references
Priority feature Status resolved
Superseder Nosy List jendrik, malte
Assigned To jendrik Keywords
Optional summary

Created on 2016-09-15.14:31:01 by jendrik, last changed by jendrik.

Messages
msg5653 (view) Author: jendrik Date: 2016-09-19.22:47:01
Merged and pushed.
msg5652 (view) Author: malte Date: 2016-09-19.19:05:03
Looks good to merge.
msg5651 (view) Author: jendrik Date: 2016-09-19.17:59:38
Good point, I removed the changes from sampling.cc (except for a wrong 
reference).
msg5649 (view) Author: malte Date: 2016-09-19.17:37:29
It looks like the changes to sampling.cc are unrelated to the title or
description of the issue. If we want them too, perhaps we should run experiments
on configurations that use this code. I'm not sure I understand the implications
of this change, e.g. if they could noticeably impact performance.
msg5648 (view) Author: jendrik Date: 2016-09-19.17:34:47
That makes sense. I changed the code accordingly. Can I merge this?
msg5646 (view) Author: malte Date: 2016-09-19.11:51:45
I think they should return strings. The considerations that apply here are no
different than for the proxies: if they return references, it is impossible for
these strings to be created on the fly. I think it makes no sense to have
AbstractTask::get_fact_name() return a const string & and FactProxy return a
string: this would contain the worst of both worlds. We would always copy
(because we access the information via FactProxy) but still preclude on-the-fly
generation (because FactProxy delegates to AbstractTask).
msg5643 (view) Author: jendrik Date: 2016-09-19.08:01:36
... and we could let them return by value.
msg5642 (view) Author: jendrik Date: 2016-09-19.08:00:52
I mean the methods 

AbstractTask::get_variable_name()
AbstractTask::get_fact_name()
AbstractTask::get_operator_name().

Currently, they all return references.
msg5639 (view) Author: malte Date: 2016-09-18.23:39:42
The patch looks fine to me. I'm not sure what you mean regarding AbstractTask;
which methods there do you suggest changing and how?
msg5630 (view) Author: jendrik Date: 2016-09-15.14:41:56
I created a pull request at

https://bitbucket.org/jendrikseipp/downward/pull-requests/57

The sie of the patch is very small so far, but the question is whether we also 
want to return by value from AbstractTask (instead of only from the proxy 
classes). I think that returning references there is fine.
History
Date User Action Args
2016-09-19 22:47:01jendriksetstatus: reviewing -> resolved
messages: + msg5653
2016-09-19 19:05:03maltesetmessages: + msg5652
2016-09-19 17:59:38jendriksetmessages: + msg5651
2016-09-19 17:37:29maltesetmessages: + msg5649
2016-09-19 17:34:47jendriksetmessages: + msg5648
2016-09-19 11:51:45maltesetmessages: + msg5646
2016-09-19 08:01:36jendriksetmessages: + msg5643
2016-09-19 08:00:52jendriksetmessages: + msg5642
2016-09-18 23:39:42maltesetmessages: + msg5639
2016-09-15 14:41:56jendriksetstatus: unread -> reviewing
messages: + msg5630
2016-09-15 14:31:01jendrikcreate