summaryrefslogtreecommitdiff
path: root/doc/src/sgml/isn.sgml
blob: 21174549eb5cacf494689205de3269fe600ef8a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
<!-- doc/src/sgml/isn.sgml -->

<sect1 id="isn" xreflabel="isn">
 <title>isn</title>

 <indexterm zone="isn">
  <primary>isn</primary>
 </indexterm>

 <para>
  The <filename>isn</filename> module provides data types for the following
  international product numbering standards: EAN13, UPC, ISBN (books), ISMN
  (music), and ISSN (serials).  Numbers are validated on input according to a
  hard-coded list of prefixes; this list of prefixes is also used to hyphenate
  numbers on output.  Since new prefixes are assigned from time to time, the
  list of prefixes may be out of date.  It is hoped that a future version of
  this module will obtained the prefix list from one or more tables that
  can be easily updated by users as needed; however, at present, the
  list can only be updated by modifying the source code and recompiling.
  Alternatively, prefix validation and hyphenation support may be
  dropped from a future version of this module.
 </para>

 <sect2>
  <title>Data Types</title>

  <para>
   <xref linkend="isn-datatypes"/> shows the data types provided by
   the <filename>isn</filename> module.
  </para>

  <table id="isn-datatypes">
   <title><filename>isn</filename> Data Types</title>
   <tgroup cols="2">
    <thead>
     <row>
      <entry>Data Type</entry>
      <entry>Description</entry>
     </row>
    </thead>

    <tbody>
     <row>
      <entry><type>EAN13</type></entry>
      <entry>
       European Article Numbers, always displayed in the EAN13 display format
      </entry>
     </row>

     <row>
      <entry><type>ISBN13</type></entry>
      <entry>
       International Standard Book Numbers to be displayed in
       the new EAN13 display format
      </entry>
     </row>

     <row>
      <entry><type>ISMN13</type></entry>
      <entry>
       International Standard Music Numbers to be displayed in
       the new EAN13 display format
      </entry>
     </row>
     <row>
      <entry><type>ISSN13</type></entry>
      <entry>
       International Standard Serial Numbers to be displayed in the new
       EAN13 display format
      </entry>
     </row>
     <row>
      <entry><type>ISBN</type></entry>
      <entry>
       International Standard Book Numbers to be displayed in the old
       short display format
      </entry>
     </row>
     <row>
      <entry><type>ISMN</type></entry>
      <entry>
       International Standard Music Numbers to be displayed in the
       old short display format
      </entry>
     </row>
     <row>
      <entry><type>ISSN</type></entry>
      <entry>
       International Standard Serial Numbers to be displayed in the
       old short display format
      </entry>
     </row>
     <row>
      <entry><type>UPC</type></entry>
      <entry>
       Universal Product Codes
      </entry>
     </row>
    </tbody>
   </tgroup>
  </table>

  <para>
   Some notes:
  </para>

  <orderedlist>
   <listitem>
    <para>ISBN13, ISMN13, ISSN13 numbers are all EAN13 numbers.</para>
   </listitem>
   <listitem>
    <para>EAN13 numbers aren't always ISBN13, ISMN13 or ISSN13 (some
    are).</para>
   </listitem>
   <listitem>
    <para>Some ISBN13 numbers can be displayed as ISBN.</para>
   </listitem>
   <listitem>
    <para>Some ISMN13 numbers can be displayed as ISMN.</para>
   </listitem>
   <listitem>
    <para>Some ISSN13 numbers can be displayed as ISSN.</para>
   </listitem>
   <listitem>
    <para>UPC numbers are a subset of the EAN13 numbers (they are basically
    EAN13 without the first <literal>0</literal> digit).</para>
   </listitem>
   <listitem>
    <para>All UPC, ISBN, ISMN and ISSN numbers can be represented as EAN13
    numbers.</para>
   </listitem>
  </orderedlist>

  <para>
   Internally, all these types use the same representation (a 64-bit
   integer), and all are interchangeable.  Multiple types are provided
   to control display formatting and to permit tighter validity checking
   of input that is supposed to denote one particular type of number.
  </para>

  <para>
   The <type>ISBN</type>, <type>ISMN</type>, and <type>ISSN</type> types will display the
   short version of the number (ISxN 10) whenever it's possible, and will show
   ISxN 13 format for numbers that do not fit in the short version.
   The <type>EAN13</type>, <type>ISBN13</type>, <type>ISMN13</type> and
   <type>ISSN13</type> types will always display the long version of the ISxN
   (EAN13).
  </para>
 </sect2>

 <sect2>
  <title>Casts</title>

  <para>
   The <filename>isn</filename> module provides the following pairs of type casts:
  </para>

  <itemizedlist>
   <listitem>
    <para>
     ISBN13 &lt;=&gt; EAN13
    </para>
   </listitem>
   <listitem>
    <para>
     ISMN13 &lt;=&gt; EAN13
    </para>
   </listitem>
   <listitem>
    <para>
     ISSN13 &lt;=&gt; EAN13
    </para>
   </listitem>
   <listitem>
    <para>
     ISBN &lt;=&gt; EAN13
    </para>
   </listitem>
   <listitem>
    <para>
     ISMN &lt;=&gt; EAN13
    </para>
   </listitem>
   <listitem>
    <para>
     ISSN &lt;=&gt; EAN13
    </para>
   </listitem>
   <listitem>
    <para>
     UPC  &lt;=&gt; EAN13
    </para>
   </listitem>
   <listitem>
    <para>
     ISBN &lt;=&gt; ISBN13
    </para>
   </listitem>
   <listitem>
    <para>
     ISMN &lt;=&gt; ISMN13
    </para>
   </listitem>
   <listitem>
    <para>
     ISSN &lt;=&gt; ISSN13
    </para>
   </listitem>
  </itemizedlist>

  <para>
   When casting from <type>EAN13</type> to another type, there is a run-time
   check that the value is within the domain of the other type, and an error
   is thrown if not.  The other casts are simply relabelings that will
   always succeed.
  </para>
 </sect2>

 <sect2>
  <title>Functions and Operators</title>

  <para>
   The <filename>isn</filename> module provides the standard comparison operators,
   plus B-tree and hash indexing support for all these data types.  In
   addition there are several specialized functions; shown in <xref linkend="isn-functions"/>.
   In this table,
   <type>isn</type> means any one of the module's data types.
  </para>

  <table id="isn-functions">
   <title><filename>isn</filename> Functions</title>
   <tgroup cols="3">
    <thead>
     <row>
      <entry>Function</entry>
      <entry>Returns</entry>
      <entry>Description</entry>
     </row>
    </thead>

    <tbody>
     <row>
      <entry><function>isn_weak(boolean)</function><indexterm><primary>isn_weak</primary></indexterm></entry>
      <entry><type>boolean</type></entry>
      <entry>Sets the weak input mode (returns new setting)</entry>
     </row>
     <row>
      <entry><function>isn_weak()</function></entry>
      <entry><type>boolean</type></entry>
      <entry>Gets the current status of the weak mode</entry>
     </row>
     <row>
      <entry><function>make_valid(isn)</function><indexterm><primary>make_valid</primary></indexterm></entry>
      <entry><type>isn</type></entry>
      <entry>Validates an invalid number (clears the invalid flag)</entry>
     </row>
     <row>
      <entry><function>is_valid(isn)</function><indexterm><primary>is_valid</primary></indexterm></entry>
      <entry><type>boolean</type></entry>
      <entry>Checks for the presence of the invalid flag</entry>
     </row>
    </tbody>
   </tgroup>
  </table>

  <para>
   <firstterm>Weak</firstterm> mode is used to be able to insert invalid data
   into a table. Invalid means the check digit is wrong, not that there are
   missing numbers.
  </para>

  <para>
   Why would you want to use the weak mode? Well, it could be that
   you have a huge collection of ISBN numbers, and that there are so many of
   them that for weird reasons some have the wrong check digit (perhaps the
   numbers were scanned from a printed list and the OCR got the numbers wrong,
   perhaps the numbers were manually captured... who knows). Anyway, the point
   is you might want to clean the mess up, but you still want to be able to
   have all the numbers in your database and maybe use an external tool to
   locate the invalid numbers in the database so you can verify the
   information and validate it more easily; so for example you'd want to
   select all the invalid numbers in the table.
  </para>

  <para>
   When you insert invalid numbers in a table using the weak mode, the number
   will be inserted with the corrected check digit, but it will be displayed
   with an exclamation mark (<literal>!</literal>) at the end, for example
   <literal>0-11-000322-5!</literal>.  This invalid marker can be checked with
   the <function>is_valid</function> function and cleared with the
   <function>make_valid</function> function.
  </para>

  <para>
   You can also force the insertion of invalid numbers even when not in the
   weak mode, by appending the <literal>!</literal> character at the end of the
   number.
  </para>

  <para>
   Another special feature is that during input, you can write
   <literal>?</literal> in place of the check digit, and the correct check digit
   will be inserted automatically.
  </para>
 </sect2>

 <sect2>
  <title>Examples</title>

<programlisting>
--Using the types directly:
SELECT isbn('978-0-393-04002-9');
SELECT isbn13('0901690546');
SELECT issn('1436-4522');

--Casting types:
-- note that you can only cast from ean13 to another type when the
-- number would be valid in the realm of the target type;
-- thus, the following will NOT work: select isbn(ean13('0220356483481'));
-- but these will:
SELECT upc(ean13('0220356483481'));
SELECT ean13(upc('220356483481'));

--Create a table with a single column to hold ISBN numbers:
CREATE TABLE test (id isbn);
INSERT INTO test VALUES('9780393040029');

--Automatically calculate check digits (observe the '?'):
INSERT INTO test VALUES('220500896?');
INSERT INTO test VALUES('978055215372?');

SELECT issn('3251231?');
SELECT ismn('979047213542?');

--Using the weak mode:
SELECT isn_weak(true);
INSERT INTO test VALUES('978-0-11-000533-4');
INSERT INTO test VALUES('9780141219307');
INSERT INTO test VALUES('2-205-00876-X');
SELECT isn_weak(false);

SELECT id FROM test WHERE NOT is_valid(id);
UPDATE test SET id = make_valid(id) WHERE id = '2-205-00876-X!';

SELECT * FROM test;

SELECT isbn13(id) FROM test;
</programlisting>
 </sect2>

 <sect2>
  <title>Bibliography</title>

  <para>
   The information to implement this module was collected from
   several sites, including:
   <itemizedlist>
    <listitem><para><ulink url="https://www.isbn-international.org/"></ulink></para></listitem>
    <listitem><para><ulink url="http://www.issn.org/"></ulink></para></listitem>
    <listitem><para><ulink url="https://www.ismn-international.org/"></ulink></para></listitem>
    <listitem><para><ulink url="https://www.wikipedia.org/"></ulink></para></listitem>
   </itemizedlist>

   The prefixes used for hyphenation were also compiled from:
   <itemizedlist>
    <listitem><para><ulink url="https://www.gs1.org/standards/id-keys"></ulink></para></listitem>
    <listitem><para><ulink url="https://en.wikipedia.org/wiki/List_of_ISBN_identifier_groups"></ulink></para></listitem>
    <listitem><para><ulink url="https://www.isbn-international.org/content/isbn-users-manual"></ulink></para></listitem>
    <listitem><para><ulink url="https://en.wikipedia.org/wiki/International_Standard_Music_Number"></ulink></para></listitem>
    <listitem><para><ulink url="https://www.ismn-international.org/ranges.html"></ulink></para></listitem>
   </itemizedlist>

   Care was taken during the creation of the algorithms and they
   were meticulously verified against the suggested algorithms
   in the official ISBN, ISMN, ISSN User Manuals.
  </para>
 </sect2>

 <sect2>
  <title>Author</title>
  <para>
   Germ&aacute;n M&eacute;ndez Bravo (Kronuz), 2004&ndash;2006
  </para>

  <para>
   This module was inspired by Garrett A. Wollman's
   <filename>isbn_issn</filename> code.
  </para>
 </sect2>

</sect1>