/usr/include/omniORB4/codeSets.h is in libomniorb4-dev 4.2.2-0.8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 | // -*- Mode: C++; -*-
// Package : omniORB2
// codeSets.h Created on: 18/10/2000
// Author : Duncan Grisby (dpg1)
//
// Copyright (C) 2002-2008 Apasphere Ltd
// Copyright (C) 2000 AT&T Laboratories, Cambridge
//
// This file is part of the omniORB library
//
// The omniORB library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library. If not, see http://www.gnu.org/licenses/
//
//
// Description:
// *** PROPRIETARY INTERFACE ***
//
#ifndef __CODESETS_H__
#define __CODESETS_H__
//#include <CONV_FRAME.hh>
class cdrStream;
OMNI_NAMESPACE_BEGIN(omni)
class CONV_FRAME {
public:
typedef _CORBA_ULong CodeSetId;
typedef _CORBA_Unbounded_Sequence_w_FixSizeElement<CodeSetId,4,4> CodeSetIdList;
struct CodeSetComponent {
CodeSetId native_code_set;
CodeSetIdList conversion_code_sets;
void operator>>= (cdrStream& s) const;
void operator<<= (cdrStream& s);
};
struct CodeSetComponentInfo {
CodeSetComponent ForCharData;
CodeSetComponent ForWcharData;
void operator>>= (cdrStream& s) const;
void operator<<= (cdrStream& s);
};
};
// Code set conversion framework
// =============================
//
// For any transmission involving char or wchar data, there are two
// code sets involved -- the `native' code set, which is the code set
// the application is using, and the `transmission' code set, which is
// the code set negotiated with the other end, used to send the data.
// At any given time, there are four code sets in force, since char
// and wchar code sets are separate. These are termed NCS-C, TCS-C,
// NCS-W, and TCS-W, for native char, transmission char, native wchar,
// transmission wchar respectively.
//
// These four code sets are represented by four objects, derived from
// the NCS_C, TCS_C, NCS_W, and TCS_W classes. To marshal or unmarshal
// char data (i.e. char and string), for example, the ORB calls
// methods of the NCS_C object, passing a pointer to the TCS_C object
// to be used. The ORB will not normally call methods of the TCS_C
// object directly.
//
// For each supported code set, there is a single object registered
// with the system. These objects are usually statically allocated.
// Since all interactions involving a particular code set use the same
// code set object, all objects must be stateless.
//
// By default, the NCS object comunicates with the TCS object via
// UTF-16 Unicode, so all NCS objects can translate to and from all
// TCS objects. For efficiency, either object is permitted to bypass
// the UTF-16 step, and use some more efficient translation. NCS
// implementations must always call the TCS's fast...() function
// before resorting to UTF-16, in case the TCS can deal with the NCS
// data directly.
//
// In all functions involving string lengths, the length does not
// include the terminating null.
class omniCodeSet {
public:
// Common code set id constants
static _core_attr const CONV_FRAME::CodeSetId ID_8859_1; // ISO 8859
static _core_attr const CONV_FRAME::CodeSetId ID_8859_2;
static _core_attr const CONV_FRAME::CodeSetId ID_8859_3;
static _core_attr const CONV_FRAME::CodeSetId ID_8859_4;
static _core_attr const CONV_FRAME::CodeSetId ID_8859_5;
static _core_attr const CONV_FRAME::CodeSetId ID_8859_6;
static _core_attr const CONV_FRAME::CodeSetId ID_8859_7;
static _core_attr const CONV_FRAME::CodeSetId ID_8859_8;
static _core_attr const CONV_FRAME::CodeSetId ID_8859_9;
static _core_attr const CONV_FRAME::CodeSetId ID_8859_10;
static _core_attr const CONV_FRAME::CodeSetId ID_8859_11;
static _core_attr const CONV_FRAME::CodeSetId ID_8859_13;
static _core_attr const CONV_FRAME::CodeSetId ID_8859_14;
static _core_attr const CONV_FRAME::CodeSetId ID_8859_15;
static _core_attr const CONV_FRAME::CodeSetId ID_8859_16;
static _core_attr const CONV_FRAME::CodeSetId ID_UCS_2; // Unicode
static _core_attr const CONV_FRAME::CodeSetId ID_UCS_4;
static _core_attr const CONV_FRAME::CodeSetId ID_UTF_8;
static _core_attr const CONV_FRAME::CodeSetId ID_UTF_16; // Unicode with
// surrogates
static _core_attr const CONV_FRAME::CodeSetId ID_CP1250; // Windows-1250
static _core_attr const CONV_FRAME::CodeSetId ID_CP1251; // Windows-1251
static _core_attr const CONV_FRAME::CodeSetId ID_CP1252; // Windows-1252
static _core_attr const CONV_FRAME::CodeSetId ID_CP1253; // Windows-1253
static _core_attr const CONV_FRAME::CodeSetId ID_CP1254; // Windows-1254
static _core_attr const CONV_FRAME::CodeSetId ID_CP1255; // Windows-1255
static _core_attr const CONV_FRAME::CodeSetId ID_CP1256; // Windows-1256
static _core_attr const CONV_FRAME::CodeSetId ID_CP1257; // Windows-1257
static _core_attr const CONV_FRAME::CodeSetId ID_CP1258; // Windows-1258
static _core_attr const CONV_FRAME::CodeSetId ID_037; // IBM Ebcdic
static _core_attr const CONV_FRAME::CodeSetId ID_500;
static _core_attr const CONV_FRAME::CodeSetId ID_EDF_4;
class NCS_C; // Native code set for char and string
class NCS_W; // Native code set for wide char and wide string
class TCS_C; // Transmission code set for char and string
class TCS_W; // Transmission code set for wide char and wide string
static NCS_C* getNCS_C(CONV_FRAME::CodeSetId id);
static NCS_W* getNCS_W(CONV_FRAME::CodeSetId id);
static TCS_C* getTCS_C(CONV_FRAME::CodeSetId id, GIOP::Version v);
static TCS_W* getTCS_W(CONV_FRAME::CodeSetId id, GIOP::Version v);
// Static functions to get the code set object for a particular DCE
// code set id. Return null if no suitable code set object exists.
static NCS_C* getNCS_C(const char* name);
static NCS_W* getNCS_W(const char* name);
static TCS_C* getTCS_C(const char* name, GIOP::Version v);
static TCS_W* getTCS_W(const char* name, GIOP::Version v);
// Static functions to get the code set object for a particular
// name. Return null if no suitable code set object exists.
static void registerNCS_C(NCS_C* cs);
static void registerNCS_W(NCS_W* cs);
static void registerTCS_C(TCS_C* cs);
static void registerTCS_W(TCS_W* cs);
// Static functions to register new code set objects.
// NO concurrency control. It is expected that these functions will
// be called from static initialisers.
static void logCodeSets();
// Print out the supported code sets
#if (SIZEOF_WCHAR == 2)
typedef _CORBA_WChar UniChar; // Unicode code point (UTF-16)
#else
typedef _CORBA_UShort UniChar;
#endif
// Special code set kinds
enum Kind {
CS_Other, // Don't know anything special about this code set
CS_8bit, // Simple 8 bit set with one-to-one Unicode mapping
// Class must be NCS_C_8bit or TCS_C_8bit
CS_16bit // Simple 16 bit set with one-to-one Unicode mapping
// (not Unicode itself, though)
// Class must be NCS_W_16bit or TCS_W_16bit
};
// Base class for all code sets
class Base {
public:
inline CONV_FRAME::CodeSetId id() const { return pd_id; }
inline const char* name() const { return pd_name; }
inline Kind kind() const { return pd_kind; }
// DCE code set identifier, descriptive name string, code set kind
protected:
Base(CONV_FRAME::CodeSetId id_, const char* name_, Kind kind_)
: pd_id(id_), pd_name(name_), pd_kind(kind_), pd_next(0) {}
virtual ~Base() {}
private:
CONV_FRAME::CodeSetId pd_id;
const char* pd_name;
Kind pd_kind;
Base* pd_next; // Linked list
friend class omniCodeSet;
};
class NCS_C : public Base {
public:
virtual void marshalChar(cdrStream& stream, TCS_C* tcs, _CORBA_Char c) = 0;
virtual void marshalString(cdrStream& stream, TCS_C* tcs,
_CORBA_ULong bound, _CORBA_ULong len,
const char* s) = 0;
// Marshal string. len is the length of the string or zero to
// indicate that the length is not known (or actually zero).
virtual _CORBA_Char unmarshalChar(cdrStream& stream, TCS_C* tcs) = 0;
virtual _CORBA_ULong unmarshalString(cdrStream& stream, TCS_C* tcs,
_CORBA_ULong bound, char*& s) = 0;
NCS_C(CONV_FRAME::CodeSetId id, const char* name, Kind kind);
virtual ~NCS_C() {}
};
class TCS_C : public Base {
public:
inline GIOP::Version giopVersion() const { return pd_giopVersion; }
// Unicode based marshalling
virtual void marshalChar (cdrStream& stream, UniChar uc) = 0;
virtual void marshalString(cdrStream& stream, _CORBA_ULong bound,
_CORBA_ULong len, const UniChar* us) = 0;
// len is the length of the unicode string in us. It may only be
// zero if the string is of zero length.
virtual UniChar unmarshalChar(cdrStream& stream) = 0;
virtual _CORBA_ULong unmarshalString(cdrStream& stream,
_CORBA_ULong bound, UniChar*& us) = 0;
// Fast marshalling functions. Return false if no fast case is
// possible and the Unicode functions should be used.
virtual _CORBA_Boolean fastMarshalChar (cdrStream& stream,
NCS_C* ncs,
_CORBA_Char c);
virtual _CORBA_Boolean fastMarshalString (cdrStream& stream,
NCS_C* ncs,
_CORBA_ULong bound,
_CORBA_ULong len,
const char* s);
// len may be zero if length is not known.
virtual _CORBA_Boolean fastUnmarshalChar (cdrStream& stream,
NCS_C* ncs,
_CORBA_Char& c);
virtual _CORBA_Boolean fastUnmarshalString(cdrStream& stream,
NCS_C* ncs,
_CORBA_ULong bound,
_CORBA_ULong& length,
char*& s);
TCS_C(CONV_FRAME::CodeSetId id, const char* name, Kind kind,
GIOP::Version giopVersion);
virtual ~TCS_C() {}
private:
GIOP::Version pd_giopVersion;
};
class NCS_W : public Base {
public:
virtual void marshalWChar(cdrStream& stream, TCS_W* tcs,
_CORBA_WChar c) = 0;
virtual void marshalWString(cdrStream& stream, TCS_W* tcs,
_CORBA_ULong bound, _CORBA_ULong len,
const _CORBA_WChar* s) = 0;
virtual _CORBA_WChar unmarshalWChar(cdrStream& stream, TCS_W* tcs) = 0;
virtual _CORBA_ULong unmarshalWString(cdrStream& stream, TCS_W* tcs,
_CORBA_ULong bound,
_CORBA_WChar*& s) = 0;
NCS_W(CONV_FRAME::CodeSetId id, const char* name, Kind kind);
virtual ~NCS_W() {}
};
class TCS_W : public Base {
public:
inline GIOP::Version giopVersion() const { return pd_giopVersion; }
// Unicode based marshalling
virtual void marshalWChar (cdrStream& stream, UniChar uc) = 0;
virtual void marshalWString(cdrStream& stream, _CORBA_ULong bound,
_CORBA_ULong len, const UniChar* us) = 0;
virtual UniChar unmarshalWChar(cdrStream& stream) = 0;
virtual _CORBA_ULong unmarshalWString(cdrStream& stream,
_CORBA_ULong bound,
UniChar*& us) = 0;
// Fast marshalling functions. Return false if no fast case is
// possible and Unicode functions should be used.
virtual _CORBA_Boolean fastMarshalWChar (cdrStream& stream,
NCS_W* ncs,
_CORBA_WChar c);
virtual _CORBA_Boolean fastMarshalWString (cdrStream& stream,
NCS_W* ncs,
_CORBA_ULong bound,
_CORBA_ULong len,
const _CORBA_WChar* s);
virtual _CORBA_Boolean fastUnmarshalWChar (cdrStream& stream,
NCS_W* ncs,
_CORBA_WChar& c);
virtual _CORBA_Boolean fastUnmarshalWString(cdrStream& stream,
NCS_W* ncs,
_CORBA_ULong bound,
_CORBA_ULong& length,
_CORBA_WChar*& s);
TCS_W(CONV_FRAME::CodeSetId id, const char* name, Kind kind,
GIOP::Version giopVersion);
virtual ~TCS_W() {}
private:
GIOP::Version pd_giopVersion;
};
//
// Classes for code sets we know something special about
//
//
// Single byte code sets.
//
// Single byte codes sets contain two mapping tables, to and from
// UCS-2. The table to UCS-2 is a simple 256 element arrray of UCS-2
// values. The table from UCS-2 is a two-level table. The high octet
// of the UCS-2 value is looked-up in the top-level table; the low
// octet is looked-up in the table found in the first look-up. The
// majority of second-level table entries are usually the same empty
// table.
//
// In both tables, an entry with value zero in any place except
// index zero means there is no mapping for the character in
// question, and a DATA_CONVERSION exception should be thrown.
class NCS_C_8bit : public NCS_C {
public:
// Inherited virtual functions
virtual void marshalChar(cdrStream& stream, TCS_C* tcs,
_CORBA_Char c);
virtual void marshalString(cdrStream& stream, TCS_C* tcs,
_CORBA_ULong bound, _CORBA_ULong len,
const char* s);
virtual _CORBA_Char unmarshalChar(cdrStream& stream, TCS_C* tcs);
virtual _CORBA_ULong unmarshalString(cdrStream& stream,
TCS_C* tcs,
_CORBA_ULong bound, char*& s);
inline const UniChar* toU() const { return pd_toU; }
inline const _CORBA_Char** fromU() const { return pd_fromU; }
NCS_C_8bit(CONV_FRAME::CodeSetId id_,
const char* name_,
const UniChar* toU_,
const _CORBA_Char** fromU_)
: NCS_C(id_, name_, CS_8bit),
pd_toU(toU_),
pd_fromU(fromU_)
{ }
virtual ~NCS_C_8bit() {};
private:
const UniChar* pd_toU;
const _CORBA_Char** pd_fromU;
};
class TCS_C_8bit : public TCS_C {
public:
// Inherited virtual functions
virtual void marshalChar (cdrStream& stream, UniChar uc);
virtual void marshalString(cdrStream& stream, _CORBA_ULong bound,
_CORBA_ULong len, const UniChar* us);
virtual UniChar unmarshalChar(cdrStream& stream);
virtual _CORBA_ULong unmarshalString(cdrStream& stream,
_CORBA_ULong bound,
UniChar*& us);
virtual _CORBA_Boolean fastMarshalChar (cdrStream& stream,
NCS_C* ncs,
_CORBA_Char c);
virtual _CORBA_Boolean fastMarshalString (cdrStream& stream,
NCS_C* ncs,
_CORBA_ULong bound,
_CORBA_ULong len,
const char* s);
virtual _CORBA_Boolean fastUnmarshalChar (cdrStream& stream,
NCS_C* ncs,
_CORBA_Char& c);
virtual _CORBA_Boolean fastUnmarshalString(cdrStream& stream,
NCS_C* ncs,
_CORBA_ULong bound,
_CORBA_ULong& length,
char*& s);
// Translation tables:
inline const UniChar* toU() const { return pd_toU; }
inline const _CORBA_Char** fromU() const { return pd_fromU; }
TCS_C_8bit(CONV_FRAME::CodeSetId id_,
const char* name_,
GIOP::Version giopVersion_,
const UniChar* toU_,
const _CORBA_Char** fromU_)
: TCS_C(id_, name_, CS_8bit, giopVersion_),
pd_toU(toU_),
pd_fromU(fromU_)
{ }
virtual ~TCS_C_8bit() {}
private:
const UniChar* pd_toU;
const _CORBA_Char** pd_fromU;
};
static _core_attr const _CORBA_Char empty8BitTable[];
// Empty 8 bit table to be used as a second-level table in
// Unicode -> 8 bit mappings
//
// Two byte code sets.
//
// If sizeof(whar_t) == 4, the native code set makes sure each wide
// character uses only the low 16 bits.
//
// Two byte code sets contain two two-level tables, one mapping to
// UCS-2, the other mapping from it.
class NCS_W_16bit : public NCS_W {
public:
virtual void marshalWChar(cdrStream& stream, TCS_W* tcs,
_CORBA_WChar c);
virtual void marshalWString(cdrStream& stream, TCS_W* tcs,
_CORBA_ULong bound, _CORBA_ULong len,
const _CORBA_WChar* s);
virtual _CORBA_WChar unmarshalWChar(cdrStream& stream, TCS_W* tcs);
virtual _CORBA_ULong unmarshalWString(cdrStream& stream, TCS_W* tcs,
_CORBA_ULong bound,
_CORBA_WChar*& s);
inline const UniChar** toU() const { return pd_toU; }
inline const _CORBA_UShort** fromU() const { return pd_fromU; }
NCS_W_16bit(CONV_FRAME::CodeSetId id_,
const char* name_,
const UniChar** toU_,
const _CORBA_UShort** fromU_)
: NCS_W(id_, name_, CS_16bit),
pd_toU(toU_),
pd_fromU(fromU_)
{ }
virtual ~NCS_W_16bit() {}
private:
const UniChar** pd_toU;
const _CORBA_UShort** pd_fromU;
};
class TCS_W_16bit : public TCS_W {
public:
// Unicode based marshalling
virtual void marshalWChar (cdrStream& stream, UniChar uc);
virtual void marshalWString(cdrStream& stream, _CORBA_ULong bound,
_CORBA_ULong len, const UniChar* us);
virtual UniChar unmarshalWChar(cdrStream& stream);
virtual _CORBA_ULong unmarshalWString(cdrStream& stream,
_CORBA_ULong bound,
UniChar*& us);
// Fast marshalling functions. Return false if no fast case is
// possible and Unicode functions should be used.
virtual _CORBA_Boolean fastMarshalWChar (cdrStream& stream,
NCS_W* ncs,
_CORBA_WChar c);
virtual _CORBA_Boolean fastMarshalWString (cdrStream& stream,
NCS_W* ncs,
_CORBA_ULong bound,
_CORBA_ULong len,
const _CORBA_WChar* s);
virtual _CORBA_Boolean fastUnmarshalWChar (cdrStream& stream,
NCS_W* ncs,
_CORBA_WChar& c);
virtual _CORBA_Boolean fastUnmarshalWString(cdrStream& stream,
NCS_W* ncs,
_CORBA_ULong bound,
_CORBA_ULong& length,
_CORBA_WChar*& s);
inline const UniChar** toU() const { return pd_toU; }
inline const _CORBA_UShort** fromU() const { return pd_fromU; }
TCS_W_16bit(CONV_FRAME::CodeSetId id_,
const char* name_,
GIOP::Version giopVersion_,
const UniChar** toU_,
const _CORBA_UShort** fromU_)
: TCS_W(id_, name_, CS_16bit, giopVersion_),
pd_toU(toU_),
pd_fromU(fromU_)
{ }
virtual ~TCS_W_16bit() {}
private:
const UniChar** pd_toU;
const _CORBA_UShort** pd_fromU;
};
static _core_attr const _CORBA_UShort empty16BitTable[];
// Empty 16 bit table to be used as a second-level table in 16 bit
// mappings
};
OMNI_NAMESPACE_END(omni)
#endif // __CODESETS_H__
|