Search in sources :

Example 1 with InvalidDissectorException

use of nl.basjes.parse.core.exceptions.InvalidDissectorException in project logparser by nielsbasjes.

the class ApacheHttpdlogDeserializer method deserialize.

@Override
public Object deserialize(Writable writable) throws SerDeException {
    if (!(writable instanceof Text)) {
        throw new SerDeException("The input MUST be a Text line.");
    }
    linesInput++;
    try {
        currentValue.clear();
        parser.parse(currentValue, writable.toString());
    } catch (DissectionFailure dissectionFailure) {
        linesBad++;
        if (linesInput >= MINIMAL_FAIL_LINES) {
            if (100 * linesBad > MINIMAL_FAIL_PERCENTAGE * linesInput) {
                throw new SerDeException("To many bad lines: " + linesBad + " of " + linesInput + " are bad.");
            }
        }
        // Just return that this line is nothing.
        return null;
    } catch (InvalidDissectorException | MissingDissectorsException e) {
        throw new SerDeException("Cannot continue; Fix the Dissectors before retrying", e);
    }
    for (ColumnToGetterMapping ctgm : columnToGetterMappings) {
        switch(ctgm.casts) {
            case STRING:
                String currentValueString = currentValue.getString(ctgm.fieldValue);
                row.set(ctgm.index, currentValueString);
                break;
            case LONG:
                Long currentValueLong = currentValue.getLong(ctgm.fieldValue);
                row.set(ctgm.index, currentValueLong);
                break;
            case DOUBLE:
                Double currentValueDouble = currentValue.getDouble(ctgm.fieldValue);
                row.set(ctgm.index, currentValueDouble);
                break;
            default:
        }
    }
    return row;
}
Also used : MissingDissectorsException(nl.basjes.parse.core.exceptions.MissingDissectorsException) Text(org.apache.hadoop.io.Text) InvalidDissectorException(nl.basjes.parse.core.exceptions.InvalidDissectorException) SerDeException(org.apache.hadoop.hive.serde2.SerDeException) DissectionFailure(nl.basjes.parse.core.exceptions.DissectionFailure)

Example 2 with InvalidDissectorException

use of nl.basjes.parse.core.exceptions.InvalidDissectorException in project logparser by nielsbasjes.

the class Loader method getNext.

// ------------------------------------------
@Override
public Tuple getNext() throws IOException {
    Tuple tuple = null;
    try {
        if (isBuildingExample) {
            // Terminate on the next iteration
            isBuildingExample = false;
            return tupleFactory.newTuple(createPigExample());
        }
        boolean notDone = reader.nextKeyValue();
        if (!notDone) {
            return null;
        }
        ParsedRecord value = reader.getCurrentValue();
        if (value != null) {
            List<Object> values = new ArrayList<>();
            if (onlyWantListOfFields) {
                values.add(value.getString(ApacheHttpdLogfileRecordReader.FIELDS));
            } else {
                for (String fieldName : requestedFields) {
                    if (fieldName.endsWith(".*")) {
                        values.add(value.getStringSet(fieldName));
                        continue;
                    } else {
                        EnumSet<Casts> casts = reader.getParser().getCasts(fieldName);
                        if (casts != null) {
                            if (casts.contains(Casts.LONG)) {
                                values.add(value.getLong(fieldName));
                                continue;
                            }
                            if (casts.contains(Casts.DOUBLE)) {
                                values.add(value.getDouble(fieldName));
                                continue;
                            }
                        }
                    }
                    values.add(value.getString(fieldName));
                }
            }
            tuple = tupleFactory.newTuple(values);
        }
    } catch (InvalidDissectorException | MissingDissectorsException e) {
        throw new IOException("Fatal error in the parser", e);
    }
    return tuple;
}
Also used : ArrayList(java.util.ArrayList) Casts(nl.basjes.parse.core.Casts) IOException(java.io.IOException) ParsedRecord(nl.basjes.hadoop.input.ParsedRecord) InvalidDissectorException(nl.basjes.parse.core.exceptions.InvalidDissectorException) MissingDissectorsException(nl.basjes.parse.core.exceptions.MissingDissectorsException) Tuple(org.apache.pig.data.Tuple)

Example 3 with InvalidDissectorException

use of nl.basjes.parse.core.exceptions.InvalidDissectorException in project logparser by nielsbasjes.

the class Parser method assembleDissectors.

private void assembleDissectors() throws MissingDissectorsException, InvalidDissectorException {
    if (assembled) {
        // nothing to do.
        return;
    }
    if (targets == null) {
        // This happens only AFTER deserialization.
        targets = new HashMap<>(targetsMethodNames.size());
        for (Entry<String, Set<Pair<List<String>, SetterPolicy>>> entry : targetsMethodNames.entrySet()) {
            String fieldName = entry.getKey();
            Set<Pair<List<String>, SetterPolicy>> methodSet = entry.getValue();
            Set<Pair<Method, SetterPolicy>> fieldTargets = targets.computeIfAbsent(fieldName, k -> new HashSet<>());
            for (Pair<List<String>, SetterPolicy> methodStringPair : methodSet) {
                List<String> methodString = methodStringPair.getLeft();
                SetterPolicy setterPolicy = methodStringPair.getRight();
                Method method;
                String methodName = methodString.get(0);
                int numberOfParameters = methodString.size() - 1;
                Class<?>[] parameters = new Class[numberOfParameters];
                try {
                    parameters[0] = Class.forName(methodString.get(1));
                    if (numberOfParameters == 2) {
                        parameters[1] = Class.forName(methodString.get(2));
                    }
                } catch (ClassNotFoundException e) {
                    throw new InvalidDissectorException("Unable to locate class", e);
                }
                try {
                    method = recordClass.getMethod(methodName, parameters);
                    fieldTargets.add(Pair.of(method, setterPolicy));
                } catch (NoSuchMethodException e) {
                    throw new InvalidDissectorException("Unable to locate method " + methodName, e);
                }
            }
            targets.put(fieldName, fieldTargets);
        }
    }
    // In some cases a dissector may need to create a special 'extra' dissector.
    // Which in some cases this is a recursive problem
    Set<Dissector> doneDissectors = new HashSet<>(allDissectors.size() + 10);
    Set<Dissector> loopDissectors = new HashSet<>(allDissectors);
    while (!loopDissectors.isEmpty()) {
        for (final Dissector dissector : loopDissectors) {
            dissector.createAdditionalDissectors(this);
        }
        doneDissectors.addAll(loopDissectors);
        loopDissectors.clear();
        loopDissectors.addAll(allDissectors);
        loopDissectors.removeAll(doneDissectors);
    }
    // So
    // - we have a set of needed values (targets)
    // - we have a set of dissectors that can pick apart some input
    // - we know where to start from
    // - we need to know how to proceed
    assembleDissectorPhases();
    // Step 1: Acquire all potentially useful subtargets
    // We first build a set of all possible subtargets that may be useful
    // this way we can skip anything we know not to be useful
    Set<String> needed = new HashSet<>(getNeeded());
    // The root name is an empty string
    needed.add(rootType + ':');
    LOG.debug("Root: >>>{}:<<<", rootType);
    Set<String> allPossibleSubtargets = new HashSet<>();
    for (String need : needed) {
        String neededName = need.substring(need.indexOf(':') + 1);
        LOG.debug("Needed  : >>>{}<<<", neededName);
        String[] needs = neededName.split("\\.");
        StringBuilder sb = new StringBuilder(need.length());
        for (String part : needs) {
            if (sb.length() == 0 || part.length() == 0) {
                sb.append(part);
            } else {
                sb.append('.').append(part);
            }
            allPossibleSubtargets.add(sb.toString());
            LOG.debug("Possible: >>>{}<<<", sb);
        }
    }
    // Step 2: From the root we explore all possibly useful trees (recursively)
    compiledDissectors = new HashMap<>();
    usefulIntermediateFields = new HashSet<>();
    Set<String> locatedTargets = new HashSet<>();
    // The root name is an empty string
    findUsefulDissectorsFromField(allPossibleSubtargets, locatedTargets, rootType, "", true);
    // Step 3: Inform all dissectors to prepare for the run
    for (Set<DissectorPhase> dissectorPhases : compiledDissectors.values()) {
        for (DissectorPhase dissectorPhase : dissectorPhases) {
            dissectorPhase.instance.prepareForRun();
        }
    }
    if (compiledDissectors == null || compiledDissectors.isEmpty()) {
        throw new MissingDissectorsException("There are no dissectors at all which makes this a completely useless parser.");
    }
    if (failOnMissingDissectors) {
        // Step 4: As a final step we verify that every required input can be found
        Set<String> missingDissectors = getTheMissingFields(locatedTargets);
        if (!missingDissectors.isEmpty()) {
            StringBuilder allMissing = new StringBuilder(missingDissectors.size() * 64);
            for (String missing : missingDissectors) {
                allMissing.append('\n').append(missing);
            }
            throw new MissingDissectorsException(allMissing.toString());
        }
    }
    assembled = true;
}
Also used : HashSet(java.util.HashSet) EnumSet(java.util.EnumSet) Set(java.util.Set) InvalidDissectorException(nl.basjes.parse.core.exceptions.InvalidDissectorException) ArrayList(java.util.ArrayList) List(java.util.List) Pair(org.apache.commons.lang3.tuple.Pair) HashSet(java.util.HashSet) FatalErrorDuringCallOfSetterMethod(nl.basjes.parse.core.exceptions.FatalErrorDuringCallOfSetterMethod) Method(java.lang.reflect.Method) MissingDissectorsException(nl.basjes.parse.core.exceptions.MissingDissectorsException)

Example 4 with InvalidDissectorException

use of nl.basjes.parse.core.exceptions.InvalidDissectorException in project yauaa by nielsbasjes.

the class TestDissectUserAgent method testBadInit.

@Test
void testBadInit() {
    final InvalidDissectorException invalidDissectorException = assertThrows(InvalidDissectorException.class, () -> {
        final UserAgentDissector userAgentDissector = new UserAgentDissector();
        userAgentDissector.initializeNewInstance(new DissectorTester.DummyDissector());
    });
    assertTrue(invalidDissectorException.getMessage().startsWith("The provided instance of the dissector is a nl.basjes.parse.core.test.DissectorTester.DummyDissector"), invalidDissectorException.getMessage());
}
Also used : DissectorTester(nl.basjes.parse.core.test.DissectorTester) InvalidDissectorException(nl.basjes.parse.core.exceptions.InvalidDissectorException) Test(org.junit.jupiter.api.Test)

Example 5 with InvalidDissectorException

use of nl.basjes.parse.core.exceptions.InvalidDissectorException in project yauaa by nielsbasjes.

the class TestDissectUserAgent method testBadInitNull.

@Test
void testBadInitNull() {
    final InvalidDissectorException invalidDissectorException = assertThrows(InvalidDissectorException.class, () -> {
        final UserAgentDissector userAgentDissector = new UserAgentDissector();
        userAgentDissector.initializeNewInstance(null);
    });
    assertTrue(invalidDissectorException.getMessage().startsWith("The provided instance of the dissector is a <<<null>>>"), invalidDissectorException.getMessage());
}
Also used : InvalidDissectorException(nl.basjes.parse.core.exceptions.InvalidDissectorException) Test(org.junit.jupiter.api.Test)

Aggregations

InvalidDissectorException (nl.basjes.parse.core.exceptions.InvalidDissectorException)8 MissingDissectorsException (nl.basjes.parse.core.exceptions.MissingDissectorsException)5 IOException (java.io.IOException)3 ArrayList (java.util.ArrayList)2 Test (org.junit.jupiter.api.Test)2 Method (java.lang.reflect.Method)1 EnumSet (java.util.EnumSet)1 HashSet (java.util.HashSet)1 List (java.util.List)1 Set (java.util.Set)1 ParsedRecord (nl.basjes.hadoop.input.ParsedRecord)1 Casts (nl.basjes.parse.core.Casts)1 DissectionFailure (nl.basjes.parse.core.exceptions.DissectionFailure)1 FatalErrorDuringCallOfSetterMethod (nl.basjes.parse.core.exceptions.FatalErrorDuringCallOfSetterMethod)1 DissectorTester (nl.basjes.parse.core.test.DissectorTester)1 Pair (org.apache.commons.lang3.tuple.Pair)1 Configuration (org.apache.hadoop.conf.Configuration)1 SerDeException (org.apache.hadoop.hive.serde2.SerDeException)1 Text (org.apache.hadoop.io.Text)1 Tuple (org.apache.pig.data.Tuple)1