Skip to content
Snippets Groups Projects
Select Git revision
  • df4b5db6118ebfe14c00469befbeeb1e9d57c21a
  • master default protected
  • fix-words-ann
  • wccl-rules-migration
  • develop
5 results

position.cpp

Blame
  • vargetter.h 1.60 KiB
    #ifndef LIBWCCL_OPS_FUNCTIONS_VARGETTER_H
    #define LIBWCCL_OPS_FUNCTIONS_VARGETTER_H
    
    #include <libwccl/ops/function.h>
    
    namespace Wccl {
    
    /**
     * Operator that returns value of a variable of given type T
     */
    template<class T>
    class VarGetter : public Function<T>
    {
    public:
    	VarGetter(const VariableAccessor<T>& var_acc)
    		: var_acc_(var_acc)
    	{
    	}
    	
    	/**
    	 * @returns Function name for variable getter: "getvar"
    	 */
    	std::string raw_name() const {
    		return "getvar";
    	}
    
    	/**
    	 * @returns String representation of the variable getter which is
    	 * equal to string representation of the underlying variable.
    	 */
    	std::string to_string(const Corpus2::Tagset&) const;
    
    protected:
    	/**
    	 * Writes string representation of the variable getter which is
    	 * equal to string representation of the underlying variable.
    	 * @returns Stream written to
    	 */
    	std::ostream& write_to(std::ostream& ostream) const;
    
    	/**
    	 * Return value held by the underlying variable.
    	 */
    	FunctionBase::BaseRetValPtr apply_internal(const FunExecContext& context) const;
    
    private:
    	const VariableAccessor<T> var_acc_;
    };
    
    //
    // ----- Implementation -----
    //
    
    template <class T>
    FunctionBase::BaseRetValPtr VarGetter<T>::apply_internal(const FunExecContext& context) const {
    	return context.variables()->get_fast(var_acc_);
    }
    
    template <class T>
    std::string VarGetter<T>::to_string(const Corpus2::Tagset &) const {
    	return T::var_repr(var_acc_.get_name());
    }
    
    template <class T>
    std::ostream& VarGetter<T>::write_to(std::ostream& ostream) const {
    	return ostream << T::var_repr(var_acc_.get_name());
    }
    
    } /* end ns Wccl */
    
    #endif // LIBWCCL_OPS_FUNCTIONS_VARGETTER_H