Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was reading Stroustrup's c++ FAQ and I noticed that, at one point, he had a writeonly qualifier in the language. After some discussion, a colleague and I could only come up with one purpose - side effects, specifically in the case of some memory mapped IO. Is there any other legitimate usage for a writeonly qualifier?

share|improve this question
As an aside, we thought that for a language where everything is accomplished my mutating state, perhaps having state where the only thing you can do with it is mutate it would be the highest, purest type of imperative programming :) – Josh Aug 2 '11 at 19:59
also, your title says "opposite" but you ask about legitimate use of writeonly, so you may want to change it – 0A0D Aug 2 '11 at 20:01
@Code Monkey Thanks, I edited the title to hopefully be more grammatically correct. – Josh Aug 2 '11 at 20:02

3 Answers

up vote 4 down vote accepted

The write-only qualifier would be useful for hardware registers since reading from a write-only register would lead to undefined behavior or subtle run-time errors. You can use a #define such as #define write-only and then apply this to a register like, special_register write_only UTXBUF;

There is a blog post at EE Times on How to Enforce write-only access.

share|improve this answer
+1 We stumbled across that article during our discussion - certainly preventing someone from reading from write only registers at compile time would preclude a range of bugs. – Josh Aug 2 '11 at 20:05

It's made a comeback in C++ AMP, GPGPU extensions to the language, where it's used to tell the run-time that they don't have to copy certain buffers from host to device.

share|improve this answer
+1 Interesting - that's a use case I had not considered... optimizing synchronization of outside buffers. – Josh Aug 2 '11 at 21:04
sorry, we are taking writeonly away in the Beta and replacing it with a discard_data() method... will be blogging that soon... – Daniel Moth Feb 14 '12 at 1:51

It is useful for many type of hardware interfaces which do not allow reading the computer's output, or in which the input is status and the output is control, etc.

In my device driver writing days, this occurred pretty frequently among hardware designs. 1970s hardware was relatively expensive to add a buffer which could read back that which was last written to it, or there was a cost-saving interface at the same address as the output register which returned something else about the device. When and where it mattered, the driver had to maintain a copy of the last value written to consult if, for example, an update would actually cause a change in state.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.