OpenIndiana and Solaris port
[oweals/cde.git] / cde / programs / dtinfo / DtMmdb / oliasdb / dlp_hd.h
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: dlp_hd.h /main/4 1996/06/11 17:28:42 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 #ifndef _dlp_hd_h
52 #define _dlp_hd_h 1
53
54 #include "object/oid_t.h"
55 #include "object/dl_list_cell.h"
56 #include "oliasdb/olias_consts.h"
57 #include "api/smart_ptr.h"
58
59 /*************************************/
60 // The dlp class
61 /*************************************/
62
63 class dlp : public dl_list_cell
64 {
65 public:
66    dlp() : dl_list_cell(DLP_CODE), pos_status(NOT_BEG_TERM) {};
67    virtual ~dlp() {};
68
69    MMDB_SIGNATURES(dlp);
70
71    handler* get_component(int) ;
72
73 // in/out functions
74    io_status asciiOut(ostream&);
75    io_status asciiIn(istream&);
76
77    virtual int cdr_sizeof();
78    virtual io_status cdrOut(buffer&);
79    virtual io_status cdrIn(buffer&);
80
81 protected:
82    enum POS_STATUS { BEG=1, TERM=2, NOT_BEG_TERM=0 };
83
84    oid_t node_oid;
85    char  pos_status; // 1: beginning cell  
86                      // 2: terminating cell
87                      // 3: both beginning and terminating cell
88                      // 0: neither beginning nor terminating cell
89
90    friend class dlp_smart_ptr;
91 };
92
93 typedef dlp* dlpPtr;
94
95
96
97
98 class dlp_smart_ptr : public smart_ptr
99 {
100 public:
101 // x_id is not the oid of the dlp_hd, rather it is the
102 // content of the dlp_hd. 
103    dlp_smart_ptr(info_lib* lib_ptr, const char* ibase_name, const oid_t& node_id);
104    dlp_smart_ptr(info_base* ibase_ptr, const oid_t& node_id);
105
106    dlp_smart_ptr(dlp_smart_ptr&, const oid_t& dlp_id);
107
108    virtual ~dlp_smart_ptr() {};
109
110
111 // id of the node that this dlp represents
112    const oid_t node_id();
113
114 // the prev and next dlp of this dlp
115    dlp_smart_ptr* prev();
116    dlp_smart_ptr* next();
117
118    oid_t prev_node_oid();
119    oid_t next_node_oid();
120
121    oid_t prev_dlp_oid();
122    oid_t next_dlp_oid();
123 };
124
125
126
127 #endif