OpenIndiana and Solaris port
[oweals/cde.git] / cde / programs / dtinfo / DtMmdb / oliasdb / stylesheet_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: stylesheet_hd.cc /main/4 1996/06/11 17:30:47 cde-hal $
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/stylesheet_hd.h"
52 #include "api/transaction.h"
53
54 MMDB_BODIES(stylesheet)
55
56 stylesheet_smart_ptr::stylesheet_smart_ptr(info_lib* lib_ptr,
57                                const char* base_name, 
58                                const char* locator) : 
59 smart_ptr(lib_ptr, base_name, STYLESHEET_SET_POS, 
60                  managers::query_mgr ->  form_pstring_handler(locator),
61                  BASE_COMPONENT_INDEX, smart_ptr::SET
62                 )
63 {
64 }
65
66 stylesheet_smart_ptr::stylesheet_smart_ptr(info_base* base_ptr, 
67                                const char* locator) : 
68 smart_ptr(base_ptr, STYLESHEET_SET_POS, 
69                  managers::query_mgr ->  form_pstring_handler(locator),
70                  BASE_COMPONENT_INDEX, smart_ptr::SET
71                 )
72 {
73 }
74
75 stylesheet_smart_ptr::stylesheet_smart_ptr(info_lib* lib_ptr,
76                                const char* base_name, const oid_t& x):
77 smart_ptr(
78     lib_ptr -> get_info_base(base_name) -> get_set(STYLESHEET_SET_POS) -> its_store(),
79     x
80          )
81 {
82 }
83
84 stylesheet_smart_ptr::stylesheet_smart_ptr(info_base* base_ptr, 
85                                const oid_t& x):
86 smart_ptr(
87     base_ptr -> get_set(STYLESHEET_SET_POS) -> its_store(),
88     x
89          )
90 {
91 }
92
93 /////////////////////////////////////////
94 //
95 //
96 /////////////////////////////////////////
97 const char* stylesheet_smart_ptr::name()
98 {
99   return get_string(BASE_COMPONENT_INDEX);
100 }
101
102 const char* stylesheet_smart_ptr::online_data()
103 {
104   return get_string(BASE_COMPONENT_INDEX+1);
105 }
106
107 const char* stylesheet_smart_ptr::hardcopy_data()
108 {
109   return get_string(BASE_COMPONENT_INDEX+2);
110 }
111
112 int stylesheet_smart_ptr::online_data_size()
113 {
114    return get_string_size(BASE_COMPONENT_INDEX+1);
115 }
116
117 int stylesheet_smart_ptr::hardcopy_data_size()
118 {
119    return get_string_size(BASE_COMPONENT_INDEX+2);
120 }
121
122 void stylesheet_smart_ptr::update_online_data(istream& in)
123 {
124    update_data(in, BASE_COMPONENT_INDEX+1);
125 }
126
127 void stylesheet_smart_ptr::update_hardcopy_data(istream& in)
128 {
129    update_data(in, BASE_COMPONENT_INDEX+2);
130 }
131
132 void stylesheet_smart_ptr::update_data(istream& in, int index)
133 {
134    transaction trans ;
135    mtry {
136       trans.begin();
137
138       update_string(index, in);
139
140       trans.end();
141    }
142
143    mcatch (beginTransException&, e)
144       {
145          rethrow;
146       }
147    mcatch (commitTransException&, e)
148       {
149          rethrow;
150       }
151    mcatch (mmdbException&, e)
152       {
153          trans.rollback();
154          rethrow;
155       }
156    end_try;
157 }
158
159 void 
160 stylesheet_smart_ptr::update_online_data(const char* buf, int size)
161 {
162    update_data(buf, size, BASE_COMPONENT_INDEX+1);
163 }
164
165 void 
166 stylesheet_smart_ptr::update_hardcopy_data(const char* buf, int size)
167 {
168    update_data(buf, size, BASE_COMPONENT_INDEX+2);
169 }
170
171 void 
172 stylesheet_smart_ptr::update_data(const char* buf, int size, int index)
173 {
174    transaction trans ;
175    mtry {
176       trans.begin();
177
178       update_string(index, buf, size);
179
180       trans.end();
181    }
182
183    mcatch (beginTransException&, e)
184       {
185          rethrow;
186       }
187    mcatch (commitTransException&, e)
188       {
189          rethrow;
190       }
191    mcatch (mmdbException&, e)
192       {
193          trans.rollback();
194          rethrow;
195       }
196    end_try;
197 }
198