Пример #1
0
 /// <summary>Updates a Execution record using Metadata Parameters.</summary>
 /// <param name="transaction">Contains the parameters and exceptions for this command.</param>
 public static void Update(ParameterList parameters)
 {
     // Accessor for the Execution Table.
     ServerMarketData.ExecutionDataTable executionTable = ServerMarketData.Execution;
     // Extract the parameters from the command batch.
     AdoTransaction adoTransaction = parameters["adoTransaction"];
     SqlTransaction sqlTransaction = parameters["sqlTransaction"];
     object configurationId = parameters["configurationId"].Value;
     object accruedInterest = parameters["accruedInterest"].Value;
     object externalBrokerAccountId = parameters["brokerAccountId"].Value;
     object externalBrokerId = parameters["brokerId"].Value;
     object commission = parameters["commission"].Value;
     object createdTime = parameters["createdTime"].Value;
     object externalCreatedUserId = parameters["createdUserId"].Value;
     object externalDestinationOrderId = parameters["destinationOrderId"].Value;
     object externalDestinationStateCode = parameters["destinationStateCode"].Value;
     string externalExecutionId = ((string)(parameters["executionId"]));
     object executionPrice = parameters["executionPrice"].Value;
     object executionQuantity = parameters["executionQuantity"].Value;
     object fixMessageId = parameters["fixMessageId"].Value;
     object isHidden = parameters["isHidden"].Value;
     object modifiedTime = parameters["modifiedTime"].Value;
     object externalModifiedUserId = parameters["modifiedUserId"].Value;
     object originalDestinationOrderId = parameters["originalDestinationOrderId"].Value;
     object originalPrice = parameters["originalPrice"].Value;
     object originalQuantity = parameters["originalQuantity"].Value;
     object settlementDate = parameters["settlementDate"].Value;
     object sourceExecutionId = parameters["sourceExecutionId"].Value;
     object externalSourceStateCode = parameters["sourceStateCode"].Value;
     object tradeDate = parameters["tradeDate"].Value;
     object userFee0 = parameters["userFee0"].Value;
     object userFee1 = parameters["userFee1"].Value;
     object userFee2 = parameters["userFee2"].Value;
     object userFee3 = parameters["userFee3"].Value;
     // The row versioning is largely disabled for external operations.
     long rowVersion = long.MinValue;
     // Resolve External Identifiers
     object brokerAccountId = BrokerAccount.FindOptionalKey(configurationId, "brokerAccountId", externalBrokerAccountId);
     object brokerId = Broker.FindOptionalKey(configurationId, "brokerId", externalBrokerId);
     object createdUserId = User.FindOptionalKey(configurationId, "createdUserId", externalCreatedUserId);
     object destinationOrderId = DestinationOrder.FindOptionalKey(configurationId, "destinationOrderId", externalDestinationOrderId);
     object destinationStateCode = State.FindOptionalKey(configurationId, "destinationStateCode", externalDestinationStateCode);
     int executionId = Execution.FindRequiredKey(configurationId, "executionId", externalExecutionId);
     object modifiedUserId = User.FindOptionalKey(configurationId, "modifiedUserId", externalModifiedUserId);
     object sourceStateCode = State.FindOptionalKey(configurationId, "sourceStateCode", externalSourceStateCode);
     // While the optimistic concurrency checking is disabled for the external methods, the internal methods
     // still need to perform the check.  This ncurrency checking logic by finding the current row version to be
     // will bypass the coused when the internal method is called.
     ServerMarketData.ExecutionRow executionRow = executionTable.FindByExecutionId(executionId);
     rowVersion = ((long)(executionRow[executionTable.RowVersionColumn]));
     // Call the internal method to complete the operation.
     MarkThree.Guardian.Core.Execution.Update(adoTransaction, sqlTransaction, ref rowVersion, accruedInterest, brokerAccountId, brokerId, commission, createdTime, createdUserId, destinationOrderId, destinationStateCode, executionId, executionPrice, executionQuantity, null, fixMessageId, isHidden, modifiedTime, modifiedUserId, originalDestinationOrderId, originalPrice, originalQuantity, settlementDate, sourceExecutionId, sourceStateCode, tradeDate, userFee0, userFee1, userFee2, userFee3);
     // Return values.
     parameters["rowVersion"] = rowVersion;
 }
Пример #2
0
 /// <summary>Finds a a DestinationOrder record using a configuration and an external identifier.</summary>
 /// <param name="configurationId">Specified which mappings (user id columns) to use when looking up external identifiers.</param>
 /// <param name="externalId">The external identifier for the record.</param>
 public static int FindRequiredKey(object configurationId, string parameterId, string externalId)
 {
     // Look up the internal identifier using the configuration to select the ExternalId column and the external identifier to identify the record
     int internalId = DestinationOrder.FindKey(configurationId, parameterId, externalId);
     if ((internalId == int.MinValue))
     {
         throw new Exception(string.Format("The DestinationOrder table does not have a record identified by \'{0}\'", externalId));
     }
     // Return the internal identifier.
     return internalId;
 }
Пример #3
0
 /// <summary>Updates a DestinationOrder record using Metadata Parameters.</summary>
 /// <param name="transaction">Contains the parameters and exceptions for this command.</param>
 public static void Update(ParameterList parameters)
 {
     // Accessor for the DestinationOrder Table.
     ServerMarketData.DestinationOrderDataTable destinationOrderTable = ServerMarketData.DestinationOrder;
     // Extract the parameters from the command batch.
     AdoTransaction adoTransaction = parameters["adoTransaction"];
     SqlTransaction sqlTransaction = parameters["sqlTransaction"];
     object configurationId = parameters["configurationId"].Value;
     object canceledQuantity = parameters["canceledQuantity"].Value;
     object canceledTime = parameters["canceledTime"].Value;
     object createdTime = parameters["createdTime"].Value;
     object createdUserId = parameters["createdUserId"].Value;
     object externalDestinationId = parameters["destinationId"].Value;
     string externalDestinationOrderId = ((string)(parameters["destinationOrderId"]));
     object isCanceledByUser = parameters["isCanceledByUser"].Value;
     object isHidden = parameters["isHidden"].Value;
     object limitPrice = parameters["limitPrice"].Value;
     object modifiedTime = parameters["modifiedTime"].Value;
     object modifiedUserId = parameters["modifiedUserId"].Value;
     object orderTypeCode = parameters["orderTypeCode"].Value;
     object orderedQuantity = parameters["orderedQuantity"].Value;
     object externalPriceTypeCode = parameters["priceTypeCode"].Value;
     object externalStateCode = parameters["stateCode"].Value;
     object externalStatusCode = parameters["statusCode"].Value;
     object stopPrice = parameters["stopPrice"].Value;
     object externalTraderId = parameters["traderId"].Value;
     object externalTimeInForceCode = parameters["timeInForceCode"].Value;
     object externalWorkingOrderId = parameters["workingOrderId"].Value;
     // The row versioning is largely disabled for external operations.
     long rowVersion = long.MinValue;
     // Resolve External Identifiers
     object destinationId = Destination.FindOptionalKey(configurationId, "destinationId", externalDestinationId);
     int destinationOrderId = DestinationOrder.FindRequiredKey(configurationId, "destinationOrderId", externalDestinationOrderId);
     object priceTypeCode = PriceType.FindOptionalKey(configurationId, "priceTypeCode", externalPriceTypeCode);
     object stateCode = State.FindOptionalKey(configurationId, "stateCode", externalStateCode);
     object statusCode = Status.FindOptionalKey(configurationId, "statusCode", externalStatusCode);
     object traderId = Trader.FindOptionalKey(configurationId, "traderId", externalTraderId);
     object timeInForceCode = TimeInForce.FindOptionalKey(configurationId, "timeInForceCode", externalTimeInForceCode);
     object workingOrderId = WorkingOrder.FindOptionalKey(configurationId, "workingOrderId", externalWorkingOrderId);
     // While the optimistic concurrency checking is disabled for the external methods, the internal methods
     // still need to perform the check.  This ncurrency checking logic by finding the current row version to be
     // will bypass the coused when the internal method is called.
     ServerMarketData.DestinationOrderRow destinationOrderRow = destinationOrderTable.FindByDestinationOrderId(destinationOrderId);
     rowVersion = ((long)(destinationOrderRow[destinationOrderTable.RowVersionColumn]));
     // Call the internal method to complete the operation.
     MarkThree.Guardian.Core.DestinationOrder.Update(adoTransaction, sqlTransaction, ref rowVersion, canceledQuantity, canceledTime, createdTime, createdUserId, destinationId, destinationOrderId, null, isCanceledByUser, isHidden, limitPrice, modifiedTime, modifiedUserId, orderTypeCode, orderedQuantity, priceTypeCode, stateCode, statusCode, stopPrice, traderId, timeInForceCode, workingOrderId);
     // Return values.
     parameters["rowVersion"] = rowVersion;
 }
Пример #4
0
 /// <summary>Finds a a DestinationOrder record using a configuration and an external identifier.</summary>
 /// <param name="configurationId">Specified which mappings (user id columns) to use when looking up external identifiers.</param>
 /// <param name="externalId">The external (user supplied) identifier for the record.</param>
 public static object FindOptionalKey(object configurationId, string parameterId, object externalId)
 {
     // Look up the internal identifier using the the configuration to specify which ExternalId column to use as an index.
     object internalId = null;
     if ((externalId != null))
     {
         internalId = DestinationOrder.FindKey(configurationId, parameterId, ((string)(externalId)));
         if ((((int)(internalId)) == int.MinValue))
         {
             throw new Exception(string.Format("The DestinationOrder table does not have a record identified by \'{0}\'", externalId));
         }
     }
     // Return the internal identifier.
     return internalId;
 }
Пример #5
0
 /// <summary>Finds a a DestinationOrder record using a configuration and an external identifier.</summary>
 /// <param name="configurationId">Specified which mappings (user id columns) to use when looking up external identifiers.</param>
 /// <param name="parameterId">The name of the parameter as specified in the configuration table.</param>
 /// <param name="externalId">The external (user supplied) identifier for the record.</param>
 public static int FindKey(object configurationId, string parameterId, object externalId)
 {
     // A missing key will never match a column.
     if ((externalId == null))
     {
         return int.MinValue;
     }
     // Accessor for the DestinationOrder Table.
     ServerMarketData.DestinationOrderDataTable destinationOrderTable = ServerMarketData.DestinationOrder;
     // Look for the record using the external identifier.  The configuration selected the key to use, which effectively
     // selected the external id column to use for the search.  If a record is found in the view, a translation still needs
     // to be made back to the original table before an index to the record can be returned to the caller.
     int externalKeyIndex = DestinationOrder.GetExternalKeyIndex(configurationId, parameterId);
     System.Data.DataView externalKeyView = DestinationOrder.externalKeyArray[externalKeyIndex];
     int recordIndex = externalKeyView.Find(new object[] {
                 externalId});
     if ((recordIndex == -1))
     {
         return int.MinValue;
     }
     return ((int)(externalKeyView[recordIndex].Row[destinationOrderTable.DestinationOrderIdColumn]));
 }
Пример #6
0
 /// <summary>Archives a DestinationOrder record using Metadata Parameters.</summary>
 /// <param name="transaction">Contains the parameters and exceptions for this command.</param>
 public static void Archive(ParameterList parameters)
 {
     // Accessor for the DestinationOrder Table.
     ServerMarketData.DestinationOrderDataTable destinationOrderTable = ServerMarketData.DestinationOrder;
     // Extract the parameters from the command batch.
     AdoTransaction adoTransaction = parameters["adoTransaction"];
     SqlTransaction sqlTransaction = parameters["sqlTransaction"];
     object configurationId = parameters["configurationId"].Value;
     string externalDestinationOrderId = parameters["destinationOrderId"];
     // The row versioning is largely disabled for external operations.
     long rowVersion = long.MinValue;
     // Find the internal identifier using the primar key elements.
     // identifier is used to determine if a record exists with the same key.
     int destinationOrderId = DestinationOrder.FindRequiredKey(configurationId, "destinationOrderId", externalDestinationOrderId);
     // While the optimistic concurrency checking is disabled for the external methods, the internal methods
     // still need to perform the check.  This ncurrency checking logic by finding the current row version to be
     // will bypass the coused when the internal method is called.
     ServerMarketData.DestinationOrderRow destinationOrderRow = destinationOrderTable.FindByDestinationOrderId(destinationOrderId);
     rowVersion = ((long)(destinationOrderRow[destinationOrderTable.RowVersionColumn]));
     // Call the internal method to complete the operation.
     MarkThree.Guardian.Core.DestinationOrder.Archive(adoTransaction, sqlTransaction, rowVersion, destinationOrderId);
 }
Пример #7
0
 /// <summary>Loads a Execution record using Metadata Parameters.</summary>
 /// <param name="transaction">Contains the parameters and exceptions for this command.</param>
 public static void Load(ParameterList parameters)
 {
     // Accessor for the Execution Table.
     ServerMarketData.ExecutionDataTable executionTable = ServerMarketData.Execution;
     // Extract the parameters from the command batch.
     AdoTransaction adoTransaction = parameters["adoTransaction"];
     SqlTransaction sqlTransaction = parameters["sqlTransaction"];
     object configurationId = parameters["configurationId"].Value;
     object accruedInterest = parameters["accruedInterest"].Value;
     object externalBrokerAccountId = parameters["brokerAccountId"].Value;
     object externalBrokerId = parameters["brokerId"].Value;
     object commission = parameters["commission"].Value;
     object createdTime = parameters["createdTime"].Value;
     object externalCreatedUserId = parameters["createdUserId"].Value;
     string externalDestinationOrderId = parameters["destinationOrderId"];
     string externalDestinationStateCode = parameters["destinationStateCode"];
     object externalExecutionId = parameters["executionId"].Value;
     decimal executionPrice = parameters["executionPrice"];
     decimal executionQuantity = parameters["executionQuantity"];
     object externalId0 = parameters["externalId0"].Value;
     object fixMessageId = parameters["fixMessageId"].Value;
     object isHidden = parameters["isHidden"].Value;
     object modifiedTime = parameters["modifiedTime"].Value;
     object externalModifiedUserId = parameters["modifiedUserId"].Value;
     object originalDestinationOrderId = parameters["originalDestinationOrderId"].Value;
     object originalPrice = parameters["originalPrice"].Value;
     object originalQuantity = parameters["originalQuantity"].Value;
     System.DateTime settlementDate = parameters["settlementDate"];
     object sourceExecutionId = parameters["sourceExecutionId"].Value;
     string externalSourceStateCode = parameters["sourceStateCode"];
     System.DateTime tradeDate = parameters["tradeDate"];
     object userFee0 = parameters["userFee0"].Value;
     object userFee1 = parameters["userFee1"].Value;
     object userFee2 = parameters["userFee2"].Value;
     object userFee3 = parameters["userFee3"].Value;
     // The row versioning is largely disabled for external operations.  The value is returned to the caller in the
     // event it's needed for operations within the batch.
     long rowVersion = long.MinValue;
     // Resolve External Identifiers
     object brokerAccountId = BrokerAccount.FindOptionalKey(configurationId, "brokerAccountId", externalBrokerAccountId);
     object brokerId = Broker.FindOptionalKey(configurationId, "brokerId", externalBrokerId);
     object createdUserId = User.FindOptionalKey(configurationId, "createdUserId", externalCreatedUserId);
     int destinationOrderId = DestinationOrder.FindRequiredKey(configurationId, "destinationOrderId", externalDestinationOrderId);
     int destinationStateCode = State.FindRequiredKey(configurationId, "destinationStateCode", externalDestinationStateCode);
     int executionId = Execution.FindKey(configurationId, "executionId", externalExecutionId);
     object modifiedUserId = User.FindOptionalKey(configurationId, "modifiedUserId", externalModifiedUserId);
     int sourceStateCode = State.FindRequiredKey(configurationId, "sourceStateCode", externalSourceStateCode);
     // The load operation will create a record if it doesn't exist, or update an existing record.  The external
     // identifier is used to determine if a record exists with the same key.
     if ((executionId == int.MinValue))
     {
         // Populate the 'externalId' varaibles so that the external identifier can be used to find the row when an
         // external method is called with the same 'configurationId' parameter.
         int externalKeyIndex = Execution.GetExternalKeyIndex(configurationId, "executionId");
         object[] externalIdArray = new object[1];
         externalIdArray[externalKeyIndex] = externalExecutionId;
         externalId0 = externalIdArray[0];
         // Call the internal method to complete the operation.
         MarkThree.Guardian.Core.Execution.Insert(adoTransaction, sqlTransaction, ref rowVersion, accruedInterest, brokerAccountId, brokerId, commission, createdTime, createdUserId, destinationOrderId, destinationStateCode, executionPrice, executionQuantity, externalId0, fixMessageId, isHidden, modifiedTime, modifiedUserId, originalDestinationOrderId, originalPrice, originalQuantity, settlementDate, sourceExecutionId, sourceStateCode, tradeDate, userFee0, userFee1, userFee2, userFee3);
     }
     else
     {
         // While the optimistic concurrency checking is disabled for the external methods, the internal methods
         // still need to perform the check.  This ncurrency checking logic by finding the current row version to be
         // will bypass the coused when the internal method is called.
         ServerMarketData.ExecutionRow executionRow = executionTable.FindByExecutionId(executionId);
         rowVersion = ((long)(executionRow[executionTable.RowVersionColumn]));
         // Call the internal method to complete the operation.
         MarkThree.Guardian.Core.Execution.Update(adoTransaction, sqlTransaction, ref rowVersion, accruedInterest, brokerAccountId, brokerId, commission, createdTime, createdUserId, destinationOrderId, destinationStateCode, executionId, executionPrice, executionQuantity, externalId0, fixMessageId, isHidden, modifiedTime, modifiedUserId, originalDestinationOrderId, originalPrice, originalQuantity, settlementDate, sourceExecutionId, sourceStateCode, tradeDate, userFee0, userFee1, userFee2, userFee3);
     }
     // Return values.
     parameters["rowVersion"] = rowVersion;
 }
Пример #8
0
 /// <summary>Loads a DestinationOrder record using Metadata Parameters.</summary>
 /// <param name="transaction">Contains the parameters and exceptions for this command.</param>
 public static void Load(ParameterList parameters)
 {
     // Accessor for the DestinationOrder Table.
     ServerMarketData.DestinationOrderDataTable destinationOrderTable = ServerMarketData.DestinationOrder;
     // Extract the parameters from the command batch.
     AdoTransaction adoTransaction = parameters["adoTransaction"];
     SqlTransaction sqlTransaction = parameters["sqlTransaction"];
     object configurationId = parameters["configurationId"].Value;
     object canceledQuantity = parameters["canceledQuantity"].Value;
     object canceledTime = parameters["canceledTime"].Value;
     System.DateTime createdTime = parameters["createdTime"];
     int createdUserId = parameters["createdUserId"];
     string externalDestinationId = parameters["destinationId"];
     object externalDestinationOrderId = parameters["destinationOrderId"].Value;
     object externalId0 = parameters["externalId0"].Value;
     object isCanceledByUser = parameters["isCanceledByUser"].Value;
     object isHidden = parameters["isHidden"].Value;
     object limitPrice = parameters["limitPrice"].Value;
     System.DateTime modifiedTime = parameters["modifiedTime"];
     int modifiedUserId = parameters["modifiedUserId"];
     int orderTypeCode = parameters["orderTypeCode"];
     decimal orderedQuantity = parameters["orderedQuantity"];
     string externalPriceTypeCode = parameters["priceTypeCode"];
     string externalStateCode = parameters["stateCode"];
     string externalStatusCode = parameters["statusCode"];
     object stopPrice = parameters["stopPrice"].Value;
     object externalTraderId = parameters["traderId"].Value;
     string externalTimeInForceCode = parameters["timeInForceCode"];
     string externalWorkingOrderId = parameters["workingOrderId"];
     // The row versioning is largely disabled for external operations.  The value is returned to the caller in the
     // event it's needed for operations within the batch.
     long rowVersion = long.MinValue;
     // Resolve External Identifiers
     int destinationId = Destination.FindRequiredKey(configurationId, "destinationId", externalDestinationId);
     int destinationOrderId = DestinationOrder.FindKey(configurationId, "destinationOrderId", externalDestinationOrderId);
     int priceTypeCode = PriceType.FindRequiredKey(configurationId, "priceTypeCode", externalPriceTypeCode);
     int stateCode = State.FindRequiredKey(configurationId, "stateCode", externalStateCode);
     int statusCode = Status.FindRequiredKey(configurationId, "statusCode", externalStatusCode);
     object traderId = Trader.FindOptionalKey(configurationId, "traderId", externalTraderId);
     int timeInForceCode = TimeInForce.FindRequiredKey(configurationId, "timeInForceCode", externalTimeInForceCode);
     int workingOrderId = WorkingOrder.FindRequiredKey(configurationId, "workingOrderId", externalWorkingOrderId);
     // The load operation will create a record if it doesn't exist, or update an existing record.  The external
     // identifier is used to determine if a record exists with the same key.
     if ((destinationOrderId == int.MinValue))
     {
         // Populate the 'externalId' varaibles so that the external identifier can be used to find the row when an
         // external method is called with the same 'configurationId' parameter.
         int externalKeyIndex = DestinationOrder.GetExternalKeyIndex(configurationId, "destinationOrderId");
         object[] externalIdArray = new object[1];
         externalIdArray[externalKeyIndex] = externalDestinationOrderId;
         externalId0 = externalIdArray[0];
         // Call the internal method to complete the operation.
         MarkThree.Guardian.Core.DestinationOrder.Insert(adoTransaction, sqlTransaction, ref rowVersion, canceledQuantity, canceledTime, createdTime, createdUserId, destinationId, externalId0, isCanceledByUser, isHidden, limitPrice, modifiedTime, modifiedUserId, orderTypeCode, orderedQuantity, priceTypeCode, stateCode, statusCode, stopPrice, traderId, timeInForceCode, workingOrderId);
     }
     else
     {
         // While the optimistic concurrency checking is disabled for the external methods, the internal methods
         // still need to perform the check.  This ncurrency checking logic by finding the current row version to be
         // will bypass the coused when the internal method is called.
         ServerMarketData.DestinationOrderRow destinationOrderRow = destinationOrderTable.FindByDestinationOrderId(destinationOrderId);
         rowVersion = ((long)(destinationOrderRow[destinationOrderTable.RowVersionColumn]));
         // Call the internal method to complete the operation.
         MarkThree.Guardian.Core.DestinationOrder.Update(adoTransaction, sqlTransaction, ref rowVersion, canceledQuantity, canceledTime, createdTime, createdUserId, destinationId, destinationOrderId, externalId0, isCanceledByUser, isHidden, limitPrice, modifiedTime, modifiedUserId, orderTypeCode, orderedQuantity, priceTypeCode, stateCode, statusCode, stopPrice, traderId, timeInForceCode, workingOrderId);
     }
     // Return values.
     parameters["rowVersion"] = rowVersion;
 }