View Javadoc
1   /*
2   Copyright (c) 2014 James Ahlborn
3   
4   Licensed under the Apache License, Version 2.0 (the "License");
5   you may not use this file except in compliance with the License.
6   You may obtain a copy of the License at
7   
8       http://www.apache.org/licenses/LICENSE-2.0
9   
10  Unless required by applicable law or agreed to in writing, software
11  distributed under the License is distributed on an "AS IS" BASIS,
12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  See the License for the specific language governing permissions and
14  limitations under the License.
15  */
16  
17  package com.healthmarketscience.jackcess.impl;
18  
19  import java.io.IOException;
20  
21  /**
22   * ColumnImpl subclass which is used for Memo data types.
23   *
24   * @author James Ahlborn
25   * @usage _advanced_class_
26   */
27  class MemoColumnImpl extends LongValueColumnImpl 
28  {
29    /** whether or not they are compressed */ 
30    private final boolean _compressedUnicode;
31    /** the collating sort order for a text field */
32    private final SortOrder _sortOrder;
33    /** the code page for a text field (for certain db versions) */
34    private final short _codePage;
35    /** complex column which tracks the version history for this "append only"
36        column */
37    private ColumnImpl _versionHistoryCol;
38    /** whether or not this is a hyperlink column (only possible for columns
39        of type MEMO) */
40    private boolean _hyperlink;
41  
42    MemoColumnImpl(InitArgs args) throws IOException
43    {
44      super(args);
45  
46        // co-located w/ precision/scale
47        _sortOrder = readSortOrder(
48            args.buffer, args.offset + getFormat().OFFSET_COLUMN_SORT_ORDER, 
49            getFormat());
50        _codePage = readCodePage(args.buffer, args.offset, getFormat());
51  
52        _compressedUnicode = 
53          ((args.extFlags & COMPRESSED_UNICODE_EXT_FLAG_MASK) != 0);
54  
55        // only memo fields can be hyperlinks
56        _hyperlink = ((args.flags & HYPERLINK_FLAG_MASK) != 0);
57    }
58  
59    @Override
60    public boolean isCompressedUnicode() {
61      return _compressedUnicode;
62    }
63    
64    @Override
65    public short getTextCodePage() {
66      return _codePage;
67    }
68    
69    @Override
70    public SortOrder getTextSortOrder() {
71      return _sortOrder;
72    }
73  
74    @Override
75    public ColumnImpl getVersionHistoryColumn() {
76      return _versionHistoryCol;
77    }
78  
79    @Override
80    public void setVersionHistoryColumn(ColumnImpl versionHistoryCol) {
81      _versionHistoryCol = versionHistoryCol;
82    }
83    
84    @Override
85    public boolean isHyperlink() {
86      return _hyperlink;
87    }
88  }