/*
 * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
 * or more contributor license agreements. Licensed under the "Elastic License
 * 2.0", the "GNU Affero General Public License v3.0 only", and the "Server Side
 * Public License v 1"; you may not use this file except in compliance with, at
 * your election, the "Elastic License 2.0", the "GNU Affero General Public
 * License v3.0 only", or the "Server Side Public License, v 1".
 */

package org.elasticsearch.painless;

import org.elasticsearch.painless.spi.annotation.WhitelistAnnotationParser;

import java.util.Map;

public class AnnotationTestObject {

    public record TestAnnotation(String one, String two, String three) {
        public static final String NAME = "test_annotation";
    }

    public static class TestAnnotationParser implements WhitelistAnnotationParser {

        public static final TestAnnotationParser INSTANCE = new TestAnnotationParser();

        private TestAnnotationParser() {

        }

        @Override
        public Object parse(Map<String, String> arguments) {
            if (arguments.size() != 3) {
                throw new IllegalArgumentException("expected three arguments");
            }

            String one = arguments.get("one");

            if (one == null) {
                throw new IllegalArgumentException("missing one");
            }

            String two = arguments.get("two");

            if (two == null) {
                throw new IllegalArgumentException("missing two");
            }

            String three = arguments.get("three");

            if (three == null) {
                throw new IllegalArgumentException("missing three");
            }

            return new TestAnnotation(one, two, three);
        }
    }

    public void deprecatedMethod() {

    }

    public void annotatedTestMethod() {

    }

    public void annotatedMultipleMethod() {

    }
}
