summaryrefslogblamecommitdiff
path: root/hscript/key.hh
blob: 4705c59f2891b17bc0d74e700d700cc436e48e6e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                           


                         










                                                                               




                                                                            
                                                                          

                                                                   
                                
 
                                                     
                                                                 
       
                               

  

 

      
/*
 * key.hh - Definition of the base Key class
 * libhscript, the HorizonScript library for
 * Project Horizon
 *
 * Copyright (c) 2019 Adélie Linux and contributors.  All rights reserved.
 * This code is licensed under the AGPL 3.0 license, as noted in the
 * LICENSE-code file in the root directory of this repository.
 *
 * SPDX-License-Identifier: AGPL-3.0-only
 */

#ifndef __HSCRIPT_KEY_HH_
#define __HSCRIPT_KEY_HH_

#include <string>

namespace Horizon {
namespace Keys {

/*! Base Key class, used by all Keys.
 * A Getter method is not provided in this base Key class, because each Key may
 * return a different type of data.  For example, `network` may return `bool`.
 */
class Key {
public:
    virtual ~Key();

    /*! Create the Key object with the specified data as the entire value.
     * @returns nullptr if data is unparsable, otherwise a pointer to a Key.
     */
    static Key *parseFromData(std::string, int*, int*) { return nullptr; }

    /*! Determines if the data associated with the Key is valid. */
    virtual bool validate() = 0;

    /*! Executes the action associated with this Key.
     * @note Will always return `false` if `validate` is `false`.
     */
    virtual bool execute() = 0;
};

}
}

#endif