Is it idiomatic to return a badly structured object together with error?

agolangf · · 400 次点击    
这是一个分享于 的资源,其中的信息可能已经有所发展或是发生改变。
<p>Suppose I have a method that does some work and than returns the result and an error: </p> <pre><code>type Res struct { // some fields } func foo() (Res, error) { res := Res{ // some initialization } err := DoSomeWork(&amp;res) if err != nil { return nil, err } return res, err } </code></pre> <p>Let us assume res is modified in DoSomeWork, and is unusable before it executes. It seems redundant to do the err check explicitly, and instead I could have done something like this:</p> <pre><code>func foo() (Res, error) { res := Res{ // some initialization } err := DoSomeWork(&amp;res) return res, err } </code></pre> <p>Than if there was an error, err will not be nil, and as long as whoever calls foo checks for the error, everything is fine.</p> <p>Would this be idiomatic code, or should I explicitly check for errors, so that nobody gets an unusable object returned?</p> <hr/>**评论:**<br/><br/>ofux: <pre><p>It is perfectly fine to return an object in an undefined/bad state together with an error.</p> <p>It is up to the caller to check if there is an error (ie. if the error is nil or not). Readability is more important here. So second solution is better in your case.</p> <p>However, never do the same with the error itself. In other words, never return a badly defined error in case there is no error. An error must be either nil or well defined. Be sure to read this about this point: <a href="https://golang.org/doc/faq#nil_error">https://golang.org/doc/faq#nil_error</a></p></pre>peterbourgon: <pre><p>I tend to write things the first way just to be safe, but there&#39;s nothing wrong with the second way. If we&#39;re code golfing, this is also something:</p> <pre><code>func NewFoo() (*Foo, error) { f := &amp;Foo{ // ... } return f, doSomeWork(f) } </code></pre></pre>ofux: <pre><p>I personally don&#39;t like this:</p> <pre><code>return f, doSomeWork(f) </code></pre> <p>Just a matter of readability again. Even if we all know that doSomeWork will be called <strong>before</strong> the return statement gets executed, it is less obvious than</p> <pre><code>err := DoSomeWork(&amp;res) return res, err </code></pre></pre>ian-kent: <pre><p>I&#39;d go with your second example - I personally find it far more readable, and a lot of libraries (including core packages afaik) use that pattern, where the struct is returned by shouldn&#39;t be trusted</p></pre>natefinch: <pre><p>IMO, it&#39;s best practice to explicitly return a zero value for the &#34;other value&#34; if you&#39;re returning a non-nil error.</p> <p>In general, it <em>should</em> be fine to return bad data, because people <em>should</em> be checking your error before they use the value. However, I always return a zero value instead, because it makes using your code less error prone.</p> <p>Consider if someone does this:</p> <pre><code>val.Something, err = yourFunc() </code></pre> <p>Now, maybe they check err here and exit early... but they&#39;ve saved that bad value in a struct somewhere, and it may come back to bite them later in the code.</p></pre>G00PHR: <pre><p>That is bad design. Assign the return values to temp variables and check the error, if the error is non-nil, assign the temp to its permanent variable within the struct. Assigning random and possibly incorrect values to fields then checking if there was an error, and if there was an error reassigning that value is just silly.</p> <p>What is the zero value of an &#39;int&#39;? that&#39;s right - ZERO. Zero is a valid value of int. What if zero is also a valid return? You check your errors. This is why if the func returns an error that you should check the error. This is also the reason why you should not rely on returning zero values with errors. Zeroing out could create unnecessary overhead. If the error is non-nil then the values returned with the error should be considered invalid, period. </p></pre>natefinch: <pre><p>I don&#39;t disagree with you. I&#39;m not saying you should assign things to struct fields without checking the error first. But I&#39;m saying that you can potentially help people debug problems if you return a zero value. </p> <p>Yes, a zero value may well be valid, but it&#39;s still the zero value, and it still gives the developer some indication that maybe there was a problem creating the value, if they were expecting it to be something else.</p> <p>You should definitely not worry about the overhead of returning a zero value instead of a half-populated value until such a time as you know it is a bottleneck.... and I would guess that an average developer would never see a time when that&#39;s a bottleneck.</p></pre>G00PHR: <pre><p>If there is an error then the value returned is invalid, so why worry about returning a zero value with the error, this makes even more sense when there is a possibility that the zero value is also a valid value. You are creating unnecessary edge cases. If error is non-nil then the returned values with the error should be considered invalid, period.</p> <blockquote> <p>and I would guess that an average developer would never see a time when that&#39;s a bottleneck.</p> </blockquote> <p>so you initialize a big, huge, colossal struct, then pass it into a nested func, and that func returns an error with this invalid big, huge, colossal struct, so you then initialize a new big, huge, colossal struct with zero values and return that with the error, and you don&#39;t guess there would ever be a time where that could be seen as a bottleneck? Outrageous!</p></pre>TheMerovius: <pre><blockquote> <p>If there is an error then the value returned is invalid, so why worry about returning a zero value with the error, this makes even more sense when there is a possibility that the zero value is also a valid value. You are creating unnecessary edge cases. If error is non-nil then the returned values with the error should be considered invalid, period.</p> </blockquote> <p>No one argues that this <em>should</em> be. Just that it <em>won&#39;t be</em> that way. There will always be people who forget. And yes, you could then say &#34;well, who cares, not my bug&#34;, that is your prerogative. But some people (myself included) elect to make other people life simpler, even <em>if</em> it was their mistakes and not mine.</p></pre>G00PHR: <pre><p>Yes, more edge cases are simpler.... Instead of just checking the error. Seriously, you aren&#39;t making anything simpler. You are actually going against the grain, creating more edge cases. Zero values are valid values. I already gave a super simple case that could be expanded to most types. Just check your errors. You are preaching in direct opposition of the core go team with regard to zero values and errors.</p></pre>TheMerovius: <pre><blockquote> <p>Instead of just checking the error.</p> </blockquote> <p>You still seem to not understand that we are talking about <em>code I do not control</em>.</p> <blockquote> <p>Zero values are valid values.</p> </blockquote> <p>Neither the zero value of os.File, nor of *os.File are valid values and they could never be made that way. Blanket statements like this are never true.</p> <blockquote> <p>Just check your errors. </p> </blockquote> <p>I <em>explicitly</em> said I do, I do not understand why you keep stating that this would be an appropriate thing to say.</p> <blockquote> <p>ou are preaching in direct opposition of the core go team with regard to zero values and errors.</p> </blockquote> <p>Can you give me an example of where the go team said that it is wrong to pay attention to either return a valid value <em>or</em> a non-nil error? Because I have never heard or read anything like that.</p> <p>The general consensus™ is:</p> <p>a) If possible, make the zero value useful b) If that&#39;s not possible, provide a NewT function c) Do not use any return value before checking for a non-nil error.</p> <p>And, to re-emphasize this again: <strong>I do not disagree with a single one of these rules at all</strong>. I&#39;m simply adding, for my personal taste:</p> <p>d) If you can&#39;t return a valid value, don&#39;t return something that could be mistaken for it</p> <p>I do this, because I am aware that not everyone will adhere to Rule c above, intentionally or not. And if they don&#39;t, I want to make it easier for them to spot their mistake. Because it doesn&#39;t cost me anything, really, and &#34;well, it&#39;s your own fault, because you just shouldn&#39;t be fallible&#34; just isn&#39;t a thing I am comfortable telling people or to make part of my world view.</p> <p>If you do, that&#39;s fine.</p></pre>G00PHR: <pre><p>okay, done here. You clearly haven&#39;t got a clue. It is real simple, yet you can&#39;t seem to grasp it. Zero values are useful, zero values are valid values, you should always check errors and if the error is non-nil then the rest of the returned values should be considered invalid. Spreading the notion that zeroing a value could help find problems is absurd, and creates unnecessary edge cases. Your advice will create a wave of inept, backwards thinking Go devs. </p> <p>I never said all values are valid all the time. I gave you the notion that zero values are useful and valid, so why rely on the returned values without checking the errors. You are creating unnecessary edge cases, when you could just check the error. You are reading into something that is not there. And why waste time zeroing out returns if you are returning an error.</p> <p>rob pike and others have speckled their talks with these key points. Spark up a thread on go-nuts with this subject and I&#39;m sure they will reiterate on the topics for you. I can&#39;t talk some sense into you but maybe they can.</p></pre>TheMerovius: <pre><p>Thanks for rounding my already good evening with another smile by again just completely ignoring what I wrote :)</p></pre>TheMerovius: <pre><blockquote> <p>Spark up a thread on go-nuts with this subject and I&#39;m sure they will reiterate on the topics for you. I can&#39;t talk some sense into you but maybe they can.</p> </blockquote> <p><a href="https://groups.google.com/forum/#!topic/golang-nuts/lcZNt-nMsl0" rel="nofollow">Feel free to chime in</a>. I&#39;m nothing if not open for arguments and having my mind changed.</p></pre>dgryski: <pre><p>More likely that this is unlikely to be happening in a tight loop where performance is important rather than there is no performance cost at all.</p></pre>G00PHR: <pre><p>Initialization of variables can happen anywhere, and it doesn&#39;t matter where it happens - so you aren&#39;t making any sense. I don&#39;t care if it happens just once in a program, there is no need for it. That pattern initializes the same struct twice for no reason, yet you justify its use.</p> <p>This sub needs new top mods. This answer you gave to help your fellow top mod to save face is just as stupid of an answer he gave - if not stupider.</p></pre>tscs37: <pre><p>If there is an error then unless the documentation <strong>explicitly</strong> states otherwise, everything else about the function return data is in a bad or corrupted or undefined state.</p> <p>For simplicity, I do that too, there is no rational programmer that should be using the results of an errored functions for very very obvious reasons.</p> <p>The exception is when you have special errors that aren&#39;t actually errors but indicate some state or special case of the execution.</p></pre>mcandre: <pre><p>The safest thing to do is return a nil pointer for the struct, along with a meaningful error trace. But it&#39;s not strictly necessary to return a wholesome data structure if your users can be assumed to run the error check.</p></pre>shovelpost: <pre><p>If you run the <code>gosimple</code> linter alone or as part of <code>gometalinter</code> it will probably suggest you that the first version can be simplified to the second version. I am not sure how &#34;idiomatic&#34; it is because <code>gosimple</code> is not part of the official tooling but as others have mentioned here it is the responsibility of the caller to check for the error.</p></pre>acron5n5: <pre><p>It is ok but better return nil/empty object, just less confusion and maybe less GC work in some cases.</p></pre>TheMerovius: <pre><p>I consider it bad style. To me, it&#39;s basically defense in depth. You having a new-function already means, that you care about it having correct initialization state; by explicitly returning nil, you make sure that a user can not make a mistake here. So, my approach is a) always check for err before using returns and b) always make sure, that even if a) is forgotten, the program will just instantly crash.</p></pre>

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

400 次点击  
加入收藏 微博
0 回复
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传