OpenIndiana and Solaris port
[oweals/cde.git] / cde / programs / dtinfo / DtMmdb / oliasdb / node_hd.C
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /*
24  * $XConsortium: node_hd.C /main/5 1996/08/21 15:53:33 drk $
25  *
26  * Copyright (c) 1992 HAL Computer Systems International, Ltd.
27  * All rights reserved.  Unpublished -- rights reserved under
28  * the Copyright Laws of the United States.  USE OF A COPYRIGHT
29  * NOTICE IS PRECAUTIONARY ONLY AND DOES NOT IMPLY PUBLICATION
30  * OR DISCLOSURE.
31  * 
32  * THIS SOFTWARE CONTAINS CONFIDENTIAL INFORMATION AND TRADE
33  * SECRETS OF HAL COMPUTER SYSTEMS INTERNATIONAL, LTD.  USE,
34  * DISCLOSURE, OR REPRODUCTION IS PROHIBITED WITHOUT THE
35  * PRIOR EXPRESS WRITTEN PERMISSION OF HAL COMPUTER SYSTEMS
36  * INTERNATIONAL, LTD.
37  * 
38  *                         RESTRICTED RIGHTS LEGEND
39  * Use, duplication, or disclosure by the Government is subject
40  * to the restrictions as set forth in subparagraph (c)(l)(ii)
41  * of the Rights in Technical Data and Computer Software clause
42  * at DFARS 252.227-7013.
43  *
44  *          HAL COMPUTER SYSTEMS INTERNATIONAL, LTD.
45  *                  1315 Dell Avenue
46  *                  Campbell, CA  95008
47  * 
48  */
49
50
51 #include "oliasdb/node_hd.h"
52
53 #ifdef C_API
54 #include "utility/c_stringstream.h"
55 #else
56 #include <sstream>
57 using namespace std;
58 #endif
59
60 MMDB_BODIES(olias_node)
61
62 node_smart_ptr::node_smart_ptr(info_lib* lib_ptr,
63                                const char* base_name, 
64                                const char* locator) : 
65 smart_ptr(lib_ptr, base_name, NODE_SET_POS, 
66                  managers::query_mgr ->  form_pstring_handler(locator),
67                  BASE_COMPONENT_INDEX, smart_ptr::SET
68                 )
69 {
70 }
71
72 node_smart_ptr::node_smart_ptr(info_base* base_ptr, 
73                                const char* locator) : 
74 smart_ptr(base_ptr, NODE_SET_POS, 
75                  managers::query_mgr ->  form_pstring_handler(locator),
76                  BASE_COMPONENT_INDEX, smart_ptr::SET
77                 )
78 {
79 }
80
81 node_smart_ptr::node_smart_ptr(info_lib* lib_ptr,
82                                const char* base_name, const oid_t& x):
83 smart_ptr(
84     lib_ptr -> get_info_base(base_name) -> get_set(NODE_SET_POS) -> its_store(),
85     x
86          )
87 {
88 }
89
90 node_smart_ptr::node_smart_ptr(info_base* base_ptr, 
91                                const oid_t& x):
92 smart_ptr(
93     base_ptr -> get_set(NODE_SET_POS) -> its_store(),
94     x
95          )
96 {
97 }
98
99 /////////////////////////////////////////
100 //
101 //
102 /////////////////////////////////////////
103 const char* node_smart_ptr::locator()
104 {
105   return get_string(BASE_COMPONENT_INDEX);
106 }
107
108 const char* node_smart_ptr::long_title()
109 {
110   return get_string(BASE_COMPONENT_INDEX+1);
111 }
112
113 const char* node_smart_ptr::short_title()
114 {
115   return get_string(BASE_COMPONENT_INDEX+2);
116 }
117
118 const char* node_smart_ptr::data()
119 {
120   return get_string(BASE_COMPONENT_INDEX+3);
121 }
122
123 int node_smart_ptr::data_size()
124 {
125   return get_string_size(BASE_COMPONENT_INDEX+3);
126 }
127
128 const char* node_smart_ptr::toc_node_loc()
129 {
130   return get_string(BASE_COMPONENT_INDEX+4);
131 }
132
133 oid_t node_smart_ptr::doc_id()
134 {
135   return get_oid(BASE_COMPONENT_INDEX+5);
136 }
137
138 oid_t node_smart_ptr::stylesheet_id()
139 {
140   return get_oid(BASE_COMPONENT_INDEX+6);
141 }
142
143
144 void node_smart_ptr::update_doc_id(const oid_t& x)
145 {
146    update_oid(BASE_COMPONENT_INDEX+5, x);
147 }
148
149 Boolean node_smart_ptr::update_data(istream& in)
150 {
151   update_string(BASE_COMPONENT_INDEX+3, in);
152   return true;
153 }