This file is indexed.

/usr/include/ncl/nxsassumptionsblock.h is in libncl-dev 2.1.18+dfsg-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
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
//	Copyright (C) 1999-2003 Paul O. Lewis
//
//	This file is part of NCL (Nexus Class Library) version 2.0.
//
//	NCL is free software; you can redistribute it and/or modify
//	it under the terms of the GNU General Public License as published by
//	the Free Software Foundation; either version 2 of the License, or
//	(at your option) any later version.
//
//	NCL 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 General Public License for more details.
//
//	You should have received a copy of the GNU General Public License
//	along with NCL; if not, write to the Free Software Foundation, Inc.,
//	59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//

#ifndef NCL_ASSUMPTIONSBLOCK_H
#define NCL_ASSUMPTIONSBLOCK_H

#include <vector>

#include "ncl/nxsdefs.h"
#include "ncl/nxsblock.h"
#include "ncl/nxstreesblock.h"
#include "ncl/nxscharactersblock.h"
#include "ncl/nxstaxablock.h"

class NxsCharactersBlockAPI;
class NxsTaxaBlockAPI;

class NxsAssumptionsBlockAPI
  : public NxsBlock
	{
	public:
  		virtual void	SetCallback(NxsCharactersBlockAPI *p) = 0;



		virtual void SetCharBlockPtr(NxsCharactersBlockAPI * c, NxsBlockLinkStatus s) = 0;
		virtual void SetTaxaBlockPtr(NxsTaxaBlockAPI *, NxsBlockLinkStatus s) = 0;
		virtual void SetTreesBlockPtr(NxsTreesBlockAPI *, NxsBlockLinkStatus s) = 0;

		virtual NxsCharactersBlockAPI * GetCharBlockPtr(int *status=NULL) = 0; /*v2.1to2.2 13 */
		virtual NxsTaxaBlockAPI * GetTaxaBlockPtr(int *status=NULL) = 0; /*v2.1to2.2 13 */
		virtual NxsTreesBlockAPI * GetTreesBlockPtr(int *status=NULL) = 0; /*v2.1to2.2 13 */

		/* i14 */ /*v2.1to2.2 14 */
		/* i15 */ /*v2.1to2.2 15 */
		/* i16 */ /*v2.1to2.2 16 */

		virtual void AddCharPartition(const std::string & name, const NxsPartition &) = 0;
		virtual void AddTaxPartition(const std::string & name, const NxsPartition &) = 0;
		virtual void AddTreePartition(const std::string & name, const NxsPartition &) = 0;
		virtual void AddCodeSet(const std::string & name, const NxsPartition &, bool asterisked) = 0;
		virtual void AddCodonPosSet(const std::string & name, const NxsPartition &, bool asterisked) = 0;

		virtual void FlagCharBlockAsUsed() = 0;
		virtual void FlagTaxaBlockAsUsed() = 0;
		virtual void FlagTreesBlockAsUsed() = 0;

  		virtual void ReadCharsetDef(NxsString charset_name, NxsToken &token, bool asterisked) = 0;
  		virtual void ReadExsetDef(NxsString charset_name, NxsToken &token, bool asterisked) = 0;
		virtual void ReadTaxsetDef(NxsString set_name, NxsToken &token, bool asterisked) = 0;
		virtual void ReadTreesetDef(NxsString set_name, NxsToken &token, bool asterisked) = 0;

		virtual NxsTransformationManager & GetNxsTransformationManagerRef() = 0;
		virtual const NxsTransformationManager & GetNxsTransformationManagerConstRef() const = 0;
		virtual NxsGeneticCodesManager & GetNxsGeneticCodesManagerRef() = 0;
		virtual void SetGapsAsNewstate(bool v) = 0;

		/*!  delegates call to the NxsTransformationManager */
		virtual std::vector<double> GetDefaultDoubleWeights() const
			{
		    return GetNxsTransformationManagerConstRef().GetDefaultDoubleWeights();
			}

		/*!  delegates call to the NxsTransformationManager */
		virtual std::vector<int> GetDefaultIntWeights() const {
		    return GetNxsTransformationManagerConstRef().GetDefaultIntWeights();
		}

 	};

/*!
	This class handles reading and storage for the NxsReader block ASSUMPTIONS. It overrides the member functions Read
	and Reset, which are abstract virtual functions in the base class NxsBlock. Adding a new data member? Don't forget
	to:
~
	o Describe it in the class declaration using a C-style comment.
	o Initialize it (unless it is self-initializing) in the constructor and re-initialize it in the Reset function.
	o Describe the initial state in the constructor documentation.
	o Delete memory allocated to it in both the destructor and Reset function.
	o Report it in some way in the Report function.
~
*/
class NxsAssumptionsBlock
  : public NxsAssumptionsBlockAPI
	{
	enum NameOfAssumpBlockAsRead
		{
		UNREAD_OR_GENERATED_BLOCK,
		ASSUMPTIONS_BLOCK_READ,
		SETS_BLOCK_READ,
		CODONS_BLOCK_READ
		};


	public:
							NxsAssumptionsBlock(NxsTaxaBlockAPI *t);
		virtual				~NxsAssumptionsBlock();

		virtual bool		CanReadBlockType(const NxsToken & token);

		void				ReplaceTaxaBlockPtr(NxsTaxaBlockAPI *tb);
		void				SetCallback(NxsCharactersBlockAPI *p);

		int					GetNumCharSets() const;
		/* i17 */ /*v2.1to2.2 17 */
		void				GetCharSetNames(NxsStringVector &names) const; /*v2.1to2.2 3 */
		const NxsUnsignedSet *GetCharSet(NxsString nm) const; /*v2.1to2.2 4 */

		int					GetNumCharPartitions(); /*v2.1to2.2 6 */
		void				GetCharPartitionNames(std::vector<std::string> &names); /*v2.1to2.2 6 */
		const NxsPartition		*GetCharPartition(std::string nm) const;

		int					GetNumTaxSets(); /*v2.1to2.2 6 */
		void				GetTaxSetNames(NxsStringVector &names); /*v2.1to2.2 3 */ /*v2.1to2.2 6 */
		NxsUnsignedSet &	GetTaxSet(NxsString nm); /*v2.1to2.2 6 */ /*v2.1to2.2 8 */ /*v2.1to2.2 4 */

		int					GetNumExSets();/*v2.1to2.2 6 */
		void				GetExSetNames(NxsStringVector &names); /*v2.1to2.2 3 */ /*v2.1to2.2 6 */
		NxsUnsignedSet &	GetExSet(NxsString nm); /*v2.1to2.2 6 */ /*v2.1to2.2 8 */ /*v2.1to2.2 4 */
		NxsString			GetDefExSetName(); /*v2.1to2.2 6 */ /*v2.1to2.2 4 */
		void				ApplyExset(NxsString nm); /*v2.1to2.2 4 */

		virtual void		Read(NxsToken& token);
		virtual void		Report(std::ostream& out) NCL_COULD_BE_CONST ; /*v2.1to2.2 1 */
		virtual void		Reset();
		virtual void 		WriteAsNexus(std::ostream &out) const;

		/*only used it the linkAPI is enabled*/
		virtual void		HandleLinkCommand(NxsToken & );
		virtual void		WriteLinkCommand(std::ostream &out) const;

		virtual VecBlockPtr		GetImpliedBlocks()
			{
			return GetCreatedTaxaBlocks();
			}

		int					GetCharLinkStatus() {return charLinkStatus;}
		int					GetTaxaLinkStatus() {return taxaLinkStatus;}
		int					GetTreesLinkStatus() {return treesLinkStatus;}

		void				FlagCharBlockAsUsed() {charLinkStatus |= NxsBlock::BLOCK_LINK_USED;}
		void				FlagTaxaBlockAsUsed() {taxaLinkStatus |= NxsBlock::BLOCK_LINK_USED;}
		void				FlagTreesBlockAsUsed() {treesLinkStatus |= NxsBlock::BLOCK_LINK_USED;}

		void				SetCharLinkStatus(NxsBlockLinkStatus s);
		void				SetTaxaLinkStatus(NxsBlockLinkStatus s);
		void				SetTreesLinkStatus(NxsBlockLinkStatus s);

		void				SetCharBlockPtr(NxsCharactersBlockAPI * c, NxsBlockLinkStatus s);
		void				SetTaxaBlockPtr(NxsTaxaBlockAPI *, NxsBlockLinkStatus s);
		void				SetTreesBlockPtr(NxsTreesBlockAPI *, NxsBlockLinkStatus s);
		NxsCharactersBlockAPI * GetCharBlockPtr(int *status=NULL); /*v2.1to2.2 13 */
		NxsTaxaBlockAPI *	GetTaxaBlockPtr(int *status=NULL); /*v2.1to2.2 13 */
		NxsTreesBlockAPI *	GetTreesBlockPtr(int *status=NULL); /*v2.1to2.2 13 */

		const NxsTransformationManager & GetNxsTransformationManagerConstRef() const
			{
			return transfMgr;
			}
		NxsTransformationManager & GetNxsTransformationManagerRef()
			{
			return transfMgr;
			}
		NxsGeneticCodesManager & GetNxsGeneticCodesManagerRef()
			{
			return codesMgr;
			}
		virtual void AddCharPartition(const std::string & name, const NxsPartition &);
		virtual void AddTaxPartition(const std::string & name, const NxsPartition &);
		virtual void AddTreePartition(const std::string & name, const NxsPartition &);
		virtual void AddCodeSet(const std::string & name, const NxsPartition &, bool asterisked);
		virtual void AddCodonPosSet(const std::string & name, const NxsPartition &, bool asterisked);

		/*---------------------------------------------------------------------------------------
		| Results in aliasing of the taxa, trees, and characters blocks!
		*/
		NxsAssumptionsBlock &operator=(const NxsAssumptionsBlock &other)
			{
			CopyBaseBlockContents(static_cast<const NxsBlock &>(other));
			CopyAssumptionsContents(other);
			return *this;
			}

		/*---------------------------------------------------------------------------------------
		| Results in aliasing of the taxa, trees, and characters blocks!
		|
		| passedRefOfOwnedBlock is set to this->true to avoid double deletion (other
		|	retains ownership of these blocks
		*/
		virtual void CopyAssumptionsContents(const NxsAssumptionsBlock &other)
			{
			taxa = other.taxa;
			charBlockPtr = other.charBlockPtr;
			treesBlockPtr = other.treesBlockPtr;
			charsets = other.charsets;
			taxsets = other.taxsets;
			treesets = other.treesets;
			exsets = other.exsets;
			charPartitions = other.charPartitions;
			taxPartitions = other.taxPartitions;
			treePartitions = other.treePartitions;
			def_exset = other.def_exset;
			charLinkStatus = other.charLinkStatus;
			taxaLinkStatus = other.taxaLinkStatus;
			treesLinkStatus = other.treesLinkStatus;
			passedRefOfOwnedBlock = true;
			readAs = other.readAs;
			transfMgr = other.transfMgr;
			codesMgr = other.codesMgr;
			createdSubBlocks = other.createdSubBlocks;
			polyTCountValue = other.polyTCountValue;
			gapsAsNewstate = other.gapsAsNewstate;
            blockwideCharsLinkEstablished = other.blockwideCharsLinkEstablished;
            blockwideTaxaLinkEstablished = other.blockwideTaxaLinkEstablished;
            blockwideTreesLinkEstablished = other.blockwideTreesLinkEstablished;

			codonPosSets = other.codonPosSets;
			def_codonPosSet = other.def_codonPosSet;
			codeSets = other.codeSets;
			def_codeSet = other.def_codeSet;
			}

		virtual NxsAssumptionsBlock * Clone() const
			{
			NxsAssumptionsBlock * a = new NxsAssumptionsBlock(taxa);
			*a = *this;
			return a;
			}
		virtual void SetGapsAsNewstate(bool v)
			{
			gapsAsNewstate = v;
			}


	protected:
		typedef std::vector<NxsAssumptionsBlockAPI *> VecAssumpBlockPtr;

		virtual void 		ReadCharsetDef(NxsString charset_name, NxsToken &token, bool asterisked);
		virtual void 		ReadExsetDef(NxsString charset_name, NxsToken &token, bool asterisked);
		virtual void 		ReadTreesetDef(NxsString set_name, NxsToken &token, bool asterisked);
		virtual void 		ReadTaxsetDef(NxsString set_name, NxsToken &token, bool asterisked);


		VecBlockPtr 		GetCreatedTaxaBlocks();
		virtual unsigned	TaxonLabelToNumber(NxsString s) const; /*v2.1to2.2 4 */

		void				HandleCharPartition(NxsToken& token);
		void				HandleCharSet(NxsToken& token);
		void				HandleCodeSet(NxsToken& token);
		void				HandleCodonPosSet(NxsToken& token);
		void				HandleExSet(NxsToken& token);
		void				HandleOptions(NxsToken & token);
		void				HandleTaxPartition(NxsToken& token);
		void				HandleTaxSet(NxsToken& token);
		void				HandleTreePartition(NxsToken& token);
		void				HandleTreeSet(NxsToken& token);
		void				HandleTypeSet(NxsToken& token);
		void				HandleUserType(NxsToken& token);
		void				HandleWeightSet(NxsToken& token);

		void				WriteCharSet(std::ostream &out) const
			{
			NxsWriteSetCommand("CHARSET", charsets, out);
			}
		void				WriteCharPartition(std::ostream &out) const
			{
			NxsWritePartitionCommand("CharPartition", charPartitions, out);
			}
		void				WriteExSet(std::ostream &out) const
			{
			NxsWriteSetCommand("EXSET", exsets, out, def_exset.c_str());
			}
		void				WriteOptions(std::ostream &out) const;
		void				WriteTaxPartition(std::ostream &out) const
			{
			NxsWritePartitionCommand("TaxPartition", taxPartitions, out);
			}
		void				WriteTaxSet(std::ostream &out) const
			{
			NxsWriteSetCommand("TAXSET", taxsets, out);
			}
		void				WriteTreePartition(std::ostream &out) const
			{
			NxsWritePartitionCommand("TreePartition", treePartitions, out);
			}
		void				WriteTreeSet(std::ostream &out) const
			{
			NxsWriteSetCommand("TREESET", treesets, out);
			}
		void WriteCodeSet(std::ostream &out) const
			{
			NxsWritePartitionCommand("CodeSet", codeSets, out, def_codeSet.c_str());
			}
		void WriteCodonPosSet(std::ostream &out) const
			{
			NxsWritePartitionCommand("CodonPosSet", codonPosSets, out, def_codonPosSet.c_str());
			}
		NameOfAssumpBlockAsRead	GetIDOfBlockTypeIDFromParse() const
			{
			return readAs;
			}
	private:
		NxsAssumptionsBlockAPI  *GetAssumptionsBlockForCharTitle(const char *title, NxsToken &token, const char *cmd);
		NxsAssumptionsBlockAPI  *GetAssumptionsBlockForTaxaTitle(const char *title, NxsToken &token, const char *cmd);
		NxsAssumptionsBlockAPI  *GetAssumptionsBlockForTreesTitle(const char *title, NxsToken &token, const char *cmd);

		NxsAssumptionsBlockAPI  *GetAssumptionsBlockForCharBlock(NxsCharactersBlockAPI *, NxsBlockLinkStatus, NxsToken &token);
		NxsAssumptionsBlockAPI  *GetAssumptionsBlockForTaxaBlock(NxsTaxaBlockAPI *, NxsBlockLinkStatus, NxsToken &token);
		NxsAssumptionsBlockAPI  *GetAssumptionsBlockForTreesBlock(NxsTreesBlockAPI *, NxsBlockLinkStatus, NxsToken &token);

		NxsAssumptionsBlockAPI  *CreateNewAssumptionsBlock(NxsToken &token);
		NxsAssumptionsBlockAPI *DealWithPossibleParensInCharDependentCmd(NxsToken &token, const char *cmd, const std::vector<std::string> *unsupported = NULL, bool * isVect = NULL);
		bool					HasAssumptionsBlockCommands() const;
		bool					HasSetsBlockCommands() const;
		bool					HasCodonsBlockCommands() const;


		NxsTaxaBlockAPI			*taxa;				/* pointer to the NxsTaxaBlockAPI object */
		NxsCharactersBlockAPI	*charBlockPtr;		/* pointer to the NxsCharactersBlockAPI-derived object to be notified in the event of exset changes */
		NxsTreesBlockAPI		*treesBlockPtr;		/* pointer to the NxsTreesBlockAPI-derived object to be notified in the event of exset changes */



		NxsUnsignedSetMap	charsets;
		NxsUnsignedSetMap	taxsets;
		NxsUnsignedSetMap	treesets;
		NxsUnsignedSetMap	exsets;

		NxsPartitionsByName charPartitions;
		NxsPartitionsByName taxPartitions;
		NxsPartitionsByName treePartitions;

		NxsString			def_exset;			/* the default exset */

		NxsPartitionsByName codonPosSets;
		NxsString			def_codonPosSet;	/* the default codonPosSet */
		NxsPartitionsByName codeSets;
		NxsString			def_codeSet;		/* the default codeSet */

		int					charLinkStatus;
		int					taxaLinkStatus;
		int					treesLinkStatus;
		bool				passedRefOfOwnedBlock;
		NameOfAssumpBlockAsRead	readAs;
		NxsTransformationManager transfMgr;
		NxsGeneticCodesManager	codesMgr;

		std::vector<NxsAssumptionsBlockAPI *> createdSubBlocks;
		enum PolyTCountValue
			{
			POLY_T_COUNT_UNKNOWN,
			POLY_T_COUNT_MIN,
			POLY_T_COUNT_MAX
			};
		PolyTCountValue		polyTCountValue;
		bool				gapsAsNewstate;
		bool blockwideCharsLinkEstablished;
		bool blockwideTaxaLinkEstablished;
		bool blockwideTreesLinkEstablished;

		friend class NxsAssumptionsBlockFactory;
		friend class PublicNexusReader;
	};

class NxsAssumptionsBlockFactory
	:public NxsBlockFactory
	{
	public:
		virtual NxsAssumptionsBlock * GetBlockReaderForID(const std::string & blockTypeName, NxsReader *reader, NxsToken *token);
	};

typedef NxsAssumptionsBlock AssumptionsBlock;	// for backward compatibility

#endif