/usr/include/titan/Octetstring.hh is in eclipse-titan 6.3.1-1build1.
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 | /******************************************************************************
* Copyright (c) 2000-2017 Ericsson Telecom AB
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Baji, Laszlo
* Balasko, Jeno
* Baranyi, Botond
* Beres, Szabolcs
* Delic, Adam
* Forstner, Matyas
* Horvath, Gabriella
* Kovacs, Ferenc
* Raduly, Csaba
* Szabados, Kristof
* Szabo, Bence Janos
* Szabo, Janos Zoltan – initial implementation
* Szalai, Gabor
* Tatarka, Gabor
* Pandi, Krisztian
*
******************************************************************************/
#ifndef OCTETSTRING_HH
#define OCTETSTRING_HH
#include "Basetype.hh"
#include "Template.hh"
#include "Error.hh"
#ifdef TITAN_RUNTIME_2
#include "Vector.hh"
#endif
class INTEGER;
class BITSTRING;
class HEXSTRING;
class CHARSTRING;
class OCTETSTRING_ELEMENT;
class Module_Param;
template<typename T>
class OPTIONAL;
// octetstring value class
class OCTETSTRING : public Base_Type {
friend class OCTETSTRING_ELEMENT;
friend class OCTETSTRING_template;
friend class TTCN_Buffer;
friend OCTETSTRING int2oct(int value, int length);
friend OCTETSTRING int2oct(const INTEGER& value, int length);
friend OCTETSTRING str2oct(const CHARSTRING& value);
friend OCTETSTRING bit2oct(const BITSTRING& value);
friend OCTETSTRING hex2oct(const HEXSTRING& value);
friend OCTETSTRING unichar2oct(const UNIVERSAL_CHARSTRING& invalue);
friend OCTETSTRING unichar2oct(const UNIVERSAL_CHARSTRING& invalue, const CHARSTRING& string_encoding);
friend OCTETSTRING replace(const OCTETSTRING& value, int index, int len,
const OCTETSTRING& repl);
protected: // for ASN_ANY which is derived from OCTETSTRING
struct octetstring_struct;
octetstring_struct *val_ptr;
void init_struct(int n_octets);
void copy_value();
OCTETSTRING(int n_octets);
public:
OCTETSTRING();
OCTETSTRING(int n_octets, const unsigned char* octets_ptr);
OCTETSTRING(const OCTETSTRING_ELEMENT& other_value);
OCTETSTRING(const OCTETSTRING& other_value);
~OCTETSTRING();
OCTETSTRING& operator=(const OCTETSTRING& other_value);
OCTETSTRING& operator=(const OCTETSTRING_ELEMENT& other_value);
boolean operator==(const OCTETSTRING& other_value) const;
boolean operator==(const OCTETSTRING_ELEMENT& other_value) const;
inline boolean operator!=(const OCTETSTRING& other_value) const
{ return !(*this == other_value); }
inline boolean operator!=(const OCTETSTRING_ELEMENT& other_value) const
{ return !(*this == other_value); }
OCTETSTRING operator+(const OCTETSTRING& other_value) const;
OCTETSTRING operator+(const OCTETSTRING_ELEMENT& other_value) const;
#ifdef TITAN_RUNTIME_2
OCTETSTRING operator+(const OPTIONAL<OCTETSTRING>& other_value) const;
#endif
OCTETSTRING& operator+=(const OCTETSTRING& other_value);
OCTETSTRING& operator+=(const OCTETSTRING_ELEMENT& other_value);
OCTETSTRING operator~() const;
OCTETSTRING operator&(const OCTETSTRING& other_value) const;
OCTETSTRING operator&(const OCTETSTRING_ELEMENT& other_value) const;
OCTETSTRING operator|(const OCTETSTRING& other_value) const;
OCTETSTRING operator|(const OCTETSTRING_ELEMENT& other_value) const;
OCTETSTRING operator^(const OCTETSTRING& other_value) const;
OCTETSTRING operator^(const OCTETSTRING_ELEMENT& other_value) const;
OCTETSTRING operator<<(int shift_count) const;
OCTETSTRING operator<<(const INTEGER& shift_count) const;
OCTETSTRING operator>>(int shift_count) const;
OCTETSTRING operator>>(const INTEGER& shift_count) const;
OCTETSTRING operator<<=(int rotate_count) const;
OCTETSTRING operator<<=(const INTEGER& rotate_count) const;
OCTETSTRING operator>>=(int rotate_count) const;
OCTETSTRING operator>>=(const INTEGER& rotate_count) const;
OCTETSTRING_ELEMENT operator[](int index_value);
OCTETSTRING_ELEMENT operator[](const INTEGER& index_value);
const OCTETSTRING_ELEMENT operator[](int index_value) const;
const OCTETSTRING_ELEMENT operator[](const INTEGER& index_value) const;
inline boolean is_bound() const { return val_ptr != NULL; }
inline boolean is_value() const { return val_ptr != NULL; }
inline void must_bound(const char *err_msg) const
{ if (val_ptr == NULL) TTCN_error("%s", err_msg); }
void clean_up();
int lengthof() const;
operator const unsigned char*() const;
void dump () const;
#ifdef TITAN_RUNTIME_2
boolean is_equal(const Base_Type* other_value) const { return *this == *(static_cast<const OCTETSTRING*>(other_value)); }
void set_value(const Base_Type* other_value) { *this = *(static_cast<const OCTETSTRING*>(other_value)); }
Base_Type* clone() const { return new OCTETSTRING(*this); }
const TTCN_Typedescriptor_t* get_descriptor() const { return &OCTETSTRING_descr_; }
Module_Param* get_param(Module_Param_Name& param_name) const;
#else
inline boolean is_present() const { return is_bound(); }
#endif
void log() const;
void set_param(Module_Param& param);
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
public:
void encode(const TTCN_Typedescriptor_t& p_td, TTCN_Buffer& p_buf,
TTCN_EncDec::coding_t p_coding, ...) const;
void decode(const TTCN_Typedescriptor_t& p_td, TTCN_Buffer& p_buf,
TTCN_EncDec::coding_t p_coding, ...);
ASN_BER_TLV_t* BER_encode_TLV(const TTCN_Typedescriptor_t& p_td,
unsigned p_coding) const;
#ifdef TITAN_RUNTIME_2
ASN_BER_TLV_t* BER_encode_negtest_raw() const;
virtual int encode_raw(TTCN_Buffer& p_buf) const;
virtual int RAW_encode_negtest_raw(RAW_enc_tree& p_myleaf) const;
/** Adds this octetstring to the end of a JSON buffer as raw data.
* Used during the negative testing of the JSON encoder.
* @return The number of bytes added. */
int JSON_encode_negtest_raw(JSON_Tokenizer&) const;
int OER_encode_negtest_raw(TTCN_Buffer&) const;
#endif
boolean BER_decode_TLV(const TTCN_Typedescriptor_t& p_td,
const ASN_BER_TLV_t& p_tlv, unsigned L_form);
/** Encodes the value of the variable according to the
* TTCN_Typedescriptor_t. It must be public because called by
* another types during encoding. Returns the length of encoded data*/
int RAW_encode(const TTCN_Typedescriptor_t&, RAW_enc_tree&) const;
/** Decodes the value of the variable according to the
* TTCN_Typedescriptor_t. It must be public because called by
* another types during encoding. Returns the number of decoded
* bits. */
int RAW_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer& buff, int limit,
raw_order_t top_bit_ord, boolean no_err=FALSE,
int sel_field=-1, boolean first_call=TRUE);
int TEXT_encode(const TTCN_Typedescriptor_t&,
TTCN_Buffer&) const;
int TEXT_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, Limit_Token_List&,
boolean no_err=FALSE, boolean first_call=TRUE);
int XER_encode(const XERdescriptor_t& p_td, TTCN_Buffer& p_buf,
unsigned int flavor, unsigned int flavor2, int indent, embed_values_enc_struct_t*) const;
int XER_decode(const XERdescriptor_t& p_td, XmlReaderWrap& reader,
unsigned int flavor, unsigned int flavor2, embed_values_dec_struct_t*);
/** Encodes accordingly to the JSON encoding rules.
* Returns the length of the encoded data. */
int JSON_encode(const TTCN_Typedescriptor_t&, JSON_Tokenizer&) const;
/** Decodes accordingly to the JSON encoding rules.
* Returns the length of the decoded data. */
int JSON_decode(const TTCN_Typedescriptor_t&, JSON_Tokenizer&, boolean);
/** Encodes accordingly to the OER encoding rules.
* Returns the length of the encoded data. */
int OER_encode(const TTCN_Typedescriptor_t&, TTCN_Buffer&) const;
/** Decodes accordingly to the JSON encoding rules.
* Returns the length of the decoded data. */
int OER_decode(const TTCN_Typedescriptor_t&, TTCN_Buffer&, OER_struct&);
};
class OCTETSTRING_ELEMENT {
boolean bound_flag;
OCTETSTRING& str_val;
int octet_pos;
public:
OCTETSTRING_ELEMENT(boolean par_bound_flag, OCTETSTRING& par_str_val,
int par_octet_pos);
OCTETSTRING_ELEMENT& operator=(const OCTETSTRING& other_value);
OCTETSTRING_ELEMENT& operator=(const OCTETSTRING_ELEMENT& other_value);
boolean operator==(const OCTETSTRING& other_value) const;
boolean operator==(const OCTETSTRING_ELEMENT& other_value) const;
inline boolean operator!=(const OCTETSTRING& other_value) const
{ return !(*this == other_value); }
inline boolean operator!=(const OCTETSTRING_ELEMENT& other_value) const
{ return !(*this == other_value); }
OCTETSTRING operator+(const OCTETSTRING& other_value) const;
OCTETSTRING operator+(const OCTETSTRING_ELEMENT& other_value) const;
#ifdef TITAN_RUNTIME_2
OCTETSTRING operator+(const OPTIONAL<OCTETSTRING>& other_value) const;
#endif
OCTETSTRING operator~() const;
OCTETSTRING operator&(const OCTETSTRING& other_value) const;
OCTETSTRING operator&(const OCTETSTRING_ELEMENT& other_value) const;
OCTETSTRING operator|(const OCTETSTRING& other_value) const;
OCTETSTRING operator|(const OCTETSTRING_ELEMENT& other_value) const;
OCTETSTRING operator^(const OCTETSTRING& other_value) const;
OCTETSTRING operator^(const OCTETSTRING_ELEMENT& other_value) const;
inline boolean is_bound() const { return bound_flag; }
inline boolean is_present() const { return bound_flag; }
inline boolean is_value() const { return bound_flag; }
inline void must_bound(const char *err_msg) const
{ if (!bound_flag) TTCN_error("%s", err_msg); }
unsigned char get_octet() const;
void log() const;
};
// octetstring template class
struct decmatch_struct;
class OCTETSTRING_template : public Restricted_Length_Template {
#ifdef __SUNPRO_CC
public:
#endif
struct octetstring_pattern_struct;
private:
#ifdef TITAN_RUNTIME_2
friend OCTETSTRING_template operator+(const OCTETSTRING& left_value,
const OCTETSTRING_template& right_template);
friend OCTETSTRING_template operator+(const OCTETSTRING_ELEMENT& left_value,
const OCTETSTRING_template& right_template);
friend OCTETSTRING_template operator+(const OPTIONAL<OCTETSTRING>& left_value,
const OCTETSTRING_template& right_template);
friend OCTETSTRING_template operator+(template_sel left_template_sel,
const OCTETSTRING_template& right_template);
friend OCTETSTRING_template operator+(const OCTETSTRING& left_value,
template_sel right_template_sel);
friend OCTETSTRING_template operator+(const OCTETSTRING_ELEMENT& left_value,
template_sel right_template_sel);
friend OCTETSTRING_template operator+(const OPTIONAL<OCTETSTRING>& left_value,
template_sel right_template_sel);
friend OCTETSTRING_template operator+(template_sel left_template_sel,
const OCTETSTRING& right_value);
friend OCTETSTRING_template operator+(template_sel left_template_sel,
const OCTETSTRING_ELEMENT& right_value);
friend OCTETSTRING_template operator+(template_sel left_template_sel,
const OPTIONAL<OCTETSTRING>& right_value);
#endif
OCTETSTRING single_value;
union {
struct {
unsigned int n_values;
OCTETSTRING_template *list_value;
} value_list;
octetstring_pattern_struct *pattern_value;
decmatch_struct* dec_match;
};
void copy_template(const OCTETSTRING_template& other_value);
static boolean match_pattern(const octetstring_pattern_struct *string_pattern,
const OCTETSTRING::octetstring_struct *string_value);
#ifdef TITAN_RUNTIME_2
void concat(Vector<unsigned short>& v) const;
static void concat(Vector<unsigned short>& v, const OCTETSTRING& val);
static void concat(Vector<unsigned short>& v, template_sel sel);
#endif
public:
OCTETSTRING_template();
OCTETSTRING_template(template_sel other_value);
OCTETSTRING_template(const OCTETSTRING& other_value);
OCTETSTRING_template(const OCTETSTRING_ELEMENT& other_value);
OCTETSTRING_template(const OPTIONAL<OCTETSTRING>& other_value);
OCTETSTRING_template(unsigned int n_elements,
const unsigned short *pattern_elements);
OCTETSTRING_template(const OCTETSTRING_template& other_value);
~OCTETSTRING_template();
void clean_up();
OCTETSTRING_template& operator=(template_sel other_value);
OCTETSTRING_template& operator=(const OCTETSTRING& other_value);
OCTETSTRING_template& operator=(const OCTETSTRING_ELEMENT& other_value);
OCTETSTRING_template& operator=(const OPTIONAL<OCTETSTRING>& other_value);
OCTETSTRING_template& operator=(const OCTETSTRING_template& other_value);
#ifdef TITAN_RUNTIME_2
OCTETSTRING_template operator+(const OCTETSTRING_template& other_value) const;
OCTETSTRING_template operator+(const OCTETSTRING& other_value) const;
OCTETSTRING_template operator+(const OCTETSTRING_ELEMENT& other_value) const;
OCTETSTRING_template operator+(const OPTIONAL<OCTETSTRING>& other_value) const;
OCTETSTRING_template operator+(template_sel other_template_sel) const;
#endif
OCTETSTRING_ELEMENT operator[](int index_value);
OCTETSTRING_ELEMENT operator[](const INTEGER& index_value);
const OCTETSTRING_ELEMENT operator[](int index_value) const;
const OCTETSTRING_ELEMENT operator[](const INTEGER& index_value) const;
boolean match(const OCTETSTRING& other_value, boolean legacy = FALSE) const;
const OCTETSTRING& valueof() const;
int lengthof() const;
void set_type(template_sel template_type, unsigned int list_length = 0);
OCTETSTRING_template& list_item(unsigned int list_index);
void set_decmatch(Dec_Match_Interface* new_instance);
void* get_decmatch_dec_res() const;
const TTCN_Typedescriptor_t* get_decmatch_type_descr() const;
void log() const;
void log_match(const OCTETSTRING& match_value, boolean legacy = FALSE) const;
void set_param(Module_Param& param);
void encode_text(Text_Buf& text_buf) const;
void decode_text(Text_Buf& text_buf);
boolean is_present(boolean legacy = FALSE) const;
boolean match_omit(boolean legacy = FALSE) const;
#ifdef TITAN_RUNTIME_2
Module_Param* get_param(Module_Param_Name& param_name) const;
void valueofv(Base_Type* value) const { *(static_cast<OCTETSTRING*>(value)) = valueof(); }
void set_value(template_sel other_value) { *this = other_value; }
void copy_value(const Base_Type* other_value) { *this = *(static_cast<const OCTETSTRING*>(other_value)); }
Base_Template* clone() const { return new OCTETSTRING_template(*this); }
const TTCN_Typedescriptor_t* get_descriptor() const { return &OCTETSTRING_descr_; }
boolean matchv(const Base_Type* other_value, boolean legacy) const { return match(*(static_cast<const OCTETSTRING*>(other_value)), legacy); }
void log_matchv(const Base_Type* match_value, boolean legacy) const { log_match(*(static_cast<const OCTETSTRING*>(match_value)), legacy); }
#else
void check_restriction(template_res t_res, const char* t_name=NULL, boolean legacy = FALSE) const;
#endif
};
#ifdef TITAN_RUNTIME_2
extern OCTETSTRING_template operator+(const OCTETSTRING& left_value,
const OCTETSTRING_template& right_template);
extern OCTETSTRING_template operator+(const OCTETSTRING_ELEMENT& left_value,
const OCTETSTRING_template& right_template);
extern OCTETSTRING_template operator+(const OPTIONAL<OCTETSTRING>& left_value,
const OCTETSTRING_template& right_template);
extern OCTETSTRING_template operator+(template_sel left_template_sel,
const OCTETSTRING_template& right_template);
extern OCTETSTRING_template operator+(const OCTETSTRING& left_value,
template_sel right_template_sel);
extern OCTETSTRING_template operator+(const OCTETSTRING_ELEMENT& left_value,
template_sel right_template_sel);
extern OCTETSTRING_template operator+(const OPTIONAL<OCTETSTRING>& left_value,
template_sel right_template_sel);
extern OCTETSTRING_template operator+(template_sel left_template_sel,
const OCTETSTRING& right_value);
extern OCTETSTRING_template operator+(template_sel left_template_sel,
const OCTETSTRING_ELEMENT& right_value);
extern OCTETSTRING_template operator+(template_sel left_template_sel,
const OPTIONAL<OCTETSTRING>& right_value);
#endif
#endif
|