 data | Contains a set of classes to easy the handling of data and files, as well as the serialization |
  LockedAccess | Struct for wrapping the basic FILE locked functions for reading and writing defined in stdio.h |
  UnlockedAccess | Struct for wrapping the basic FILE unlocked functions for reading and writing defined in stdio_exts.h |
  BaseFile | This is a wrapper class for the FILE functions that provides all the functionality to handle files safely |
  FileSegment | Identifies a data segment of a file |
  InputOperator | This struct identifies a basic input operator to be applied to a File object |
  OutputOperator | This struct identifies a basic output operator to be applied to a File object |
  BaseStream | This template is used as the base for the input/output stream classes |
  Serializer | This template class allows to define a "serializer" |
  InputStream | Specialization of the BaseStream for input serializations |
  OutputStream | Specialization of the BaseStream for output serializations |
  Serializer< bool > | Serializer for the bool type |
  Serializer< int > | Serializer for the int type |
  Serializer< uint64_t > | Serializer for the uint64_t type |
  Serializer< string > | Serializer for the string class |
  Serializer< vector< T > > | Serializer for the vector class |
  Serializer< multimap< string, int > > | Serializer for the multimap<string,int> class |
  vint_vector | This class has been implemented with the same philosophy that the class STL vector, but specifically designed to store integers with a length in bytes that can be not multiple from 2 (e.g |
 http | Contains the definition of a set of classes for working easily with the protocol HTTP |
  HeaderName | Container for the strings associated to the most common HTTP headers, used for the specialization of the class HeaderBase |
  HeaderBase | Template class used to identify a HTTP header |
  HeaderBase< HeaderName::UNDEFINED > | Specialization of the HeaderBase template class with the HeaderName::UNDEFINED value |
  Header | Class used to handle a HTTP header |
  Protocol | Class used to identify the HTTP protocol |
  Request | Class used to identify a HTTP request (GET or POST) |
  Response | Class used to identify a HTTP response |
   StatusCodesInitializer | Class used for the initializer |
 ipc | Contains classes for working with the IPC mechanisms available in Linux using the pthread library |
  Event | IPC object that offers the functionality of an event (Windows IPC object), implemented by means of a combination of the pthread mutex and conditional variables API |
  IPCObject | Class base of all the IPC classes that has the basic operations (Init , Wait and Dispose ) to be overloaded |
  Mutex | IPC object that offers the functionality of a mutex, implemented by means of the pthread mutex API |
  RdWrLock | IPC object that offers the functionality of a read/write lock, implemented by means of the pthread rwlock API |
 jpeg2000 | Set of classes for handling (reading and indexing) image files with the format defined in the Part 1 and 2 of the JPEG2000 standard |
  CodestreamIndex | Class used for indexing the information of a JPEG2000 codestream |
  CodingParameters | Contains the coding parameters of a JPEG2000 image codestream |
  FileManager | Manages the image files of a repository, allowing read their indexing information, with a caching mechanism for efficiency |
  ImageIndex | Contains the indexing information of a JPEG2000 image file that is managed by the index manager |
  ImageInfo | Contains the indexing information of a JPEG2000 image |
  IndexManager | Manages the indexing information of a repository fo images |
  Metadata | Contains the indexing information associated to the meta-data of a JPEG2000 image file |
  Packet | Contains the information of a packet |
  PacketIndex | Class used for indexing the packets of a codestream image |
  PlaceHolder | Contains the information of a place-holder |
  Point | Represents a couple of integer values that can be used to identify a coordinate as well as a size |
  Range | Represents a range of integer values, defined by two values, first and last, which are assumed to be included in the range |
 jpip | Set of classes related to the JPIP protocol, defined in the Part 9 of the JPEG2000 standard |
  DataBinSelector | Template class that is specialized for allowing basic operations (add and get) with cache models depending on the data-bin classes |
  CacheModel | The cache model of a JPIP client is handled using this class |
   Codestream | Sub-class of the cache model class used to identify a codestream |
  DataBinSelector< DataBinClass::META_DATA > | |
  DataBinSelector< DataBinClass::MAIN_HEADER > | |
  DataBinSelector< DataBinClass::TILE_HEADER > | |
  DataBinSelector< DataBinClass::PRECINCT > | |
  DataBinServer | Contains the core functionality of a (JPIP) data-bin server, which maintains a cache model and is capable of generating data chunks of variable length; |
  DataBinWriter | Class used to generate data-bin segments and write them into a memory buffer |
  DataBinClass | Class that contains the definitions of all the data-bin classes defined for the JPIP protocol |
  EOR | Class that contains all the definitions of the EOF messages defined for the JPIP protocol |
  Request | Class derived from the HTTP Request class that contains the required code for properly analyzing a JPIP request, when this protocol is used over the HTTP |
   ParametersMask | Union used to control the presence of the different JPIP parameters in a request |
  WOI | Class that identifies a WOI (Window Of Interest) |
  WOIComposer | By means of this class it is possible to find out the which packets of an image are associated to a WOI |
 net | Contains classes to easy the utilization of sockets, specially implemented for UNIX systems |
  Address | Abstract base class to wrap the sockaddr derived structures |
  InetAddress | Class to identify and handle an Internet address |
  UnixAddress | Class to identify and handle an UNIX address |
  PollFD | Wrapper structure for the structure pollfd used by the kernel poll functions |
  PollTable | This class allows to perfom polls easily over a vector of descriptors |
  Socket | This class has been designed to work with UNIX sockets in an easy and object oriented way |
  SocketBuffer | Class derived from the STL std::streambuf to allow streaming with sockets |
  SocketStream | Class derived from std::iostream and SocketBuffer that represents a socket stream |
 AppConfig | Contains the configuration parameters of the application |
 AppInfo | Contains the run-time information of the application |
  Data | Contains the data block that is maintained in shared memory |
 ArgsParser | Class that allows to parse and handle the application command line parameters |
 base | Contains a set of useful static methods used by the application |
 ClientInfo | Contains information of a connected client |
 ClientManager | Handles a client connection with a dedicated thread |
 TraceSystem | Wrapper used by the application to handle the log/trace messages by means of the log4cpp library |
 ui | |