| /* $Id$ | |
| * | |
| * Licensed to the Apache Software Foundation (ASF) under one or more | |
| * contributor license agreements. See the NOTICE file distributed with | |
| * this work for additional information regarding copyright ownership. | |
| * The ASF licenses this file to you under the Apache License, Version | |
| * 2.0 (the "License"); you may not use this file except in compliance | |
| * with the License. You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software | |
| * distributed under the License is distributed on an "AS IS" BASIS, | |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| * See the License for the specific language governing permissions and | |
| * limitations under the License. | |
| */ | |
| /* | |
| * etch_id_name.h | |
| * etch_id_name is base class for etch_field and etch_type. it binds | |
| * together a type or field name with its associated id. The id is used | |
| * for certain operations, such as the key in a map, comparisons, and | |
| * binary encoding on the wire. | |
| */ | |
| #ifndef ETCHIDNAME_H | |
| #define ETCHIDNAME_H | |
| #include "etch.h" | |
| #include "etchobj.h" | |
| /** | |
| * etch_id_name | |
| */ | |
| struct etch_id_name | |
| { | |
| unsigned int hashkey; | |
| unsigned short obj_type; | |
| unsigned short class_id; | |
| vtabmask* vtab; | |
| int (*destroy)(void*); | |
| void*(*clone) (void*); | |
| obj_gethashkey get_hashkey; | |
| struct objmask* parent; | |
| etchresult* result; | |
| unsigned int refcount; | |
| unsigned int length; | |
| unsigned char is_null; | |
| unsigned char is_copy; | |
| unsigned char is_static; | |
| unsigned char reserved; | |
| etch_object* impl; /* extension of id_name, if any */ | |
| unsigned id; /* wire ID, not a hashmap key */ | |
| size_t namebytelen; /* byte length including terminator */ | |
| wchar_t* name; /* owned */ | |
| char* aname; /* owned - 8-bit name 1st step in id_name conversion */ | |
| }; | |
| typedef struct etch_id_name etch_id_name; | |
| etch_id_name* new_id_name(const wchar_t* name); | |
| etch_id_name* clone_id_name(const etch_id_name*); | |
| int destroy_id_name(etch_id_name* thisp); | |
| int is_good_id_name(etch_id_name* thisp); | |
| int is_equal_id_names(etch_id_name*, etch_id_name*); | |
| int compute_id_name_id(const char*); | |
| int compute_id_name_id_from_widename(const wchar_t*); | |
| unsigned id_name_get_hashkey(objmask* idname); | |
| #endif /* #ifndef ETCHIDNAME_H */ |