Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have encountered the ATOM type in the Win32api and also in the Acrobat API there is ASAtom.

As far as I can tell, atoms are keys for a hash table usually of strings to enable fast look up and share data between applications. Is this correct and what is the etymology of the atom type?

EDIT

After some extensive searching I noticed Prolog uses atoms, so there must be some origin to this word. It seems it used to refer to any single piece of data.

share|improve this question
3  
Yes, there is an origin to the word. It comes from the Greek word ἄτομος (atomos), meaning "indivisible". (tongue in cheek...) – Mehrdad May 10 '12 at 0:44
1  
I think X11 had the Atom concept too - to allow the client app to store a piece of data in the X server. – John3136 May 10 '12 at 0:59
@Mehrdad: That helped out a lot, it would explain why an ATOM is defined as typedef WORD ATOM because a word is the addressable unit by the CPU (i.e. not divisible). – Jesse Good May 10 '12 at 1:00
@JesseGood: Haha yes... except that it should probably instead be a larger type like UINT_PTR, since CPUs nowadays address 32-bit and 64-bit chunks. :) – Mehrdad May 10 '12 at 1:01
@Mehrdad: On Windows its defined as unsigned short (probably because it originated from 16-bit windows, but Acrobat API defines it as unsigned long. – Jesse Good May 10 '12 at 1:03
show 4 more comments

2 Answers

up vote 3 down vote accepted

ATOM is a 16-bit Windows handle-like primitive. It's value is completely opaque to user-mode. It is not a pointer or an index.

typedef unsigned short ATOM;

share|improve this answer
I'm guessing they are generated using some internal hash function? – Jesse Good May 10 '12 at 21:21
No. They are indexes into a handle table in kernel mode. They are deliberately opaque because leaking kernel mode pointers to user-mode is a security violation. – SecurityMatt May 11 '12 at 3:46
Thanks that was helpful. It seems that windows uses atoms internally for efficiently storing and retrieving strings. – Jesse Good May 11 '12 at 3:57
(I linked to the same site in my question) – Jesse Good May 11 '12 at 4:23

The earliest thing I can find about the term "atom" is from the Lisp programming language (source). However, it probably originally came from mathematical logic. In programming they are also called Symbols and at its simplest form are name integers (an enumerated type in C would be an example). However, they are widely used in many programming languages and in the Win32 API and Acrobat API they are identifiers for strings in a table.

Also, as Mehrdad points out, the original meaning in Greek is "indivisible", so they imply a primitive data type which cannot be broken down any further.

share|improve this answer
1  
Which is why the name for an atom (the physics/chemistry thing) is arguably incorrect. – Mahmoud Al-Qudsi May 10 '12 at 2:59

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.