/usr/include/Inventor/SoInput.h is in libcoin60-dev 3.1.3-2.
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 | #ifndef COIN_SOINPUT_H
#define COIN_SOINPUT_H
/**************************************************************************\
*
* This file is part of the Coin 3D visualization library.
* Copyright (C) by Kongsberg Oil & Gas Technologies.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* ("GPL") version 2 as published by the Free Software Foundation.
* See the file LICENSE.GPL at the root directory of this source
* distribution for additional information about the GNU GPL.
*
* For using Coin with software that can not be combined with the GNU
* GPL, and for taking advantage of the additional benefits of our
* support services, please contact Kongsberg Oil & Gas Technologies
* about acquiring a Coin Professional Edition License.
*
* See http://www.coin3d.org/ for more information.
*
* Kongsberg Oil & Gas Technologies, Bygdoy Alle 5, 0257 Oslo, NORWAY.
* http://www.sim.no/ sales@sim.no coin-support@coin3d.org
*
\**************************************************************************/
#include <Inventor/system/inttypes.h>
#include <Inventor/SbBasic.h>
#include <Inventor/lists/SbList.h>
#include <stdio.h> // FILE
#ifndef COIN_INTERNAL
// For Open Inventor compatibility.
#include <Inventor/SoDB.h>
#endif // COIN_INTERNAL
// *************************************************************************
class SbDict;
class SoBase;
class SbString;
class SbTime;
class SbName;
class SbStringList;
class SoInput_FileInfo;
class SoProto;
class SoField;
class SoFieldContainer;
class SoInputP;
// *************************************************************************
class COIN_DLL_API SoInput {
public:
SoInput(void);
SoInput(SoInput * dictIn);
SoProto * findProto(const SbName & name);
void addProto(SoProto * proto);
void pushProto(SoProto * proto);
SoProto * getCurrentProto(void) const;
void popProto(void);
void addRoute(const SbName & fromnode, const SbName & fromfield,
const SbName & tonode, const SbName & tofield);
SbBool checkISReference(SoFieldContainer * container, const SbName & fieldname,
SbBool & readok);
virtual ~SoInput(void);
virtual void setFilePointer(FILE * newFP);
virtual SbBool openFile(const char * fileName, SbBool okIfNotFound = FALSE);
virtual SbBool pushFile(const char * fileName);
virtual void closeFile(void);
virtual SbBool isValidFile(void);
virtual SbBool isValidBuffer(void);
virtual FILE * getCurFile(void) const;
virtual const char * getCurFileName(void) const;
virtual void setBuffer(void * bufpointer, size_t bufsize);
void setStringArray(const char * strings[]);
virtual size_t getNumBytesRead(void) const;
virtual SbString getHeader(void);
virtual float getIVVersion(void);
virtual SbBool isBinary(void);
virtual SbBool get(char & c);
virtual SbBool getASCIIBuffer(char & c);
virtual SbBool getASCIIFile(char & c);
virtual SbBool readHex(uint32_t & l);
virtual SbBool read(char & c);
virtual SbBool read(char & c, SbBool skip);
virtual SbBool read(SbString & s);
virtual SbBool read(SbName & n, SbBool validIdent = FALSE);
virtual SbBool read(int & i);
virtual SbBool read(unsigned int & i);
virtual SbBool read(short & s);
virtual SbBool read(unsigned short & s);
virtual SbBool read(float & f);
virtual SbBool read(double & d);
virtual SbBool readByte(int8_t & b);
virtual SbBool readByte(uint8_t & b);
virtual SbBool readBinaryArray(unsigned char * c, int length);
virtual SbBool readBinaryArray(int32_t * l, int length);
virtual SbBool readBinaryArray(float * f, int length);
virtual SbBool readBinaryArray(double * d, int length);
virtual SbBool eof(void) const;
SbBool isFileVRML1(void);
SbBool isFileVRML2(void);
virtual void resetFilePointer(FILE * fptr);
virtual void getLocationString(SbString & string) const;
virtual void putBack(const char c);
virtual void putBack(const char * str);
virtual void addReference(const SbName & name, SoBase * base,
SbBool addToGlobalDict = TRUE);
virtual void removeReference(const SbName & name);
virtual SoBase * findReference(const SbName & name) const;
static void addDirectoryFirst(const char * dirName);
static void addDirectoryLast(const char * dirName);
static void addEnvDirectoriesFirst(const char * envVarName,
const char * separator = ":\t ");
static void addEnvDirectoriesLast(const char * envVarName,
const char * separator = ":\t ");
static void removeDirectory(const char * dirName);
static void clearDirectories(void);
static const SbStringList & getDirectories(void);
static void init(void);
static SbString getPathname(const char * const filename);
static SbString getPathname(const SbString & s);
static SbString getBasename(const char * const filename);
static SbString getBasename(const SbString & s);
static SbString searchForFile(const SbString & basename,
const SbStringList & directories,
const SbStringList & subdirectories);
protected:
virtual SbBool popFile(void);
void setIVVersion(float version);
FILE * findFile(const char * fileName, SbString & fullName);
void initFile(FILE * newFP, const char * fileName, SbString * fullName,
SbBool openedHere, SbDict * refDict = NULL);
SbBool checkHeader(SbBool bValidateBufferHeader = FALSE);
SbBool fromBuffer(void) const;
SbBool skipWhiteSpace(void);
size_t freeBytesInBuf(void) const;
SbBool readInteger(int32_t & l);
SbBool readUnsignedInteger(uint32_t & l);
SbBool readReal(double & d);
SbBool readUnsignedIntegerString(char * str);
int readDigits(char * str);
int readHexDigits(char * str);
int readChar(char * str, char charToRead);
SbBool makeRoomInBuf(size_t nBytes);
void convertShort(char * from, short * s);
void convertInt32(char * from, int32_t * l);
void convertFloat(char * from, float * f);
void convertDouble(char * from, double * d);
void convertShortArray(char * from, short * to, int len);
void convertInt32Array(char * from, int32_t * to, int len);
void convertFloatArray(char * from, float * to, int len);
void convertDoubleArray(char * from, double * to, int len);
SbBool isFileURL(const char * url);
char * URLToFile(char * out_buf, const char * in_buf);
SbBool IsURL(const char * c_strng);
static void setDirectories(SbStringList * dirs);
private:
friend class SoDB;
friend class SoInputP;
static void clean(void);
void constructorsCommon(void);
static void addDirectoryIdx(const int idx, const char * dirName);
static void addEnvDirectoriesIdx(int startidx, const char * envVarName,
const char * separator);
static SbStringList * dirsearchlist;
SbList<SoInput_FileInfo *> filestack;
SoInput_FileInfo * getTopOfStack(void) const {
return this->filestack[0];
}
SoInputP * pimpl;
};
#endif // !COIN_SOINPUT_H
|