├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── feature_request.yaml ├── codecov.yml ├── release.yml └── workflows │ ├── benchmarks.yml │ ├── ci.yml │ └── soundness.yml ├── .gitignore ├── .mailmap ├── .spi.yml ├── .swift-format ├── .swift-version ├── Benchmarks └── OracleBenchmarks │ └── OracleBenchmarks.swift ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE ├── NOTICE.txt ├── Package.resolved ├── Package.swift ├── README.md ├── SECURITY.md ├── Snippets ├── OracleClient.swift └── OracleConnection.swift ├── Sources ├── OracleConnectionPoolModule │ ├── ConnectionIDGenerator.swift │ ├── ConnectionLease.swift │ ├── ConnectionPool.swift │ ├── ConnectionPoolError.swift │ ├── ConnectionPoolObservabilityDelegate.swift │ ├── ConnectionRequest.swift │ ├── LICENSE │ ├── Max2Sequence.swift │ ├── NIOLock.swift │ ├── NIOLockedValueBox.swift │ ├── NoKeepAliveBehavior.swift │ ├── PoolStateMachine+ConnectionGroup.swift │ ├── PoolStateMachine+ConnectionState.swift │ ├── PoolStateMachine+RequestQueue.swift │ ├── PoolStateMachine.swift │ └── TinyFastSequence.swift ├── OracleMockServer │ ├── Messages │ │ ├── AuthenticatedMessage.swift │ │ ├── AuthenticationChallengeMessage.swift │ │ ├── CloseMessage.swift │ │ ├── ConnectMessage.swift │ │ ├── SelectManyFromDualMessage.swift │ │ ├── SelectOneFromDualMessage.swift │ │ ├── ServerMessage.swift │ │ └── ServerMessageEncoder.swift │ └── OracleMockServer.swift ├── OracleNIO │ ├── AuthenticationMode.swift │ ├── Capabilities.swift │ ├── Connection │ │ ├── OracleClient+PooledConnection.swift │ │ ├── OracleConnection+BatchExecution.swift │ │ ├── OracleConnection+Configuration.swift │ │ ├── OracleConnection.swift │ │ ├── OracleConnectionProtocol.swift │ │ └── OracleTransactionConnection.swift │ ├── ConnectionParameters.swift │ ├── ConnectionStateMachine │ │ ├── AuthenticationStateMachine.swift │ │ ├── ConnectionStateMachine.swift │ │ ├── RowStreamStateMachine.swift │ │ └── StatementStateMachine.swift │ ├── Constants.swift │ ├── DBType.swift │ ├── Data │ │ ├── Bool+OracleCodable.swift │ │ ├── ByteBuffer+OracleCodable.swift │ │ ├── Bytes+OracleCodable.swift │ │ ├── Cursor.swift │ │ ├── Data+OracleCodable.swift │ │ ├── Date+OracleCodable.swift │ │ ├── Double+OracleCodable.swift │ │ ├── Float+OracleCodable.swift │ │ ├── Int+OracleCodable.swift │ │ ├── IntervalDS+OracleCodable.swift │ │ ├── JSON │ │ │ ├── OracleJSON+Decoding.swift │ │ │ ├── OracleJSON+Encoding.swift │ │ │ ├── OracleJSON.swift │ │ │ ├── OracleJSONParser.swift │ │ │ ├── OracleJSONStorage.swift │ │ │ └── OracleJSONWriter.swift │ │ ├── LOB.swift │ │ ├── OracleNumber.swift │ │ ├── OracleNumeric.swift │ │ ├── OracleObject.swift │ │ ├── OracleRef.swift │ │ ├── OracleVector.swift │ │ ├── OracleXML.swift │ │ ├── RowID.swift │ │ ├── String+OracleCodable.swift │ │ └── UUID+OracleCodable.swift │ ├── DataType.swift │ ├── Documentation.docc │ │ ├── Documentation.md │ │ ├── connect-to-adb.md │ │ └── stored-procedures.md │ ├── Extensions │ │ ├── Array+Random.swift │ │ ├── ByteBuffer │ │ │ ├── ByteBuffer+EmptyOracleData.swift │ │ │ ├── ByteBuffer+OSON.swift │ │ │ ├── ByteBuffer+OracleBackendMessageID.swift │ │ │ ├── ByteBuffer+PrepareSend.swift │ │ │ ├── ByteBuffer+QLocator.swift │ │ │ ├── ByteBuffer+ReadOracleBytes.swift │ │ │ ├── ByteBuffer+ReadStringWithFormat.swift │ │ │ ├── ByteBuffer+SB.swift │ │ │ ├── ByteBuffer+ThrowingMoveReaderIndex.swift │ │ │ ├── ByteBuffer+ThrowingReadBytes.swift │ │ │ ├── ByteBuffer+ThrowingReadInteger.swift │ │ │ ├── ByteBuffer+ThrowingReadString.swift │ │ │ └── ByteBuffer+UB.swift │ │ ├── Data+hexString.swift │ │ ├── Logging+Oracle.swift │ │ └── Optional+ValueOrError.swift │ ├── Helper │ │ ├── Crypto.swift │ │ └── TinySequence.swift │ ├── MessageType.swift │ ├── Messages │ │ ├── BackendError.swift │ │ ├── Coding │ │ │ ├── MissingDataDecodingError.swift │ │ │ ├── OracleBackendMessageDecoder.swift │ │ │ ├── OracleFrontendMessageEncoder.swift │ │ │ ├── OracleFrontendMessagePostProcessor.swift │ │ │ ├── OracleMessageDecodingError.swift │ │ │ └── OraclePartialDecodingError.swift │ │ ├── DataRow.swift │ │ ├── DescribeInfo.swift │ │ ├── OracleBackendMessage+Accept.swift │ │ ├── OracleBackendMessage+BitVector.swift │ │ ├── OracleBackendMessage+DataTypes.swift │ │ ├── OracleBackendMessage+InOutVector.swift │ │ ├── OracleBackendMessage+LOBData.swift │ │ ├── OracleBackendMessage+Parameter.swift │ │ ├── OracleBackendMessage+Protocol.swift │ │ ├── OracleBackendMessage+RowData.swift │ │ ├── OracleBackendMessage+RowHeader.swift │ │ ├── OracleBackendMessage+ServerSidePiggyback.swift │ │ ├── OracleBackendMessage+Status.swift │ │ └── OracleBackendMessage.swift │ ├── OracleCell.swift │ ├── OracleChannelHandler.swift │ ├── OracleCodable.swift │ ├── OracleColumn.swift │ ├── OracleDecodingError.swift │ ├── OracleErrorInfo.swift │ ├── OracleEventsHandler.swift │ ├── OracleRow.swift │ ├── OracleRowSequence.swift │ ├── OracleRowStream.swift │ ├── OracleSQLError.swift │ ├── OracleTask.swift │ ├── OracleTransactionError.swift │ ├── OracleVersion.swift │ ├── PacketType.swift │ ├── Pool │ │ ├── ConnectionFactory.swift │ │ ├── OracleClient.swift │ │ └── OracleClientMetrics.swift │ ├── Purity.swift │ ├── Statements │ │ ├── OracleBindings.swift │ │ ├── OraclePreparedStatement.swift │ │ └── OracleStatement.swift │ ├── TLSConfiguration+Oracle.swift │ ├── Utilities │ │ ├── AuthHeaderDateFormat.swift │ │ ├── OracleHexDump.swift │ │ ├── OracleTraceHandler.swift │ │ └── SendOnceBox.swift │ ├── VariadicGenerics.swift │ └── _TNSDataType.swift ├── OracleNIOMacros │ └── Statement.swift └── OracleNIOMacrosPlugin │ ├── OracleNIOMacrosPlugin.swift │ └── StatementMacro.swift ├── Tests ├── IntegrationTests │ ├── BatchExecutionTests.swift │ ├── BugReportTests.swift │ ├── CustomTypeTests.swift │ ├── Data │ │ ├── Isaac_Newton-Opticks.txt │ │ └── ewallet.pem │ ├── DistributedTracingTests.swift │ ├── IntegrationTest.swift │ ├── JSONTests.swift │ ├── LOBTests.swift │ ├── OracleClientTests.swift │ ├── OracleNIOTests.swift │ ├── OracleTLSConfigurationTests.swift │ ├── PreparedStatementTests.swift │ ├── TransactionTests.swift │ ├── Utility.swift │ ├── VectorTests.swift │ └── XMLTests.swift ├── OracleMockServerTests │ └── ServerTests.swift ├── OracleNIOMacrosTests │ └── OracleStatementMacroTests.swift └── OracleNIOTests │ ├── CapabilitiesTests.swift │ ├── ConfigurationTests.swift │ ├── ConnectionStateMachine │ ├── AuthenticationStateMachineTests.swift │ ├── ConnectionStateMachineTests.swift │ └── StatementStateMachineTests.swift │ ├── Data │ ├── ArrayKeyTests.swift │ ├── OracleJSONDecoderTests.swift │ ├── OracleJSONEncoderTests.swift │ ├── OracleJSONParserTests.swift │ ├── OracleJSONWriterTests.swift │ ├── OracleVectorTests.swift │ ├── RowIDTests.swift │ └── StringTests.swift │ ├── Extensions │ └── ByteBufferExtensionTests.swift │ ├── Helper │ └── TinySequenceTests.swift │ ├── Messages │ ├── AcceptMessageTests.swift │ ├── AuthenticationPhaseTwoMessageTests.swift │ ├── ControlTests.swift │ ├── DataRowTests.swift │ ├── OracleFrontendMessageEncoderTests.swift │ └── RowDataTests.swift │ ├── OracleCodableTests.swift │ ├── OracleConnectionTests.swift │ ├── OracleNumberTests.swift │ ├── OracleRowSequenceTests.swift │ ├── OracleRowStreamTests.swift │ ├── OracleSQLErrorTests.swift │ ├── OracleStatementTests.swift │ ├── StatementContextTests.swift │ ├── TestUtils │ ├── Capabilities+TestUtils.swift │ ├── ConnectionAction+TestUtils.swift │ ├── Data+Hex.swift │ ├── ExtendedQueryContext+TestUtils.swift │ ├── OracleBackendMessage+TestUtils.swift │ ├── OracleBackendMessageDecoder+TestUtils.swift │ ├── OracleBackendMessageEncoder.swift │ ├── OracleConnection+TestUtils.swift │ ├── OracleFrontendMessage.swift │ ├── OracleFrontendMessageDecoder.swift │ ├── OraclePartialDecodingError+TestUtils.swift │ ├── OracleRowStream+TestUtils.swift │ ├── QueryResult+TestUtils.swift │ ├── ReverseByteToMessageHandler.swift │ └── ReverseMessageToByteHandler.swift │ └── Utilities │ ├── AuthHeaderDateFormatTests.swift │ ├── OracleHexDumpTests.swift │ └── OracleTraceHandlerTests.swift ├── docker-compose.yaml └── scripts ├── check-for-broken-symlinks.sh ├── check-for-unacceptable-language.sh ├── check-license-headers.sh ├── generate-contributors-list.sh ├── run-swift-format.sh ├── soundness.sh └── unacceptable-language.txt /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/benchmarks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/.github/workflows/benchmarks.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/soundness.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/.github/workflows/soundness.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/.mailmap -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/.spi.yml -------------------------------------------------------------------------------- /.swift-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/.swift-format -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 6.2.0 -------------------------------------------------------------------------------- /Benchmarks/OracleBenchmarks/OracleBenchmarks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Benchmarks/OracleBenchmarks/OracleBenchmarks.swift -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @lovetodream 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Snippets/OracleClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Snippets/OracleClient.swift -------------------------------------------------------------------------------- /Snippets/OracleConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Snippets/OracleConnection.swift -------------------------------------------------------------------------------- /Sources/OracleConnectionPoolModule/ConnectionIDGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleConnectionPoolModule/ConnectionIDGenerator.swift -------------------------------------------------------------------------------- /Sources/OracleConnectionPoolModule/ConnectionLease.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleConnectionPoolModule/ConnectionLease.swift -------------------------------------------------------------------------------- /Sources/OracleConnectionPoolModule/ConnectionPool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleConnectionPoolModule/ConnectionPool.swift -------------------------------------------------------------------------------- /Sources/OracleConnectionPoolModule/ConnectionPoolError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleConnectionPoolModule/ConnectionPoolError.swift -------------------------------------------------------------------------------- /Sources/OracleConnectionPoolModule/ConnectionPoolObservabilityDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleConnectionPoolModule/ConnectionPoolObservabilityDelegate.swift -------------------------------------------------------------------------------- /Sources/OracleConnectionPoolModule/ConnectionRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleConnectionPoolModule/ConnectionRequest.swift -------------------------------------------------------------------------------- /Sources/OracleConnectionPoolModule/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleConnectionPoolModule/LICENSE -------------------------------------------------------------------------------- /Sources/OracleConnectionPoolModule/Max2Sequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleConnectionPoolModule/Max2Sequence.swift -------------------------------------------------------------------------------- /Sources/OracleConnectionPoolModule/NIOLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleConnectionPoolModule/NIOLock.swift -------------------------------------------------------------------------------- /Sources/OracleConnectionPoolModule/NIOLockedValueBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleConnectionPoolModule/NIOLockedValueBox.swift -------------------------------------------------------------------------------- /Sources/OracleConnectionPoolModule/NoKeepAliveBehavior.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleConnectionPoolModule/NoKeepAliveBehavior.swift -------------------------------------------------------------------------------- /Sources/OracleConnectionPoolModule/PoolStateMachine+ConnectionGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleConnectionPoolModule/PoolStateMachine+ConnectionGroup.swift -------------------------------------------------------------------------------- /Sources/OracleConnectionPoolModule/PoolStateMachine+ConnectionState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleConnectionPoolModule/PoolStateMachine+ConnectionState.swift -------------------------------------------------------------------------------- /Sources/OracleConnectionPoolModule/PoolStateMachine+RequestQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleConnectionPoolModule/PoolStateMachine+RequestQueue.swift -------------------------------------------------------------------------------- /Sources/OracleConnectionPoolModule/PoolStateMachine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleConnectionPoolModule/PoolStateMachine.swift -------------------------------------------------------------------------------- /Sources/OracleConnectionPoolModule/TinyFastSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleConnectionPoolModule/TinyFastSequence.swift -------------------------------------------------------------------------------- /Sources/OracleMockServer/Messages/AuthenticatedMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleMockServer/Messages/AuthenticatedMessage.swift -------------------------------------------------------------------------------- /Sources/OracleMockServer/Messages/AuthenticationChallengeMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleMockServer/Messages/AuthenticationChallengeMessage.swift -------------------------------------------------------------------------------- /Sources/OracleMockServer/Messages/CloseMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleMockServer/Messages/CloseMessage.swift -------------------------------------------------------------------------------- /Sources/OracleMockServer/Messages/ConnectMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleMockServer/Messages/ConnectMessage.swift -------------------------------------------------------------------------------- /Sources/OracleMockServer/Messages/SelectManyFromDualMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleMockServer/Messages/SelectManyFromDualMessage.swift -------------------------------------------------------------------------------- /Sources/OracleMockServer/Messages/SelectOneFromDualMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleMockServer/Messages/SelectOneFromDualMessage.swift -------------------------------------------------------------------------------- /Sources/OracleMockServer/Messages/ServerMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleMockServer/Messages/ServerMessage.swift -------------------------------------------------------------------------------- /Sources/OracleMockServer/Messages/ServerMessageEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleMockServer/Messages/ServerMessageEncoder.swift -------------------------------------------------------------------------------- /Sources/OracleMockServer/OracleMockServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleMockServer/OracleMockServer.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/AuthenticationMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/AuthenticationMode.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Capabilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Capabilities.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Connection/OracleClient+PooledConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Connection/OracleClient+PooledConnection.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Connection/OracleConnection+BatchExecution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Connection/OracleConnection+BatchExecution.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Connection/OracleConnection+Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Connection/OracleConnection+Configuration.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Connection/OracleConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Connection/OracleConnection.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Connection/OracleConnectionProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Connection/OracleConnectionProtocol.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Connection/OracleTransactionConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Connection/OracleTransactionConnection.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/ConnectionParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/ConnectionParameters.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/ConnectionStateMachine/AuthenticationStateMachine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/ConnectionStateMachine/AuthenticationStateMachine.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/ConnectionStateMachine/ConnectionStateMachine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/ConnectionStateMachine/ConnectionStateMachine.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/ConnectionStateMachine/RowStreamStateMachine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/ConnectionStateMachine/RowStreamStateMachine.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/ConnectionStateMachine/StatementStateMachine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/ConnectionStateMachine/StatementStateMachine.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Constants.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/DBType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/DBType.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/Bool+OracleCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/Bool+OracleCodable.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/ByteBuffer+OracleCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/ByteBuffer+OracleCodable.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/Bytes+OracleCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/Bytes+OracleCodable.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/Cursor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/Cursor.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/Data+OracleCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/Data+OracleCodable.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/Date+OracleCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/Date+OracleCodable.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/Double+OracleCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/Double+OracleCodable.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/Float+OracleCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/Float+OracleCodable.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/Int+OracleCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/Int+OracleCodable.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/IntervalDS+OracleCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/IntervalDS+OracleCodable.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/JSON/OracleJSON+Decoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/JSON/OracleJSON+Decoding.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/JSON/OracleJSON+Encoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/JSON/OracleJSON+Encoding.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/JSON/OracleJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/JSON/OracleJSON.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/JSON/OracleJSONParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/JSON/OracleJSONParser.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/JSON/OracleJSONStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/JSON/OracleJSONStorage.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/JSON/OracleJSONWriter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/JSON/OracleJSONWriter.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/LOB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/LOB.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/OracleNumber.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/OracleNumber.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/OracleNumeric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/OracleNumeric.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/OracleObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/OracleObject.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/OracleRef.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/OracleRef.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/OracleVector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/OracleVector.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/OracleXML.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/OracleXML.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/RowID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/RowID.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/String+OracleCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/String+OracleCodable.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Data/UUID+OracleCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Data/UUID+OracleCodable.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/DataType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/DataType.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Documentation.docc/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Documentation.docc/Documentation.md -------------------------------------------------------------------------------- /Sources/OracleNIO/Documentation.docc/connect-to-adb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Documentation.docc/connect-to-adb.md -------------------------------------------------------------------------------- /Sources/OracleNIO/Documentation.docc/stored-procedures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Documentation.docc/stored-procedures.md -------------------------------------------------------------------------------- /Sources/OracleNIO/Extensions/Array+Random.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Extensions/Array+Random.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+EmptyOracleData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+EmptyOracleData.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+OSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+OSON.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+OracleBackendMessageID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+OracleBackendMessageID.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+PrepareSend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+PrepareSend.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+QLocator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+QLocator.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+ReadOracleBytes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+ReadOracleBytes.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+ReadStringWithFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+ReadStringWithFormat.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+SB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+SB.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+ThrowingMoveReaderIndex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+ThrowingMoveReaderIndex.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+ThrowingReadBytes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+ThrowingReadBytes.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+ThrowingReadInteger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+ThrowingReadInteger.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+ThrowingReadString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+ThrowingReadString.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+UB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Extensions/ByteBuffer/ByteBuffer+UB.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Extensions/Data+hexString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Extensions/Data+hexString.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Extensions/Logging+Oracle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Extensions/Logging+Oracle.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Extensions/Optional+ValueOrError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Extensions/Optional+ValueOrError.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Helper/Crypto.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Helper/Crypto.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Helper/TinySequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Helper/TinySequence.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/MessageType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/MessageType.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Messages/BackendError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Messages/BackendError.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Messages/Coding/MissingDataDecodingError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Messages/Coding/MissingDataDecodingError.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Messages/Coding/OracleBackendMessageDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Messages/Coding/OracleBackendMessageDecoder.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Messages/Coding/OracleFrontendMessageEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Messages/Coding/OracleFrontendMessageEncoder.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Messages/Coding/OracleFrontendMessagePostProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Messages/Coding/OracleFrontendMessagePostProcessor.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Messages/Coding/OracleMessageDecodingError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Messages/Coding/OracleMessageDecodingError.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Messages/Coding/OraclePartialDecodingError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Messages/Coding/OraclePartialDecodingError.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Messages/DataRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Messages/DataRow.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Messages/DescribeInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Messages/DescribeInfo.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Messages/OracleBackendMessage+Accept.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Messages/OracleBackendMessage+Accept.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Messages/OracleBackendMessage+BitVector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Messages/OracleBackendMessage+BitVector.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Messages/OracleBackendMessage+DataTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Messages/OracleBackendMessage+DataTypes.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Messages/OracleBackendMessage+InOutVector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Messages/OracleBackendMessage+InOutVector.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Messages/OracleBackendMessage+LOBData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Messages/OracleBackendMessage+LOBData.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Messages/OracleBackendMessage+Parameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Messages/OracleBackendMessage+Parameter.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Messages/OracleBackendMessage+Protocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Messages/OracleBackendMessage+Protocol.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Messages/OracleBackendMessage+RowData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Messages/OracleBackendMessage+RowData.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Messages/OracleBackendMessage+RowHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Messages/OracleBackendMessage+RowHeader.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Messages/OracleBackendMessage+ServerSidePiggyback.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Messages/OracleBackendMessage+ServerSidePiggyback.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Messages/OracleBackendMessage+Status.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Messages/OracleBackendMessage+Status.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Messages/OracleBackendMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Messages/OracleBackendMessage.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/OracleCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/OracleCell.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/OracleChannelHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/OracleChannelHandler.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/OracleCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/OracleCodable.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/OracleColumn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/OracleColumn.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/OracleDecodingError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/OracleDecodingError.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/OracleErrorInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/OracleErrorInfo.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/OracleEventsHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/OracleEventsHandler.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/OracleRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/OracleRow.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/OracleRowSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/OracleRowSequence.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/OracleRowStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/OracleRowStream.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/OracleSQLError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/OracleSQLError.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/OracleTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/OracleTask.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/OracleTransactionError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/OracleTransactionError.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/OracleVersion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/OracleVersion.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/PacketType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/PacketType.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Pool/ConnectionFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Pool/ConnectionFactory.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Pool/OracleClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Pool/OracleClient.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Pool/OracleClientMetrics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Pool/OracleClientMetrics.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Purity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Purity.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Statements/OracleBindings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Statements/OracleBindings.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Statements/OraclePreparedStatement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Statements/OraclePreparedStatement.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Statements/OracleStatement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Statements/OracleStatement.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/TLSConfiguration+Oracle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/TLSConfiguration+Oracle.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Utilities/AuthHeaderDateFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Utilities/AuthHeaderDateFormat.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Utilities/OracleHexDump.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Utilities/OracleHexDump.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Utilities/OracleTraceHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Utilities/OracleTraceHandler.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/Utilities/SendOnceBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/Utilities/SendOnceBox.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/VariadicGenerics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/VariadicGenerics.swift -------------------------------------------------------------------------------- /Sources/OracleNIO/_TNSDataType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIO/_TNSDataType.swift -------------------------------------------------------------------------------- /Sources/OracleNIOMacros/Statement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIOMacros/Statement.swift -------------------------------------------------------------------------------- /Sources/OracleNIOMacrosPlugin/OracleNIOMacrosPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIOMacrosPlugin/OracleNIOMacrosPlugin.swift -------------------------------------------------------------------------------- /Sources/OracleNIOMacrosPlugin/StatementMacro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Sources/OracleNIOMacrosPlugin/StatementMacro.swift -------------------------------------------------------------------------------- /Tests/IntegrationTests/BatchExecutionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/IntegrationTests/BatchExecutionTests.swift -------------------------------------------------------------------------------- /Tests/IntegrationTests/BugReportTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/IntegrationTests/BugReportTests.swift -------------------------------------------------------------------------------- /Tests/IntegrationTests/CustomTypeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/IntegrationTests/CustomTypeTests.swift -------------------------------------------------------------------------------- /Tests/IntegrationTests/Data/Isaac_Newton-Opticks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/IntegrationTests/Data/Isaac_Newton-Opticks.txt -------------------------------------------------------------------------------- /Tests/IntegrationTests/Data/ewallet.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/IntegrationTests/Data/ewallet.pem -------------------------------------------------------------------------------- /Tests/IntegrationTests/DistributedTracingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/IntegrationTests/DistributedTracingTests.swift -------------------------------------------------------------------------------- /Tests/IntegrationTests/IntegrationTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/IntegrationTests/IntegrationTest.swift -------------------------------------------------------------------------------- /Tests/IntegrationTests/JSONTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/IntegrationTests/JSONTests.swift -------------------------------------------------------------------------------- /Tests/IntegrationTests/LOBTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/IntegrationTests/LOBTests.swift -------------------------------------------------------------------------------- /Tests/IntegrationTests/OracleClientTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/IntegrationTests/OracleClientTests.swift -------------------------------------------------------------------------------- /Tests/IntegrationTests/OracleNIOTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/IntegrationTests/OracleNIOTests.swift -------------------------------------------------------------------------------- /Tests/IntegrationTests/OracleTLSConfigurationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/IntegrationTests/OracleTLSConfigurationTests.swift -------------------------------------------------------------------------------- /Tests/IntegrationTests/PreparedStatementTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/IntegrationTests/PreparedStatementTests.swift -------------------------------------------------------------------------------- /Tests/IntegrationTests/TransactionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/IntegrationTests/TransactionTests.swift -------------------------------------------------------------------------------- /Tests/IntegrationTests/Utility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/IntegrationTests/Utility.swift -------------------------------------------------------------------------------- /Tests/IntegrationTests/VectorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/IntegrationTests/VectorTests.swift -------------------------------------------------------------------------------- /Tests/IntegrationTests/XMLTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/IntegrationTests/XMLTests.swift -------------------------------------------------------------------------------- /Tests/OracleMockServerTests/ServerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleMockServerTests/ServerTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOMacrosTests/OracleStatementMacroTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOMacrosTests/OracleStatementMacroTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/CapabilitiesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/CapabilitiesTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/ConfigurationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/ConfigurationTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/ConnectionStateMachine/AuthenticationStateMachineTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/ConnectionStateMachine/AuthenticationStateMachineTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/ConnectionStateMachine/ConnectionStateMachineTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/ConnectionStateMachine/ConnectionStateMachineTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/ConnectionStateMachine/StatementStateMachineTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/ConnectionStateMachine/StatementStateMachineTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/Data/ArrayKeyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/Data/ArrayKeyTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/Data/OracleJSONDecoderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/Data/OracleJSONDecoderTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/Data/OracleJSONEncoderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/Data/OracleJSONEncoderTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/Data/OracleJSONParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/Data/OracleJSONParserTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/Data/OracleJSONWriterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/Data/OracleJSONWriterTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/Data/OracleVectorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/Data/OracleVectorTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/Data/RowIDTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/Data/RowIDTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/Data/StringTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/Data/StringTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/Extensions/ByteBufferExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/Extensions/ByteBufferExtensionTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/Helper/TinySequenceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/Helper/TinySequenceTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/Messages/AcceptMessageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/Messages/AcceptMessageTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/Messages/AuthenticationPhaseTwoMessageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/Messages/AuthenticationPhaseTwoMessageTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/Messages/ControlTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/Messages/ControlTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/Messages/DataRowTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/Messages/DataRowTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/Messages/OracleFrontendMessageEncoderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/Messages/OracleFrontendMessageEncoderTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/Messages/RowDataTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/Messages/RowDataTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/OracleCodableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/OracleCodableTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/OracleConnectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/OracleConnectionTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/OracleNumberTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/OracleNumberTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/OracleRowSequenceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/OracleRowSequenceTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/OracleRowStreamTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/OracleRowStreamTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/OracleSQLErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/OracleSQLErrorTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/OracleStatementTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/OracleStatementTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/StatementContextTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/StatementContextTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/TestUtils/Capabilities+TestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/TestUtils/Capabilities+TestUtils.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/TestUtils/ConnectionAction+TestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/TestUtils/ConnectionAction+TestUtils.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/TestUtils/Data+Hex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/TestUtils/Data+Hex.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/TestUtils/ExtendedQueryContext+TestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/TestUtils/ExtendedQueryContext+TestUtils.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/TestUtils/OracleBackendMessage+TestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/TestUtils/OracleBackendMessage+TestUtils.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/TestUtils/OracleBackendMessageDecoder+TestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/TestUtils/OracleBackendMessageDecoder+TestUtils.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/TestUtils/OracleBackendMessageEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/TestUtils/OracleBackendMessageEncoder.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/TestUtils/OracleConnection+TestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/TestUtils/OracleConnection+TestUtils.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/TestUtils/OracleFrontendMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/TestUtils/OracleFrontendMessage.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/TestUtils/OracleFrontendMessageDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/TestUtils/OracleFrontendMessageDecoder.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/TestUtils/OraclePartialDecodingError+TestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/TestUtils/OraclePartialDecodingError+TestUtils.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/TestUtils/OracleRowStream+TestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/TestUtils/OracleRowStream+TestUtils.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/TestUtils/QueryResult+TestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/TestUtils/QueryResult+TestUtils.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/TestUtils/ReverseByteToMessageHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/TestUtils/ReverseByteToMessageHandler.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/TestUtils/ReverseMessageToByteHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/TestUtils/ReverseMessageToByteHandler.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/Utilities/AuthHeaderDateFormatTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/Utilities/AuthHeaderDateFormatTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/Utilities/OracleHexDumpTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/Utilities/OracleHexDumpTests.swift -------------------------------------------------------------------------------- /Tests/OracleNIOTests/Utilities/OracleTraceHandlerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/Tests/OracleNIOTests/Utilities/OracleTraceHandlerTests.swift -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /scripts/check-for-broken-symlinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/scripts/check-for-broken-symlinks.sh -------------------------------------------------------------------------------- /scripts/check-for-unacceptable-language.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/scripts/check-for-unacceptable-language.sh -------------------------------------------------------------------------------- /scripts/check-license-headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/scripts/check-license-headers.sh -------------------------------------------------------------------------------- /scripts/generate-contributors-list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/scripts/generate-contributors-list.sh -------------------------------------------------------------------------------- /scripts/run-swift-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/scripts/run-swift-format.sh -------------------------------------------------------------------------------- /scripts/soundness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/scripts/soundness.sh -------------------------------------------------------------------------------- /scripts/unacceptable-language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetodream/oracle-nio/HEAD/scripts/unacceptable-language.txt --------------------------------------------------------------------------------