Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
sc::ProcFileGrp(3)		     MPQC		    sc::ProcFileGrp(3)

NAME
       sc::ProcFileGrp - The ProcFileGrp concrete class	provides an
       implementation of FileGrp for a single processor.

SYNOPSIS
       #include	<fileproc.h>

       Inherits	sc::FileGrp.

   Public Member Functions
       ProcFileGrp (const Ref< KeyVal >	&)
       ProcFileGrp * clone ()
	   Clones the given FileGrp. The new FileGrp may need to be
	   initialized additionally.
       void set_localsize (size_t)
	   Set the size	of locally held	data.
       void * localdata	()
       void * obtain_readwrite (distsize_t offset, int size)
	   Only	one thread can have an unreleased obtain_readwrite at a	time.
       void * obtain_readonly (distsize_t offset, int size)
	   This	gives read access to the file location.	No locking is done.
       void * obtain_writeonly (distsize_t offset, int size)
	   This	gives write access to the data location. No locking is done.
       void release_readonly (void *data, distsize_t offset, int size)
	   This	is called when read access is no longer	needed.
       void release_writeonly (void *data, distsize_t offset, int size)
	   This	is called when write access is no longer needed.
       void release_readwrite (void *data, distsize_t offset, int size)
	   This	is called when read/write access is no longer needed.
       void sync ()
	   Synchronizes	all the	nodes.

       Public Member Functions inherited from sc::FileGrp
       FileGrp (const Ref< KeyVal > &)
       void open ()
	   Opens the files.
       void close ()
	   Closes the files.
       void set_filename (char *name)
	   Sets	the filename for the FileGrp.
       const char * get_filename () const
	   Returns the filename	for the	FileGrp.
       int me () const
	   Returns who I am.
       int n ()	const
	   Returns how many nodes there	are.
       virtual void set_localsize (size_t)=0
	   Set the size	of locally held	data.
       size_t localsize	()
	   Returns the amount of data residing locally on me().
       distsize_t localoffset ()
	   Returns the global offset to	this node's data.
       int size	(int node)
	   Returns the amount of data residing on node.
       distsize_t offset (int node)
	   Returns the global offset to	node's data.
       distsize_t totalsize ()
	   Returns the sum of all data allocated on all	nodes.
       virtual void activate ()
	   Activate is called before the data is to be used.
       virtual void deactivate ()
	   Deactivate is called	after the data has been	used.
       virtual void * obtain_writeonly (distsize_t offset, int size)=0
	   This	gives write access to the data location. No locking is done.
       virtual void * obtain_readwrite (distsize_t offset, int size)=0
	   Only	one thread can have an unreleased obtain_readwrite at a	time.
       virtual void * obtain_readonly (distsize_t offset, int size)=0
	   This	gives read access to the file location.	No locking is done.
       virtual void release_readonly (void *data, distsize_t offset, int
	   size)=0
	   This	is called when read access is no longer	needed.
       virtual void release_writeonly (void *data, distsize_t offset, int
	   size)=0
	   This	is called when write access is no longer needed.
       virtual void release_readwrite (void *data, distsize_t offset, int
	   size)=0
	   This	is called when read/write access is no longer needed.
       virtual void sum_reduction (double *data, distsize_t doffset, int
	   dsize)
       virtual void sum_reduction_on_node (double *data, size_t	doffset, int
	   dsize, int node=-1)
       virtual void sync ()=0
	   Synchronizes	all the	nodes.
       virtual void catchup ()
	   Processes outstanding requests.
       virtual void print (std::ostream	&o=ExEnv::out0()) const
	   Prints out information about	the object.
       virtual FileGrp * clone ()=0
	   Clones the given FileGrp. The new FileGrp may need to be
	   initialized additionally.

       Public Member Functions inherited from sc::DescribedClass
       DescribedClass (const DescribedClass &)
       DescribedClass &	operator= (const DescribedClass	&)
       ClassDesc * class_desc () const	throw ()
	   This	returns	the unique pointer to the ClassDesc corresponding to
	   the given type_info object.
       const char * class_name () const
	   Return the name of the object's exact type.
       int class_version () const
	   Return the version of the class.
       virtual void print (std::ostream	&=ExEnv::out0()) const
	   Print the object.

       Public Member Functions inherited from sc::RefCount
       int lock_ptr () const
	   Lock	this object.
       int unlock_ptr () const
	   Unlock this object.
       void use_locks (bool inVal)
	   start and stop using	locks on this object
       refcount_t nreference ()	const
	   Return the reference	count.
       refcount_t reference ()
	   Increment the reference count and return the	new count.
       refcount_t dereference ()
	   Decrement the reference count and return the	new count.
       int managed () const
       void unmanage ()
	   Turn	off the	reference counting mechanism for this object.
       int managed () const
	   Return 1 if the object is managed. Otherwise	return 0.

       Public Member Functions inherited from sc::Identity
       Identifier identifier ()
	   Return the Identifier for this argument.

   Additional Inherited	Members
       Static Public Member Functions inherited	from sc::FileGrp
       static FileGrp *	initial_filegrp	(int &argc, char **argv)
	   Create a file group.
       static FileGrp *	initial_filegrp	()
       static void set_default_filegrp (const Ref< FileGrp > &)
	   The default file group contains the primary file group to be	used
	   by an application.
       static FileGrp *	get_default_filegrp ()
	   Returns the default file group.

       Protected Member	Functions inherited from sc::FileGrp
       void obtain_local_lock (size_t start, size_t fence)
       void release_local_lock (size_t start, size_t fence)

       Protected Member	Functions inherited from sc::RefCount
       RefCount	(const RefCount	&)
       RefCount	& operator= (const RefCount &)

       Protected Attributes inherited from sc::FileGrp
       int me_
       int n_
       distsize_t * offsets_
       int debug_

Detailed Description
       The ProcFileGrp concrete	class provides an implementation of FileGrp
       for a single processor.

Member Function	Documentation
   ProcFileGrp * sc::ProcFileGrp::clone	() [virtual]
       Clones the given	FileGrp. The new FileGrp may need to be	initialized
       additionally.

       Implements sc::FileGrp.

   void	* sc::ProcFileGrp::obtain_readonly (distsize_t offset, int size)
       [virtual]
       This gives read access to the file location. No locking is done.

       Implements sc::FileGrp.

   void	* sc::ProcFileGrp::obtain_readwrite (distsize_t	offset,	int size)
       [virtual]
       Only one	thread can have	an unreleased obtain_readwrite at a time. The
       actual file region locked can be	larger than that requested. If the
       file region is already locked this will block. For this reason, data
       should be held as read/write for	as short a time	as possible.

       Implements sc::FileGrp.

   void	* sc::ProcFileGrp::obtain_writeonly (distsize_t	offset,	int size)
       [virtual]
       This gives write	access to the data location. No	locking	is done.

       Implements sc::FileGrp.

   void	sc::ProcFileGrp::release_readonly (void	* data,	distsize_t offset, int
       size) [virtual]
       This is called when read	access is no longer needed.

       Implements sc::FileGrp.

   void	sc::ProcFileGrp::release_readwrite (void * data, distsize_t offset,
       int size) [virtual]
       This is called when read/write access is	no longer needed. The data
       will be unlocked.

       Implements sc::FileGrp.

   void	sc::ProcFileGrp::release_writeonly (void * data, distsize_t offset,
       int size) [virtual]
       This is called when write access	is no longer needed.

       Implements sc::FileGrp.

   void	sc::ProcFileGrp::set_localsize (size_t)	[virtual]
       Set the size of locally held data. When data is accessed	using a	global
       offset counting starts at node 0	and proceeds up	to node	n() - 1.

       Implements sc::FileGrp.

   void	sc::ProcFileGrp::sync () [virtual]
       Synchronizes all	the nodes. Consider using this when the	way you	you
       access data changes.

       Implements sc::FileGrp.

Author
       Generated automatically by Doxygen for MPQC from	the source code.

Version	2.3.1			Tue May	13 2025		    sc::ProcFileGrp(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=sc_ProcFileGrp&sektion=3&manpath=FreeBSD+Ports+14.3.quarterly>

home | help