X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=pkg%2Frpe%2Ftypes.go;h=95cdf0171fc65d21241de7570866ae279b653820;hb=6aaf1fb82db518448d60fd908e5dca3834d78e23;hp=b227c0e4f6315ecf2fe247d73a5246dad35ed26d;hpb=16d84d6f7d3489e65e0a83ba9c0d5d62c3914c7f;p=ric-plt%2Frtmgr.git diff --git a/pkg/rpe/types.go b/pkg/rpe/types.go index b227c0e..95cdf01 100644 --- a/pkg/rpe/types.go +++ b/pkg/rpe/types.go @@ -14,28 +14,44 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. + + + This source code is part of the near-RT RIC (RAN Intelligent Controller) + platform project (RICP). + ================================================================================== */ /* Mnemonic: rpe/types.go - Abstract: Containes RPE (Route Policy Engine) specific types + Abstract: Contains RPE (Route Policy Engine) specific types Date: 12 March 2019 */ package rpe -import "rtmgr" +import ( + "routing-manager/pkg/models" + "routing-manager/pkg/rtmgr" +) -type generatePolicies func(rtmgr.Endpoints) *[]string +//type generatePolicies func(rtmgr.Endpoints) *[]string +//type generateRouteTable func(rtmgr.Endpoints) *rtmgr.RouteTable + +type EngineConfig struct { + Name string + Version string + Protocol string + Instance Engine + IsAvailable bool +} -type RpeEngine struct { - Name string - Version string - Protocol string +type Engine interface { + GeneratePolicies(rtmgr.Endpoints, *rtmgr.RicComponents) *[]string + GenerateRouteTable(rtmgr.Endpoints) *rtmgr.RouteTable + GeneratePartialPolicies(eps rtmgr.Endpoints, xappSubData *models.XappSubscriptionData, updatetype rtmgr.RMRUpdateType) *[]string } -type RpeEngineConfig struct { - Engine RpeEngine - GeneratePolicies generatePolicies - IsAvailable bool +type RouteIndex struct { + flag bool + index uint16 }